/*
Theme Name: Pokémon Center
Theme URI: https://www.pokemoncenter.com/
Author: Antigravity DeepMind Team
Author URI: https://www.pokemoncenter.com/
Description: Complete, pixel-perfect WordPress & WooCommerce pre-built theme cloning pokemoncenter.com. Supports WPBakery Page Builder, WooCommerce, PayPal, and Stripe payment gateways.
Version: 2.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pokemoncenter
Tags: e-commerce, woocommerce, grid-layout, custom-header, custom-menu, featured-images, full-width-template, responsive-layout, theme-options, translation-ready, wpbakery
*/

/* ==========================================================================
   1. DESIGN SYSTEM & CSS VARIABLES (Exact match from source)
   ========================================================================== */
:root {
  --brand-primary: #0054a6;
  --brand-primary-darker: #003087;
  --brand-primary-lighter: #d9e9f7;
  --brand-secondary: #fdb71d;
  --brand-secondary-darker: #ef970b;
  --brand-tertiary: #e5e5e5;
  --brand-tertiary-darker: #d6d5d5;
  --menu-hover-color: #0C55A5;
  --gray-darker: #99aec2;
  --gray-dark: #767676;
  --gray: #adb5bd;
  --gray-light: #cbcbcb;
  --gray-lighter: #e9e9e9;
  --gray-lightest: #f8f9fa;
  --blue-shade-one: #163381;
  --blue-shade-two: #113F67;
  --black: #000000;
  --white: #ffffff;
  --alert-color: #d91215;
  --alert-color-darker: #c00b10;
  --bg-dark: #5e727d;
  --bg-light: #d9d9d6;
  --bg-white: var(--white);
  --bg-light-gray: #f0f0f0;
  --body-color: #4d4d4d;
  
  --font-family-base: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-alt: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-base: 400;
  --line-height-base: 1.4;
  
  --link-color: var(--brand-primary);
  --link-color-hover: inherit;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-transition: 120ms ease-in-out color;
  --menu-link-color: var(--menu-hover-color);
  
  --btn-border-radius: 0;
  --btn-border-radius-sm: 0;
  --btn-font-family: var(--font-family-alt);
  --btn-font-size: 16px;
  --btn-font-size-sm: 14px;
  --btn-font-size-lg: 20px;
  --btn-font-weight: 700;
  --btn-line-height: 1.2;
  --btn-padding-x: 20px;
  --btn-padding-y: 14px;
  --btn-padding-x-sm: 16px;
  --btn-padding-y-sm: 8px;
  
  --form-label-font-size: 12px;
  --form-label-font-weight: 600;
  --form-label-margin-bottom: 4px;
  --input-bg-color: var(--white);
  --input-border-color: var(--gray);
  --input-border-radius: 0;
  --input-border-width: 1px;
  --input-color: var(--body-color);
  --input-font-size: 14px;
  --input-font-weight: var(--font-weight-base);
  --input-line-height: var(--line-height-base);
  --input-padding-x: 12px;
  --input-padding-y: 10px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-base: 14px;
  --fs-md: 15px;
  --fs-lg: 16px;
  --fs-xl: 18px;
  --fs-2xl: 22px;
  --fs-3xl: 28px;
  --fs-4xl: 36px;

  /* Aliases — templates reference these names; map to the tokens above
     so no design values change, they just resolve instead of failing silently. */
  --font-heading: var(--font-family-alt);
  --border-radius: var(--btn-border-radius);
  --border-radius-lg: var(--btn-border-radius);
  --pc-blue: var(--brand-primary);
  --pc-red: var(--alert-color);
  --pc-body-text: var(--body-color);
  --pc-dark-text: var(--black);
  --pc-gray-100: var(--gray-lightest);
  --pc-gray-200: var(--gray-lighter);
  --pc-gray-300: var(--gray-light);
  --pc-gray-400: var(--gray);
  --pc-gray-500: var(--gray-dark);
  --pc-gray-600: var(--gray-darker);
}

/* ==========================================================================
   2. RESET & BASE TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--body-color);
  background-color: var(--white);
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: var(--font-weight-base);
  overflow-x: hidden;
}

#__next, .site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-alt);
  font-weight: 700;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 { font-size: var(--fs-4xl); line-height: 1.1; }
h2 { font-size: var(--fs-3xl); line-height: 1.2; }
h3 { font-size: var(--fs-2xl); line-height: 1.25; }
h4 { font-size: var(--fs-xl); line-height: 1.3; }
h5 { font-size: var(--fs-lg); line-height: 1.35; }
h6 { font-size: var(--fs-base); line-height: 1.4; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
  transition: var(--link-transition);
}

a:hover {
  color: var(--brand-primary-darker);
  text-decoration: var(--link-decoration-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

b, strong {
  font-weight: 700;
}

/* ==========================================================================
   3. LAYOUT CONTAINERS & GRID SYSTEM
   ========================================================================== */
.pc-container, .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.pc-container--narrow {
  max-width: 900px !important;
}

@media (min-width: 576px) { .pc-container, .container { max-width: 33.75rem; } }
@media (min-width: 768px) { .pc-container, .container { max-width: 45rem; } }
@media (min-width: 992px) { .pc-container, .container { max-width: 60rem; } }
@media (min-width: 1200px) { .pc-container, .container { max-width: 71.25rem; } }
@media (min-width: 1400px) { .pc-container, .container { max-width: 82.5rem; } }

.pc-row, .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.pc-col, .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Helper Utility Classes */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: var(--space-xs) !important; }
.mt-2 { margin-top: var(--space-sm) !important; }
.mt-3 { margin-top: var(--space-base) !important; }
.mt-4 { margin-top: var(--space-lg) !important; }
.mt-5 { margin-top: var(--space-2xl) !important; }

.mb-1 { margin-bottom: var(--space-xs) !important; }
.mb-2 { margin-bottom: var(--space-sm) !important; }
.mb-3 { margin-bottom: var(--space-base) !important; }
.mb-4 { margin-bottom: var(--space-lg) !important; }
.mb-5 { margin-bottom: var(--space-2xl) !important; }

.p-0 { padding: 0 !important; }
.py-1 { padding-top: var(--space-xs) !important; padding-bottom: var(--space-xs) !important; }
.py-2 { padding-top: var(--space-sm) !important; padding-bottom: var(--space-sm) !important; }
.py-3 { padding-top: var(--space-base) !important; padding-bottom: var(--space-base) !important; }
.py-4 { padding-top: var(--space-lg) !important; padding-bottom: var(--space-lg) !important; }
.py-5 { padding-top: var(--space-2xl) !important; padding-bottom: var(--space-2xl) !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-uppercase { text-transform: uppercase !important; }
.font-weight-bold { font-weight: 700 !important; }

/* ==========================================================================
   4. BUTTONS, BADGES, TAGS & FORMS
   ========================================================================== */
.btn, .button, input[type="submit"], button[type="submit"] {
  display: inline-block;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size-sm);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  padding: var(--btn-padding-y-sm) var(--btn-padding-x-sm);
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--btn-border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.12s ease-out, color 0.12s ease-out, border-color 0.12s ease-out;
  text-decoration: none !important;
  user-select: none;
  vertical-align: middle;
}

.btn:focus, .button:focus, input[type="submit"]:focus {
  outline: 2px solid var(--black);
}

.btn-primary, .button.alt, input[type="submit"].alt, button.alt {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--white) !important;
}

.btn-primary:hover, .button.alt:hover, input[type="submit"].alt:hover, button.alt:hover {
  background-color: var(--brand-primary-darker);
  border-color: var(--brand-primary-darker);
  color: var(--white) !important;
}

.btn-secondary {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--black) !important;
}

.btn-secondary:hover {
  background-color: var(--brand-secondary-darker);
  border-color: var(--brand-secondary-darker);
  color: var(--black) !important;
}

.btn-dark, .btn-black {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white) !important;
}

.btn-dark:hover {
  background-color: var(--white);
  color: var(--black) !important;
  border-color: var(--black);
}

.btn-outline-dark, .btn--outline {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black) !important;
}

.btn-outline-dark:hover, .btn--outline:hover {
  background-color: var(--black);
  color: var(--white) !important;
}

.btn-lg {
  font-size: var(--btn-font-size-lg);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}

.btn-sm, .btn--sm {
  font-size: var(--btn-font-size-sm);
  padding: var(--btn-padding-y-sm) var(--btn-padding-x-sm);
}

.btn-block {
  display: block !important;
  width: 100% !important;
}

/* Forms & Input Elements */
label, .form-label {
  display: block;
  font-family: var(--font-family-alt);
  font-size: var(--form-label-font-size);
  font-weight: var(--form-label-font-weight);
  margin-bottom: var(--form-label-margin-bottom);
  color: var(--black);
  text-transform: uppercase;
}

input[type="text"], input[type="search"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], textarea, select {
  background-color: var(--input-bg-color);
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  color: var(--input-color);
  display: block;
  font-size: var(--input-font-size);
  font-family: var(--font-family-base);
  padding: var(--input-padding-y) var(--input-padding-x);
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease-in-out;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--black);
  background-color: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group {
  margin-bottom: var(--space-base);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  font-family: var(--font-family-alt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  line-height: 1;
}

.badge-primary { background-color: var(--brand-primary); color: var(--white); }
.badge-secondary { background-color: var(--brand-secondary); color: var(--black); }
.badge-danger, .badge-sale { background-color: var(--alert-color); color: var(--white); }

/* ==========================================================================
   5. ANNOUNCEMENT BAR (TOP RAIL)
   ========================================================================== */
.site-container-rail {
  background-color: rgb(237, 234, 234);
  position: relative;
  overflow: hidden;
  padding: 8px 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-container-rail-slide {
  font-family: var(--font-family-base);
  font-size: 14px;
  color: var(--black);
  margin: 0;
  text-align: center;
}

.site-container-rail-slide a, .site-container-rail-slide button {
  color: var(--black);
  font-weight: 700;
  margin-left: 8px;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.site-container-rail-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  background: none;
  border: none;
  padding: 5px;
  display: flex;
  align-items: center;
}

.rail-left { left: 15px; }
.rail-right { right: 15px; }

/* ==========================================================================
   6. HEADER & MAIN SEARCH BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-lighter);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 82.5rem;
  margin: 0 auto;
  gap: 20px;
}

.header-logo-col {
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-search-col {
  flex: 1 1 auto;
  max-width: 600px;
}

.search-form-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--gray-dark);
  border-radius: 0;
  padding: 0 50px 0 16px;
  font-size: 14px;
  font-family: var(--font-family-alt);
}

.search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: 48px;
  background-color: var(--brand-primary);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-button:hover {
  background-color: var(--brand-primary-darker);
}

.search-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-actions-col {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-account-link, .header-cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-family: var(--font-family-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.header-account-link svg, .header-cart-link svg {
  width: 28px;
  height: 28px;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--brand-secondary);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 991px) {
  .mobile-menu-toggle { display: block; }
  .navigation-desktop { display: none; }
}

/* ==========================================================================
   7. NAVIGATION & MEGA MENU
   ========================================================================== */
.navigation-desktop {
  border-top: 1px solid var(--gray-lighter);
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--white);
}

.nav-container {
  max-width: 82.5rem;
  margin: 0 auto;
}

.main-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.main-nav-item {
  position: relative;
}

.main-nav-link {
  display: block;
  padding: 12px 15px;
  font-family: var(--font-family-alt);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.main-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--brand-primary);
  transition: height 0.12s ease-in-out;
}

.main-nav-link:hover::after, .main-nav-item:hover .main-nav-link::after {
  height: 0.18rem;
  background-color: var(--brand-primary);
}

/* Mega Menu Dropdown */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  max-width: 82.5rem;
  background-color: var(--white);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  display: none;
  z-index: 99;
  padding: 25px;
}

.main-nav-item:hover .mega-menu-panel {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-menu-col-title {
  font-family: var(--font-family-alt);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
  text-transform: uppercase;
}

.mega-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-col li {
  margin-bottom: 8px;
}

.mega-menu-col a {
  font-family: var(--font-family-alt);
  font-size: 13px;
  font-weight: 500;
  color: var(--body-color);
  text-decoration: none;
}

.mega-menu-col a:hover {
  color: var(--brand-primary);
}

/* Mobile Slide-in Nav */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  max-width: 360px;
  height: 100%;
  background-color: var(--white);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 16px rgba(0,0,0,0.2);
}

.mobile-nav-panel.open {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--gray-lighter);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   8. HOMEPAGE & CAROUSELS (Exact Match with index.html)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-heading-wrapper {
  text-align: center;
  margin: 40px 0 25px;
}

.section-title {
  font-family: var(--font-family-alt);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.5px;
}

/* Category Grid / Circles */
.category-grid-section {
  padding: 30px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.category-circle-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 2px solid var(--gray-lighter);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-item:hover .category-circle-wrapper {
  transform: scale(1.05);
  border-color: var(--brand-primary);
}

.category-circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item-title {
  font-family: var(--font-family-alt);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
}

/* ==========================================================================
   9. PRODUCT CARDS & GRID (Homepage & Loop)
   ========================================================================== */
.products-carousel-section {
  background-color: #E9E0F4;
  padding: 40px 20px;
  margin: 40px 0;
}

.products-carousel-title {
  font-family: var(--font-family-alt);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.product-grid, .products-grid, .posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) { .product-grid, .products-grid, .posts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid, .products-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid, .products-grid, .posts-grid { grid-template-columns: repeat(1, 1fr); } }

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--gray-lightest);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--brand-primary);
  color: var(--white);
  font-family: var(--font-family-alt);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-family: var(--font-family-alt);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__price {
  font-family: var(--font-family-alt);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-top: auto;
}

/* ==========================================================================
   10. SHOP & CATEGORY ARCHIVE PAGES WITH SIDEBAR FILTERS
   ========================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-sidebar {
  background-color: var(--white);
}

.shop-main {
  min-width: 0;
}

.shop-header {
  margin-bottom: 20px;
}

.filter-section {
  border-bottom: 1px solid var(--gray-lighter);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.filter-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 12px;
}

.filter-section__title {
  font-family: var(--font-family-alt);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

.filter-section__toggle {
  width: 16px;
  height: 16px;
  color: var(--gray-dark);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.filter-section__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-dark);
  cursor: pointer;
}

.filter-checkbox__label {
  flex-grow: 1;
}

.filter-checkbox__count {
  color: var(--gray);
  font-size: 12px;
}

.price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-range__input {
  width: 100%;
  height: 36px;
  border: 1px solid var(--gray-light);
  padding: 0 10px;
  font-size: 13px;
}

.price-range__sep {
  color: var(--gray);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-lighter);
  font-family: var(--font-family-alt);
  font-size: 14px;
}

.shop-toolbar__count {
  color: var(--gray-dark);
}

.shop-toolbar__sort select,
.woocommerce-ordering select {
  height: 40px;
  border: 1px solid var(--gray-dark);
  font-family: var(--font-family-alt);
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px;
}

.pagination,
.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.pagination ul.page-numbers li a,
.pagination ul.page-numbers li span,
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-light);
  color: var(--black);
  font-family: var(--font-family-alt);
  font-weight: 700;
  text-decoration: none;
}

.pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li span.current {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--white);
}

/* ==========================================================================
   11. SINGLE PRODUCT DETAIL PAGE
   ========================================================================== */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .single-product-layout {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-gallery__main {
  border: 1px solid var(--gray-lighter);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-lightest);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gray-light);
  cursor: pointer;
  flex-shrink: 0;
}

.product-gallery__thumb.active {
  border-color: var(--brand-primary);
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-info__title {
  font-family: var(--font-family-alt);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-info__price {
  font-family: var(--font-family-alt);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.product-info__price--sale {
  color: var(--alert-color);
}

.product-info__price .original-price {
  color: var(--gray);
  font-weight: 500;
  text-decoration: line-through;
  font-size: 18px;
  margin-right: 8px;
}

.product-info__badge {
  display: inline-block;
  background-color: var(--brand-primary);
  color: var(--white);
  font-family: var(--font-family-alt);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}

.product-info__stars {
  display: flex;
  gap: 2px;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.product-info__review-link {
  font-size: 13px;
  color: var(--gray-dark);
  text-decoration: underline;
}

.product-info__short-desc {
  font-size: 15px;
  color: var(--body-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-light);
}

.quantity-selector__label {
  font-size: 13px;
  font-weight: 600;
  margin-right: 10px;
}

.quantity-selector__btn {
  width: 36px;
  height: 36px;
  background: var(--gray-lightest);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.quantity-selector__input {
  width: 44px;
  height: 36px;
  border: none;
  text-align: center;
}

form.cart {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
}

.add-to-cart-btn {
  background-color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  color: var(--white);
  font-family: var(--font-family-alt);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--brand-primary-darker);
  border-color: var(--brand-primary-darker);
}

.add-to-cart-btn:disabled {
  background-color: var(--gray);
  border-color: var(--gray);
  cursor: not-allowed;
}

/* Accordion Sections on Single Product */
.product-accordion {
  border-top: 1px solid var(--gray-light);
  margin-top: 30px;
}

.product-accordion__item {
  border-bottom: 1px solid var(--gray-light);
}

.product-accordion__header {
  padding: 16px 0;
  font-family: var(--font-family-alt);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.product-accordion__title {
  flex-grow: 1;
}

.product-accordion__icon {
  transition: transform 0.2s ease;
}

.product-accordion__item.open .product-accordion__icon {
  transform: rotate(180deg);
}

.product-accordion__body {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.product-accordion__item.open .product-accordion__body {
  display: block;
}

/* ==========================================================================
   12. CART PAGE (75/25 Layout)
   ========================================================================== */
.cart-row-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.cart-table-col {
  flex: 0 0 72%;
}

.cart-summary-col {
  flex: 0 0 25%;
  background-color: var(--gray-lightest);
  border: 1px solid var(--gray-light);
  padding: 20px;
  height: fit-content;
}

@media (max-width: 991px) {
  .cart-table-col, .cart-summary-col {
    flex: 0 0 100%;
  }
}

.quantity-input-group {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-dark);
}

.quantity-btn {
  background: var(--white);
  border: none;
  width: 32px;
  height: 36px;
  font-weight: 700;
  cursor: pointer;
}

.quantity-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-light);
  border-right: 1px solid var(--gray-light);
  font-weight: 700;
}

.input-text {
  height: 36px;
  border: 1px solid var(--gray-light);
  padding: 0 10px;
  font-size: 13px;
}

.backorder_notification {
  font-size: 12px;
  color: var(--alert-color);
  margin-top: 4px;
}

/* ==========================================================================
   13. CHECKOUT PAGE (WooCommerce & Stripe/PayPal compatibility)
   ========================================================================== */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }
}

.woocommerce-checkout #payment {
  background-color: var(--gray-lightest) !important;
  border: 1px solid var(--gray-light) !important;
  border-radius: 0 !important;
  padding: 20px !important;
  margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--gray-light) !important;
  padding-bottom: 15px !important;
  list-style: none !important;
  padding-left: 0 !important;
}

.woocommerce-checkout #payment div.payment_box {
  background-color: var(--white) !important;
  border: 1px solid var(--gray-lighter) !important;
  color: var(--body-color) !important;
  font-size: 13px !important;
  padding: 12px 15px !important;
  border-radius: 0 !important;
  margin-top: 8px;
}

.woocommerce-checkout #place_order {
  background-color: var(--brand-primary) !important;
  color: var(--white) !important;
  font-size: 16px !important;
  width: 100% !important;
  border-radius: 0 !important;
  padding: 14px 20px !important;
  margin-top: 15px;
}

.woocommerce-checkout #place_order:hover {
  background-color: var(--brand-primary-darker) !important;
}

/* ==========================================================================
   14. MY ACCOUNT & LOGIN/REGISTER PAGES
   ========================================================================== */
.account-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

.account-page__title {
  font-family: var(--font-family-alt);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 10px;
}

.account-form {
  background-color: var(--white);
  border: 1px solid var(--gray-lighter);
  padding: 30px;
  max-width: 480px;
}

.form-link {
  display: inline-block;
  font-size: 13px;
  color: var(--gray-dark);
  text-decoration: underline;
  margin-top: 8px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gray-lighter);
}

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--gray-lighter);
}

.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-family-alt);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
  background-color: var(--brand-primary);
  color: var(--white);
}

/* ==========================================================================
   15. BLOG, SEARCH & 404 PAGES
   ========================================================================== */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.blog-post-card {
  border: 1px solid var(--gray-lighter);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.page-404 {
  text-align: center;
  padding: 80px 20px;
}

.page-404__code {
  font-family: var(--font-family-alt);
  font-size: 72px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.page-404__title {
  font-family: var(--font-family-alt);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-404__desc {
  font-size: 15px;
  color: var(--body-color);
  max-width: 480px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Comments Styling */
.comments-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  border-bottom: 1px solid var(--gray-lighter);
  padding: 15px 0;
  display: flex;
  gap: 15px;
}

.comment-author .avatar {
  border-radius: 50%;
}

.comment-meta {
  font-size: 12px;
  color: var(--gray-dark);
  margin-bottom: 5px;
}

/* ==========================================================================
   16. FOOTER (Exact Source Character Background + Blue Banner)
   ========================================================================== */
.footer-wrapper {
  background-color: #0054a6;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
  margin-top: 3rem;
}

.footer-blue-banner {
  color: var(--white);
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 82.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }

.footer-col {
  min-width: 0;
}

.footer-col-header {
  font-family: var(--font-family-alt);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links-list a {
  color: var(--white);
  text-decoration: none;
}

.footer-links-list a:hover {
  text-decoration: underline;
}

.footer-bottom-row {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white);
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: var(--white);
}

/* ==========================================================================
   17. WPBAKERY PAGE BUILDER COMPATIBILITY
   ========================================================================== */
.entry-content, .vc_row {
  width: 100%;
}
.vc_column_container {
  padding-left: 15px;
  padding-right: 15px;
}
.wpb_wrapper {
  margin-bottom: 20px;
}
.wpb_button, .vc_btn3 {
  font-family: var(--font-family-alt) !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
}
