/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600&family=Homemade+Apple&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  --primary: #DC143C;
  --primary-dark: #8B0000;
  --accent: #FFD700;
  --black: #000000;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-decorative: 'Homemade Apple', cursive;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --container-max: 1400px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h4 { font-size: 1.35rem; }

/* ===== DECORATIVE ELEMENTS - Homemade Apple ===== */

/* Decorative Accent - Small handwritten touches */
.accent-handwritten {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

/* Large Background Text - Watermark style */
.bg-text-decorative {
  font-family: var(--font-decorative);
  font-size: clamp(4rem, 12vw, 10rem);
  color: rgba(220, 20, 60, 0.06);
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: none;
}

/* Quote styling */
.quote-decorative {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
  text-transform: none;
  font-style: normal;
}

/* Signature/Author style */
.signature-decorative {
  font-family: var(--font-decorative);
  font-size: 1.25rem;
  color: var(--primary);
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== SKIP LINK - ACCESSIBILITY ===== */
.skip-link.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.skip-link.screen-reader-text:focus {
  background-color: var(--black);
  clip-path: none;
  color: var(--white);
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: auto;
  width: auto;
  max-width: calc(100vw - 20px);
  left: 5px;
  top: 5px;
  line-height: 1.4;
  padding: 12px 20px;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  z-index: 100000;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 200px) {
  .skip-link.screen-reader-text:focus {
    max-width: calc(100vw - 10px);
    left: 5px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-gold {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-gold:hover {
  background: #E6C200;
  border-color: #E6C200;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

/* ===== ANNOUNCEMENT BANNER ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
  border-bottom: 1px solid rgba(220,20,60,0.3);
  color: var(--white);
  padding: 0;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.03em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: announcementShine 8s ease-in-out infinite;
}
@keyframes announcementShine {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(50%); }
}
.announcement-bar.hidden {
  transform: translateY(-100%);
}

.announcement-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 50px;
  position: relative;
}

.announcement-slider {
  position: relative;
  min-width: 300px;
  min-height: 20px;
}

.announcement-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.announcement-slide.exit {
  opacity: 0;
  transform: translateY(-20px);
}

.announcement-icon {
  color: var(--primary);
  flex-shrink: 0;
  animation: announcementIconPulse 2s ease-in-out infinite;
}
@keyframes announcementIconPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.announcement-slide span {
  color: var(--gray-300);
}
.announcement-slide strong {
  color: var(--white);
  font-weight: 600;
}

.announcement-link {
  color: var(--accent) !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.2);
  margin-left: 5px;
}
.announcement-link:hover {
  color: var(--white) !important;
  text-decoration: none;
}

.announcement-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcement-nav-btn {
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.announcement-nav-btn:hover {
  color: var(--white);
}

.announcement-dots {
  display: flex;
  gap: 6px;
}
.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-600);
  transition: all 0.3s ease;
  cursor: pointer;
}
.announcement-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
.announcement-dot:hover {
  background: var(--gray-400);
}

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}
.announcement-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: var(--announcement-height, 38px);
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}
.header.sticky-top {
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--header-height);
  background: transparent;
  transition: var(--transition);
}

.header.scrolled .header-inner {
  background: var(--black) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header.scrolled .logo,
.header.scrolled .nav-link,
.header.scrolled .header-action { color: var(--white) !important; }
.header.scrolled .lang-selector { background: rgba(255,255,255,0.1); color: var(--white); }

.header.transparent .header-inner { background: transparent; }
.header.transparent:not(.scrolled) .logo,
.header.transparent:not(.scrolled) .nav-link,
.header.transparent:not(.scrolled) .header-action { color: var(--white); }

/* Dark header pages (blog, contact, etc) - always black background */
.header.dark .header-inner { 
  background: var(--black); 
}
.header.dark .logo,
.header.dark .nav-link,
.header.dark .header-action { color: var(--white); }
.header.dark.scrolled .header-inner { background: var(--black) !important; }
.header.dark.scrolled .logo,
.header.dark.scrolled .nav-link,
.header.dark.scrolled .header-action { color: var(--white) !important; }

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.1em;
}
.logo span { color: var(--primary); }

/* Main Navigation */
.main-nav { display: flex; gap: 32px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--primary); }
.nav-link svg { width: 10px; height: 10px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu - Everlast Style (Dark, Full Width) */
.mega-menu {
  position: fixed;
  top: calc(var(--header-height) + 40px);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--gray-900);
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 999;
}
/* Bridge element to prevent hover gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
}
.header.scrolled .mega-menu {
  top: var(--header-height);
}
.nav-item:hover .mega-menu,
.mega-menu:hover { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 280px;
  gap: 40px;
}

.mega-menu-column h4 {
  font-size: 13px;
  color: var(--white);
  margin-bottom: 24px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-700);
  padding-bottom: 12px;
}

.mega-menu-links { display: flex; flex-direction: column; gap: 0; }
.mega-menu-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-400);
  padding: 10px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-800);
}
.mega-menu-links a:hover { color: var(--white); padding-left: 8px; }
.mega-menu-links a:last-child { border-bottom: none; }
.mega-menu-links a strong { 
  font-weight: 600; 
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-menu-featured {
  background: var(--gray-800);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.mega-menu-featured .placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
}
.mega-menu-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.mega-menu-featured h5 { 
  font-size: 16px; 
  margin-bottom: 16px; 
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mega-menu-featured .btn {
  padding: 12px 24px;
  font-size: 12px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}
.header-action svg { width: 22px; height: 22px; }
.header-action:hover { color: var(--primary); }

.cart-count,
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide count badges when value is 0 */
.cart-count:empty,
.wishlist-count:empty,
.cart-count[data-count="0"],
.wishlist-count[data-count="0"],
.cart-count.hidden,
.wishlist-count.hidden {
  display: none;
}

/* Old lang-selector styles removed - using FLY style below */

/* Search Overlay - Everlast Style */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  max-height: 520px;
  background: var(--black);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  border-bottom: 1px solid var(--gray-800);
}
.search-overlay.active { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0);
}
.search-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--gray-800);
}
.search-header .logo { color: var(--white); }

.search-input-wrap { 
  flex: 1;
  max-width: 500px;
  margin: 0 60px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  font-size: 16px;
  border: 1px solid var(--gray-600);
  border-radius: 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
}
.search-input::placeholder { color: var(--gray-500); }
.search-input:focus { outline: none; border-color: var(--white); }
.search-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
}
.search-input-icon svg { width: 20px; height: 20px; }

.search-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}
.search-close:hover { color: var(--primary); }

.search-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 60px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.search-popular h4 { 
  color: var(--white); 
  font-size: 14px; 
  margin-bottom: 24px; 
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.search-popular ul { display: flex; flex-direction: column; gap: 0; }
.search-popular li a {
  display: block;
  padding: 14px 0;
  color: var(--gray-400);
  font-size: 15px;
  border-bottom: 1px solid var(--gray-800);
  transition: var(--transition);
}
.search-popular li a:hover { color: var(--white); padding-left: 10px; }

.search-inspire h4 { 
  color: var(--gray-500); 
  font-size: 13px; 
  margin-bottom: 24px; 
  font-style: italic;
}
.search-inspire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.search-inspire-card {
  display: block;
  position: relative;
  overflow: hidden;
}
.search-inspire-card .placeholder-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 12px;
  transition: var(--transition);
}
.search-inspire-card:hover .placeholder-img { transform: scale(1.05); }
.search-inspire-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-inspire-card span svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}
.search-inspire-card:hover span svg { transform: translateX(4px); }

/* Language Selector - FLY Style */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
}
.lang-selector:hover { background: var(--gray-200); }

/* Lang selector for transparent/dark header */
.header.transparent:not(.scrolled) .lang-selector { 
  background: rgba(255,255,255,0.15); 
  border-color: transparent;
  color: var(--white); 
}
.header.transparent:not(.scrolled) .lang-selector:hover { background: rgba(255,255,255,0.25); }
.header.scrolled .lang-selector { 
  background: var(--gray-100); 
  border-color: var(--gray-200);
  color: var(--gray-800); 
}
.header.scrolled .lang-selector:hover { background: var(--gray-200); }

/* Dark header lang-selector */
.header.dark .lang-selector { 
  background: rgba(255,255,255,0.15); 
  border-color: transparent;
  color: var(--white); 
}
.header.dark .lang-selector:hover { background: rgba(255,255,255,0.25); }

.lang-selector .flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
/* US Flag - compatible SVG */
.lang-selector .flag-us {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1235' height='650' viewBox='0 0 1235 650'%3E%3Crect width='1235' height='650' fill='%23B22234'/%3E%3Cpath stroke='%23FFF' stroke-width='50' d='M0 50h1235m0 100H0m0 100h1235m0 100H0m0 100h1235m0 100H0'/%3E%3Crect width='494' height='350' fill='%233C3B6E'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='m50 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m100 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m150 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m200 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m250 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m300 18 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m75 48 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m125 48 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m175 48 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m225 48 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m275 48 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m50 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m100 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m150 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m200 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m250 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m300 78 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m75 108 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m125 108 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m175 108 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m225 108 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m275 108 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m50 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m100 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m150 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m200 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m250 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m300 138 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m75 168 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m125 168 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m175 168 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m225 168 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m275 168 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m50 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m100 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m150 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m200 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m250 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m300 198 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m75 228 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m125 228 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m175 228 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m225 228 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m275 228 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m50 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m100 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m150 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m200 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m250 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m300 258 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m75 288 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m125 288 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m175 288 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m225 288 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3Cpath d='m275 288 4 12h13l-10 8 4 12-11-8-11 8 4-12-10-8h13z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.lang-selector .flag-gb {
  background: #012169;
  position: relative;
}
.lang-selector .flag-de {
  background: linear-gradient(180deg, #000 33.3%, #DD0000 33.3%, #DD0000 66.6%, #FFCE00 66.6%);
}
.lang-selector .flag-fr {
  background: linear-gradient(90deg, #002395 33.3%, #fff 33.3%, #fff 66.6%, #ED2939 66.6%);
}
.lang-selector .flag-es {
  background: linear-gradient(180deg, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%);
}
.lang-selector .flag-bg {
  background: linear-gradient(180deg, #FFFFFF 33.3%, #00966E 33.3%, #00966E 66.6%, #D62612 66.6%);
}
.lang-selector .flag-it {
  background: linear-gradient(90deg, #009246 33.3%, #fff 33.3%, #fff 66.6%, #CE2B37 66.6%);
}
.lang-selector .flag-pt {
  background: linear-gradient(90deg, #006600 40%, #FF0000 40%);
}
.lang-selector .flag-ru {
  background: linear-gradient(180deg, #FFFFFF 33.3%, #0039A6 33.3%, #0039A6 66.6%, #D52B1E 66.6%);
}
.lang-selector .lang-text {
  color: inherit;
}
.lang-selector svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: var(--transition);
  opacity: 0.8;
}
.lang-selector.open svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 160px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray-700);
  font-size: 14px;
  transition: var(--transition);
}
.lang-dropdown a:hover { background: var(--gray-100); color: var(--black); }
.lang-dropdown a.active { background: var(--gray-100); font-weight: 600; }
.lang-dropdown .flag { width: 22px; height: 15px; flex-shrink: 0; }

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}
.header.dark .mobile-toggle span,
.header.transparent:not(.scrolled) .mobile-toggle span { background: var(--white); }
.header.scrolled .mobile-toggle span { background: var(--white) !important; }

/* Search Overlay Mobile */
@media (max-width: 992px) {
  .search-header { padding: 16px 20px; }
  .search-header .logo { display: none; }
  .search-input-wrap { margin: 0 20px 0 0; }
  .search-body { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding: 40px 20px 60px;
  }
  .search-inspire-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .search-inspire-grid { grid-template-columns: 1fr; }
  .search-inspire-card .placeholder-img { aspect-ratio: 16/9; }
}

/* ===== DRAWERS (Cart/Wishlist) ===== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.drawer.active { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-header h3 { font-size: 18px; }
.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-600);
}
.drawer-close:hover { color: var(--black); }

.drawer-body { flex: 1; overflow-y: auto; padding: 24px; }

.drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-600);
}
.drawer-empty svg { width: 60px; height: 60px; margin-bottom: 16px; opacity: 0.3; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item-img {
  width: 80px;
  height: 100px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-500);
}
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.cart-item-price { font-weight: 700; color: var(--primary); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 18px;
}
.cart-item-remove:hover { color: var(--primary); }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
}
.cart-qty button:hover { border-color: var(--black); }
.cart-qty span { font-weight: 600; }

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 18px;
}
.cart-subtotal strong { font-weight: 700; }
.drawer-footer .btn { width: 100%; }

.cart-upsell { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.cart-upsell h4 { font-size: 14px; margin-bottom: 16px; }
.cart-upsell-items { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.cart-upsell-item {
  flex: 0 0 120px;
  text-align: center;
}
.cart-upsell-item .placeholder-img {
  width: 100%;
  height: 120px;
  background: var(--gray-200);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-500);
}
.cart-upsell-item p { font-size: 12px; font-weight: 600; }
.cart-upsell-item span { font-size: 12px; color: var(--gray-600); }

/* ===== CART DRAWER (WooCommerce) ===== */
/* .cart-drawer-backdrop styles are in "All overlays" section */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  pointer-events: auto !important;
}
.cart-drawer.active { right: 0; pointer-events: auto !important; }
.cart-drawer.loading { pointer-events: none; opacity: 0.7; }
.cart-drawer * { pointer-events: auto; }
.cart-drawer button, 
.cart-drawer a, 
.cart-drawer input { pointer-events: auto !important; cursor: pointer; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.cart-drawer-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.cart-drawer-count {
  font-weight: 400;
  color: var(--gray-600);
}
.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--black); }
.cart-drawer-close svg { width: 24px; height: 24px; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

/* Empty Cart */
.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-600);
}
.cart-drawer-empty__icon {
  margin-bottom: 20px;
}
.cart-drawer-empty__icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--gray-300);
}
.cart-drawer-empty h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.cart-drawer-empty p {
  margin-bottom: 24px;
  color: var(--gray-600);
}

/* Free Shipping Progress */
.cart-drawer-shipping-progress {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 8px;
}
.shipping-progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.shipping-progress-bar__fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.shipping-progress-text {
  font-size: 13px;
  color: var(--gray-700);
  text-align: center;
  margin: 0;
}
.shipping-progress-text .woocommerce-Price-amount { font-weight: 600; color: var(--primary); }

.cart-drawer-shipping-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
}
.cart-drawer-shipping-success svg { width: 18px; height: 18px; }

/* Cart Items */
.cart-drawer-items {
  padding-bottom: 16px;
}
.cart-drawer-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: opacity 0.3s, transform 0.3s;
}
.cart-drawer-item.removing {
  opacity: 0.3;
  transform: translateX(20px);
}
.cart-drawer-item__image {
  width: 80px;
  flex-shrink: 0;
}
.cart-drawer-item__image a { display: block; }
.cart-drawer-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.cart-drawer-item__info {
  flex: 1;
  min-width: 0;
}
.cart-drawer-item__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.cart-drawer-item__title a {
  color: var(--black);
  text-decoration: none;
}
.cart-drawer-item__title a:hover { color: var(--primary); }
.cart-drawer-item__variation {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.cart-drawer-item__price {
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
  margin-bottom: 8px;
}
.cart-drawer-item__price del {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 13px;
}
.cart-drawer-item__price ins {
  text-decoration: none;
  color: var(--primary);
}

/* Quantity Controls */
.cart-drawer-item__quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  width: fit-content;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--gray-100); color: var(--black); }
.qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
  font-weight: 600;
  font-size: 14px;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-drawer-item__remove {
  position: absolute;
  top: 16px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px;
  transition: color 0.2s;
}
.cart-drawer-item__remove:hover { color: var(--primary); }
.cart-drawer-item__remove svg { width: 18px; height: 18px; }

/* Upsells */
.cart-drawer-upsells {
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
}
.cart-drawer-upsells h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.cart-drawer-upsells__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.cart-drawer-upsell {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px;
  flex: 0 0 200px;
}
.cart-drawer-upsell__image {
  width: 50px;
  flex-shrink: 0;
}
.cart-drawer-upsell__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.cart-drawer-upsell__info { flex: 1; min-width: 0; }
.cart-drawer-upsell__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-drawer-upsell__price {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
}
.cart-drawer-upsell__add {
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cart-drawer-upsell__add:hover {
  background: var(--primary);
  color: var(--white);
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.cart-drawer-totals {
  margin-bottom: 16px;
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 6px;
}
.cart-drawer-subtotal strong {
  font-weight: 700;
  font-size: 18px;
}
.cart-drawer-shipping-note {
  font-size: 12px;
  color: var(--gray-600);
  margin: 0;
}
.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cart-drawer-view-cart {
  width: 100%;
  justify-content: center;
}
.cart-drawer-checkout {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-drawer-checkout svg { width: 16px; height: 16px; }
.cart-drawer-payments {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.cart-drawer-payments img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

/* Loading Spinner */
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* Mobile Cart Drawer */
@media (max-width: 768px) {
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer-header { padding: 16px; }
  .cart-drawer-body { padding: 0 16px; }
  .cart-drawer-footer { padding: 16px; }
  .cart-drawer-item__image { width: 70px; }
  .cart-drawer-upsell { flex: 0 0 180px; }
}

/* ===== WISHLIST DRAWER ===== */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}
.wishlist-drawer.active { right: 0; }

.wishlist-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.wishlist-drawer .drawer-header h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.wishlist-drawer-count {
  font-weight: 400;
  color: var(--gray-600);
}
.wishlist-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 28px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.wishlist-drawer-close:hover { color: var(--black); }

.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Wishlist Empty State */
.wishlist-drawer .drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-600);
}
.wishlist-drawer .drawer-empty-icon {
  margin-bottom: 20px;
}
.wishlist-drawer .drawer-empty-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-400);
}
.wishlist-drawer .drawer-empty-text {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--gray-600);
}

/* Wishlist Items */
.wishlist-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: opacity 0.2s, transform 0.2s;
}
.wishlist-item:first-child { padding-top: 0; }
.wishlist-item:last-child { border-bottom: none; }

.wishlist-item-image {
  width: 80px;
  flex-shrink: 0;
  display: block;
}
.wishlist-item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.wishlist-item-info {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}
.wishlist-item-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.wishlist-item-title a {
  color: var(--black);
  text-decoration: none;
}
.wishlist-item-title a:hover { color: var(--primary); }

.wishlist-item-price {
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
  margin: 0 0 12px;
}
.wishlist-item-price del {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 13px;
}
.wishlist-item-price ins {
  text-decoration: none;
  color: var(--primary);
}

.wishlist-item-add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.wishlist-item-add-to-cart:hover { background: var(--primary); color: var(--white); }
.wishlist-item-add-to-cart svg { width: 14px; height: 14px; }

.wishlist-item-outofstock {
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
}

.wishlist-item-remove {
  position: absolute;
  top: 16px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 24px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.wishlist-item-remove:hover { color: var(--primary); }

.wishlist-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.wishlist-drawer-footer .btn-full { width: 100%; }

/* Mobile Wishlist Drawer */
@media (max-width: 768px) {
  .wishlist-drawer { width: 100%; right: -100%; }
  .wishlist-drawer .drawer-header { padding: 16px; }
  .wishlist-drawer-body { padding: 16px; }
  .wishlist-drawer-footer { padding: 16px; }
  .wishlist-item-image { width: 70px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
}

/* Newsletter Section */
.footer-newsletter-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  border-top: 3px solid var(--primary);
  padding: 60px 0;
}
.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.footer-newsletter-content {
  max-width: 500px;
}
.footer-newsletter-content .accent-handwritten {
  display: block;
  margin-bottom: 8px;
}
.footer-newsletter-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-newsletter-content p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gray-700);
  border-radius: 4px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsletter-form button:hover {
  background: var(--primary-dark);
}
.newsletter-form button svg {
  transition: transform 0.3s ease;
}
.newsletter-form button:hover svg {
  transform: translateX(4px);
}

/* Main Footer */
.footer-main {
  padding: 70px 0;
  border-bottom: 1px solid var(--gray-800);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 50px;
}

/* Brand Column */
.footer-brand {
  padding-right: 30px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo:hover {
  color: var(--primary);
}
.footer-tagline {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-brand .footer-social {
  margin-top: 0;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* Footer Columns */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--white);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-400);
  transition: var(--transition);
  display: inline-block;
}
.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-contact .footer-contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact .footer-contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.footer-contact .footer-contact-item p,
.footer-contact .footer-contact-item a {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}
.footer-contact .footer-contact-item a:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  background: var(--gray-900);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-legal a:hover {
  color: var(--white);
}
.footer-legal .divider {
  color: var(--gray-700);
  font-size: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-payments img {
  height: 24px;
  width: auto;
  border-radius: 4px;
  background: var(--white);
  padding: 2px 4px;
  transition: var(--transition);
}
.footer-payments img:hover {
  transform: translateY(-2px);
}
.footer-payments .payment-icon {
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.footer-payments .payment-icon:hover {
  transform: translateY(-2px);
}
.footer-payments .payment-icon svg {
  display: block;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(220,20,60,0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(220,20,60,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(255,215,0,0.08) 0%, transparent 50%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black 0%, transparent 70%);
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-bg-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-dark);
  top: -200px;
  right: -100px;
}
.hero-bg-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -150px;
  left: -100px;
  opacity: 0.2;
  animation-delay: -4s;
}
@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
  100% { transform: scale(1.2) translate(20px, -20px); opacity: 0.6; }
}

/* Hero Decorative Elements */
.hero-decorative {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  opacity: 0.15;
}
.hero-decorative-left { left: 40px; }
.hero-decorative-right { right: 40px; text-align: right; }
.hero-decorative-text {
  font-family: var(--font-decorative);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  text-transform: lowercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-decorative-left .hero-decorative-text { transform: rotate(180deg); }

/* Hero Badge */
.hero-badge {
  position: absolute;
  top: 140px;
  right: 10%;
  z-index: 2;
  animation: rotateBadge 20s linear infinite;
  opacity: 0.8;
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
  animation: heroFadeIn 1s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-decorative);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.hero-subtitle-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-title {
  margin-bottom: 28px;
}
.hero-title-line {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.hero-title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(
    135deg, 
    #FFFFFF 0%, 
    #FFF9C4 15%, 
    #FFEB3B 40%, 
    #FFC107 60%, 
    #FFE082 85%, 
    #FFFDE7 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7)) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
}
.btn-hero svg {
  transition: transform 0.3s ease;
}
.btn-hero:hover svg {
  transform: translateX(5px);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
}
.btn-outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.hero-feature svg {
  flex-shrink: 0;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  z-index: 3;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-dot {
  width: 3px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-header h2 { margin: 0; }
.section-header .view-all {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header .view-all:hover { color: var(--primary); }

/* ===== CAROUSEL ===== */
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-item { scroll-snap-align: start; flex: 0 0 auto; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 4px;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  color: var(--black);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--black);
  color: var(--white);
}

.carousel-prev:hover svg,
.carousel-next:hover svg {
  stroke: var(--white);
}

.carousel-prev svg,
.carousel-next svg {
  width: 18px;
  height: 18px;
}

/* Product Carousel specific */
.product-carousel {
  position: relative;
  padding-bottom: 70px;
}

.product-carousel .carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-carousel .carousel::-webkit-scrollbar {
  display: none;
}

.product-carousel .carousel-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 220px;
  scroll-snap-align: start;
}

.product-carousel .carousel-nav {
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-carousel .carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Collection Cards (Trending) */
.collection-card {
  width: 350px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection-card .placeholder-img {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
  transition: var(--transition);
}
.collection-card:hover .placeholder-img { transform: scale(1.05); }
.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}
.collection-card h3 { font-size: 20px; margin-bottom: 8px; }
.collection-card p { font-size: 14px; color: var(--gray-300); }

/* ===== TRENDING SECTION (Everlast Style) ===== */
.trending-section {
  background: var(--white);
  padding: 80px 0;
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.trending-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trending-tabs {
  display: flex;
  gap: 8px;
}

.trending-tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.trending-tab:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.trending-tab.active {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--white);
}

.trending-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: start;
}

/* Featured Collection Image */
.trending-featured {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.trending-featured-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 16px;
  transition: transform 0.5s ease;
}

.trending-featured:hover .trending-featured-img {
  transform: scale(1.05);
}

.trending-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: var(--white);
}

.trending-featured-label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.trending-featured-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.trending-featured-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Products Grid in Trending */
.trending-products-wrap {
  position: relative;
  flex: 1;
}

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

.trending-products-grid .product-card {
  width: 100%;
}

/* Legacy trending product styles (can be removed later) */
.trending-product {
  display: block;
  text-decoration: none;
  color: var(--gray-900);
}

.trending-product-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-100);
  overflow: hidden;
  margin-bottom: 16px;
}

.trending-product-img .img-primary,
.trending-product-img .img-secondary {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  transition: opacity 0.4s ease;
}

.trending-product-img .img-secondary {
  opacity: 0;
  background: var(--gray-200);
}

.trending-product:hover .img-primary {
  opacity: 0;
}

.trending-product:hover .img-secondary {
  opacity: 1;
}

.trending-product-info h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.trending-product-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trending-product-price .sale {
  color: var(--primary);
}

.trending-product-price .original {
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.trending-product-colors {
  display: flex;
  gap: 6px;
}

.trending-product-colors span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.trending-product-colors span:hover {
  transform: scale(1.2);
}

/* Trending Pagination */
.trending-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.trending-page-info {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-500);
}

.trending-dots {
  display: flex;
  gap: 8px;
}

.trending-dot {
  width: 40px;
  height: 4px;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.trending-dot.active {
  background: var(--primary);
}

.trending-dot:hover {
  background: var(--primary-dark);
}

/* ===== CATEGORY GRID (Gameness Style) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}
.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.category-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.category-card:nth-child(2) { grid-column: span 4; }
.category-card:nth-child(3) { grid-column: span 3; }
.category-card:nth-child(4) { grid-column: span 3; }
.category-card:nth-child(5) { grid-column: span 4; }

.category-card .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: transform 0.5s ease;
}
.category-card:hover .placeholder-img { transform: scale(1.08); }

/* Red accent line on hover */
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  z-index: 10;
  transition: width 0.4s ease;
}
.category-card:hover::before {
  width: 100%;
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}
.category-card h3 { 
  font-size: 20px; 
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.category-card:hover h3 {
  color: var(--primary);
}

/* Button hover effect */
.category-card .btn { 
  padding: 12px 24px; 
  font-size: 13px;
  transition: all 0.3s ease;
}
.category-card .btn-white:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== MARQUEE SLOGAN ===== */
.marquee-section {
  background: linear-gradient(90deg, var(--black) 0%, var(--gray-900) 50%, var(--black) 100%);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  flex: 0 0 auto;
  padding: 0 50px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
}
.marquee-item span { 
  color: var(--primary); 
  font-size: 20px;
  margin: 0 5px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRODUCT CARD (Fujisports Style) ===== */
.product-card {
  position: relative;
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

/* Badges - Top left */
.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.badge-new { 
  background: var(--accent); 
  color: var(--black); 
}
.badge-sale { 
  background: var(--gray-900); 
  color: var(--white); 
}

/* Wishlist button - Top right (hidden by default, shows on hover) */
.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition);
  color: var(--gray-600);
}
.product-card-wishlist svg {
  width: 18px;
  height: 18px;
}
.product-card:hover .product-card-wishlist {
  opacity: 1;
  transform: translateY(0);
}
.product-card-wishlist:hover { 
  background: var(--primary); 
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}
/* Active/Wishlisted state - Red heart for clear indication */
.product-card-wishlist.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: #FFFFFF;
  border-color: #E11D48;
  color: #E11D48;
}
.product-card-wishlist.active svg {
  fill: #E11D48;
  stroke: #E11D48;
  animation: heartPulse 0.3s ease-out;
}
.product-card-wishlist.active:hover {
  background: #E11D48;
  color: #FFFFFF;
  border-color: #E11D48;
}
.product-card-wishlist.active:hover svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}

/* Heart pulse animation */
@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Image wrapper for proper Quick Add positioning */
.product-card-images-wrapper {
  position: relative;
  overflow: hidden;
}

/* Image container with dual images */
.product-card-images {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
}
.product-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: var(--gray-100);
}
.product-card-img.secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
/* Image swap on hover */
.product-card:hover .product-card-img.primary { 
  opacity: 0; 
}
.product-card:hover .product-card-img.secondary { 
  opacity: 1; 
}

/* Quick Add button - appears on hover */
.product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease, background 0.3s ease;
}
.product-card-quick-add svg {
  width: 16px;
  height: 16px;
}
.product-card:hover .product-card-quick-add,
.product-card-images-wrapper:hover .product-card-quick-add {
  transform: translateY(0);
}
.product-card-quick-add:hover {
  background: var(--primary);
  color: var(--white);
}

/* Product Info Section */
.product-card-info { 
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

/* Category/Collection label */
.product-card-category {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.product-card-category:hover {
  color: var(--primary);
}

/* Product Title */
.product-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  line-height: 1.3;
  margin: 0;
}
.product-card-title a { 
  color: var(--black);
  text-decoration: none;
}
.product-card-title a:hover { 
  color: var(--primary); 
}

/* Price display */
.product-card-price { 
  display: flex; 
  align-items: center; 
  gap: 10px;
  margin-top: 4px;
}
.product-card-price .current {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}
/* Sale price styling */
.product-card-price.on-sale .current {
  color: var(--black);
}
.product-card-price .original {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-500);
  text-decoration: line-through;
}

/* Color Swatches - Below price (Fujisports style) */
.product-card-colors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
  min-height: 28px;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
}
/* Show swatches on hover */
.product-card:hover .color-swatch {
  opacity: 1;
  transform: scale(1);
}
.color-swatch:hover { 
  border-color: var(--gray-600);
}
.color-swatch.active {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}
/* Color count indicator */
.color-count {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}
/* More colors indicator */
.color-more {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Larger cards on Catalog page */
.catalog-grid .product-card {
  /* Cards are slightly larger due to 3-column layout on catalog */
}
.catalog-grid .product-card-title {
  font-size: 17px;
}
.catalog-grid .product-card-price .current {
  font-size: 17px;
}

/* Carousel product cards - slightly smaller */
.product-carousel .product-card {
  min-width: 260px;
  max-width: 300px;
}

/* Trending section product cards */
.trending-products .product-card {
  width: 100%;
}

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

/* ===== FEATURED PRODUCT SECTION ===== */
.featured-product {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.featured-bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
  pointer-events: none;
}
.featured-product-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 650px;
}
.featured-product-image {
  position: relative;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}
.featured-product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
}
.featured-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(220,20,60,0.1);
  border-left: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
}
.featured-product-content h2 { 
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
.featured-product-content h2 span {
  color: var(--gray-400);
  font-weight: 400;
}
.featured-product-content p { 
  color: var(--gray-400); 
  margin-bottom: 30px; 
  max-width: 400px;
  font-size: 16px;
  line-height: 1.7;
}
.featured-price {
  margin-bottom: 30px;
}
.featured-price .price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.featured-price .price-note {
  font-size: 13px;
  color: var(--gray-500);
}
.btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.btn-featured svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.btn-featured:hover svg {
  transform: translateX(5px);
}
.featured-decorative {
  font-family: var(--font-decorative);
  font-size: 1.2rem;
  color: rgba(220,20,60,0.4);
  margin-top: 40px;
  display: block;
}

/* Hotspots */
.hotspots { position: absolute; inset: 0; }
.hotspot {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220,20,60,0.4);
  transition: all 0.3s ease;
}
.hotspot svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  transition: transform 0.3s ease;
}
.hotspot:hover { 
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(220,20,60,0.6);
}
.hotspot:hover svg {
  transform: rotate(90deg);
}
.hotspot::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: hotspotPulse 2s ease-out infinite;
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.hotspot-popup {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.hotspot:hover .hotspot-popup { 
  opacity: 1; 
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hotspot-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--white);
}
.hotspot-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.hotspot-popup h5 { 
  font-size: 15px; 
  margin-bottom: 6px;
  color: var(--black);
}
.hotspot-popup p { 
  font-size: 13px; 
  color: var(--gray-600); 
  line-height: 1.5;
}

/* ===== CUSTOM PRODUCT SECTION ===== */
.custom-section {
  background: var(--gray-100);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.custom-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, var(--gray-300) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}
.custom-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.custom-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.custom-section-content h2 { 
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px; 
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.custom-section-content p { 
  color: var(--gray-600); 
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
  max-width: 450px;
}
.custom-features { 
  margin-bottom: 35px;
  list-style: none;
}
.custom-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--gray-700);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}
.custom-features li:hover .feature-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}
.custom-features li:hover .feature-icon svg {
  stroke: var(--white);
}
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 18px 32px;
  font-size: 14px;
  border: none;
}
.btn-custom:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-custom svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.btn-custom:hover svg {
  transform: translateX(5px);
}

/* Custom Visual Card */
.custom-section-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-card {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.custom-card-inner {
  background: var(--black);
  border-radius: 20px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.custom-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,20,60,0.2) 0%, transparent 50%);
}
.custom-preview-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.custom-preview-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary);
  padding: 8px 16px;
  border-radius: 6px;
}
.custom-preview-badge span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.custom-decorative {
  font-family: var(--font-decorative);
  font-size: 1.3rem;
  color: var(--primary);
  position: absolute;
  bottom: -30px;
  right: 20px;
  transform: rotate(-5deg);
}

/* ===== TRUST POINTS ===== */
.trust-section { 
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(220,20,60,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(220,20,60,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.trust-header {
  text-align: center;
  margin-bottom: 60px;
}
.trust-header h2 {
  color: var(--white);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}
.trust-header .accent-handwritten {
  color: var(--primary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.trust-item { 
  text-align: center; 
  padding: 50px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.trust-item:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(220,20,60,0.3);
  box-shadow: 0 20px 60px rgba(220,20,60,0.15);
}
.trust-item.featured {
  background: linear-gradient(135deg, rgba(220,20,60,0.15) 0%, rgba(220,20,60,0.05) 100%);
  border-color: rgba(220,20,60,0.3);
}
.trust-item.featured:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(220,20,60,0.25);
}
.trust-icon {
  width: 90px;
  height: 90px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.4s ease;
}
.trust-item:hover .trust-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
}
.trust-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  transition: all 0.4s ease;
}
.trust-item:hover .trust-icon svg {
  stroke: var(--white);
}
.trust-icon-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-item h4 { 
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.trust-item p { 
  color: var(--gray-400); 
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.trust-decorative {
  font-family: var(--font-decorative);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.trust-item:hover .trust-decorative {
  opacity: 1;
  transform: translateY(0);
}

/* Trust animation on scroll */
@keyframes trustFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.trust-item {
  animation: trustFadeIn 0.6s ease forwards;
}
.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
}
.breadcrumb ul { display: flex; align-items: center; gap: 8px; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: var(--gray-900); font-weight: 500; }

/* ===== CATALOG PAGE ===== */
/* Catalog Header - Hero Style */
.catalog-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catalog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.catalog-header .container { position: relative; z-index: 1; }
.catalog-header h1 { 
  margin-bottom: 16px; 
  color: var(--white);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
}
.catalog-header p { 
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.catalog-header-bg {
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.catalog-header .breadcrumb {
  margin-bottom: 20px;
}
.catalog-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.catalog-header .breadcrumb a:hover { color: var(--white); }
.catalog-header .breadcrumb li { color: rgba(255,255,255,0.4); }
.catalog-header .breadcrumb li:last-child { color: var(--primary); font-weight: 600; }
.catalog-header-label {
  display: inline-block;
  font-family: var(--font-decorative);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
}
.catalog-header-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.catalog-header-stat {
  text-align: center;
}
.catalog-header-stat strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
}
.catalog-header-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.catalog-section { 
  padding: 40px 20px 80px;
  background: var(--gray-50);
}

/* Catalog Top Bar */
.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.catalog-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.catalog-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}
.filter-toggle svg { opacity: 0.8; }
.filter-toggle:hover { 
  background: var(--primary); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}
.filter-toggle .filter-count-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
}
.filter-toggle:hover .filter-count-badge { background: var(--white); color: var(--primary); }

.catalog-count { 
  font-size: 15px; 
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.catalog-count strong { 
  color: var(--black);
  font-size: 18px;
}

/* View Toggle */
.view-toggle {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.view-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition);
}
.view-btn:not(:last-child) { border-right: 2px solid var(--gray-200); }
.view-btn:hover { color: var(--black); background: var(--gray-50); }
.view-btn.active { background: var(--black); color: var(--white); }

.catalog-sort {
  position: relative;
}
.catalog-sort label {
  font-size: 13px;
  color: var(--gray-500);
  margin-right: 8px;
}
.catalog-sort select {
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  min-width: 180px;
  transition: var(--transition);
}
.catalog-sort select option {
  color: var(--black);
  background: var(--white);
  padding: 10px;
}
.catalog-sort select:hover { border-color: var(--gray-400); }
.catalog-sort select:focus { 
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Active Filters Bar - Premium Style */
.active-filters-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}
.active-filters-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  color: var(--white);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.filter-badge:hover { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-1px);
}
.filter-badge button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.filter-badge button:hover { 
  background: var(--white);
  transform: rotate(90deg);
}
.filter-badge button:hover svg { stroke: var(--black); }
.filter-badge button svg { stroke: var(--white); width: 10px; height: 10px; }
.clear-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-left: auto;
  transition: var(--transition);
}
.clear-filters:hover { 
  background: var(--primary);
  color: var(--white);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 0 0 80px;
}
.catalog-main {
  min-width: 0;
}

/* Filters Sidebar - Premium Design */
.filters-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}
.filters-sidebar::-webkit-scrollbar { width: 6px; }
.filters-sidebar::-webkit-scrollbar-track { background: var(--gray-100); }
.filters-sidebar::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.filters-sidebar::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.filters-header h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.filters-header h3 svg {
  opacity: 0.8;
}
.filter-close {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}
.filter-close:hover { background: rgba(255,255,255,0.2); }

.filter-group {
  border-bottom: 1px solid var(--gray-100);
}
.filter-group:last-of-type { border-bottom: none; }
.filter-group-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.filter-group-header:hover { 
  background: var(--gray-50);
  color: var(--black);
}
.filter-group[data-expanded="true"] .filter-group-header {
  color: var(--black);
  background: var(--gray-50);
}
.filter-group-header > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-group-header > span:first-child svg {
  opacity: 0.4;
  transition: var(--transition);
}
.filter-group-header:hover > span:first-child svg,
.filter-group[data-expanded="true"] .filter-group-header > span:first-child svg {
  opacity: 1;
}
.filter-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.filter-group-header:hover .filter-arrow { 
  background: var(--gray-200);
}
.filter-group[data-expanded="true"] .filter-arrow { 
  background: var(--primary);
  color: var(--white);
}
.filter-group[data-expanded="true"] .filter-arrow svg {
  stroke: var(--white);
}
.filter-group[data-expanded="false"] .filter-arrow { 
  transform: rotate(-90deg); 
}
.filter-group[data-expanded="false"] .filter-group-content { 
  display: none;
}
.filter-group-content {
  padding: 0 20px 20px;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Filter Active Count Badge */
.filter-group-header .filter-active-count {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Filter Options - Checkbox Style */
.filter-options { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.filter-option:hover { 
  background: var(--gray-100);
}
.filter-option input { display: none; }
.filter-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  background: var(--white);
}
.filter-option:hover .filter-checkbox { 
  border-color: var(--gray-500);
}
.filter-option input:checked + .filter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-option input:checked + .filter-checkbox::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.filter-label { 
  flex: 1; 
  color: var(--gray-600);
  font-size: 14px;
}
.filter-option:hover .filter-label { color: var(--black); }
.filter-option input:checked ~ .filter-label { 
  color: var(--black);
  font-weight: 500;
}
.filter-count {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 500;
  min-width: 24px;
  text-align: right;
}

/* Size Filter Options - Grid Style */
.filter-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.filter-size-option {
  position: relative;
  cursor: pointer;
}
.filter-size-option input { display: none; }
.filter-size-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}
.filter-size-option:hover span { 
  border-color: var(--black);
  background: var(--gray-50);
}
.filter-size-option input:checked + span,
.filter-size-option.active span {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Color Filter - Circle Swatches */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-color {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.filter-color svg { 
  display: none; 
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.filter-color:hover { 
  transform: scale(1.15); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.filter-color.active {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--black);
}
.filter-color.active svg { display: block; }
.filter-color[style*="white"] svg,
.filter-color[data-color="white"] svg { 
  filter: none;
}
.filter-color[style*="white"] svg path,
.filter-color[data-color="white"] svg path { 
  stroke: var(--gray-600);
}

/* Price Range - Modern Slider */
.price-range { margin-top: 8px; }
.price-range-slider {
  position: relative;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 10px;
}
.price-range-slider input[type="range"] {
  position: absolute;
  width: calc(100% - 20px);
  left: 10px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  background: transparent;
  pointer-events: none;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  border: 4px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.price-range-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.price-slider-track {
  position: absolute;
  width: calc(100% - 20px);
  left: 10px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-200);
  border-radius: 3px;
}
.price-slider-range {
  position: absolute;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(4% + 10px);
  right: calc(60% + 10px);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0 14px;
  flex: 1;
  background: var(--white);
  transition: var(--transition);
}
.price-input:focus-within { 
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}
.price-input span { 
  color: var(--gray-400); 
  font-size: 15px;
  font-weight: 600;
}
.price-input input {
  width: 100%;
  padding: 12px 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--gray-800);
}
.price-input input:focus { outline: none; }
.price-separator { 
  color: var(--gray-300);
  font-size: 20px;
  font-weight: 300;
}

/* Filters Footer */
.filters-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  position: sticky;
  bottom: 0;
}
.filter-clear-btn { 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 12px;
  border-radius: 8px;
}
.filter-clear-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(220, 20, 60, 0.05);
}
.filter-apply-btn { 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--primary);
  border: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
}
.filter-apply-btn:hover {
  background: var(--primary-dark);
}
.filter-apply-btn svg,
.filter-clear-btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* Promo Banners in Catalog - Multiple Styles */
.catalog-promo {
  grid-column: span 4;
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: var(--transition);
  min-height: 280px;
}
.catalog-promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  min-height: 200px;
  border-radius: 8px;
}
.catalog-promo-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.catalog-promo-img .placeholder-img {
  height: 100%;
  min-height: 280px;
  transition: transform 0.5s ease;
}
.catalog-promo:hover .catalog-promo-img .placeholder-img {
  transform: scale(1.05);
}
.catalog-promo-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalog-promo-label {
  display: inline-block;
  font-family: var(--font-decorative);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}
.catalog-promo h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.catalog-promo p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 400px;
}

/* Promo Dark Style */
.catalog-promo-dark {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  color: var(--white);
}
.catalog-promo-dark .catalog-promo-label { color: var(--accent); }

/* Promo Red Style */
.catalog-promo-red {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.catalog-promo-red .catalog-promo-label { color: var(--gold); }
.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

/* Promo Gold Style */
.catalog-promo-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: var(--black);
}
.catalog-promo-gold .catalog-promo-label { color: var(--primary-dark); }
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: var(--gray-900);
}

/* Full Width Promo */
.catalog-promo-full {
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.catalog-promo-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.9;
}
.catalog-promo-full .catalog-promo-content {
  position: relative;
  z-index: 1;
}
.catalog-promo-full p { margin-left: auto; margin-right: auto; }

/* Badge Limited */
.badge-limited {
  background: var(--gold);
  color: var(--black);
}

/* Pagination */
/* Results Info / Load More */
.catalog-results-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
}
.catalog-results-info p {
  font-size: 15px;
  color: var(--gray-600);
}
.catalog-results-info p strong { color: var(--black); }
.catalog-progress {
  width: 200px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.catalog-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.btn-load-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}
.btn-load-more:hover {
  background: var(--black);
  color: var(--white);
}
.btn-load-more svg { transition: transform 0.3s ease; }
.btn-load-more:hover svg { transform: rotate(90deg); }

/* Pagination - Modern Style */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 30px 0;
}
.pagination a, .pagination span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  background: var(--white);
}
.pagination span { 
  border: none;
  color: var(--gray-400);
}
.pagination a:hover { 
  border-color: var(--black);
  background: var(--gray-50);
  transform: translateY(-2px);
}
.pagination .active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pagination .prev-next {
  width: auto;
  padding: 0 20px;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pagination .prev-next:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ===== PDP PAGE ===== */
.pdp-page {
  padding-top: 100px;
}
.pdp-breadcrumb-wrapper {
  background: var(--gray-100);
  padding: 16px 0;
  margin-bottom: 20px;
}
.pdp-breadcrumb-wrapper .breadcrumb {
  padding: 0;
  margin: 0;
}
.pdp-section { 
  padding: 0 0 60px; 
  position: relative;
  overflow: hidden;
}
.pdp-main {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  align-items: start;
}

/* ===== PDP VISUAL ENHANCEMENTS ===== */

/* Section Separators */
.pdp-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Section Headers - Clean Style */
.pdp-section-header {
  margin-bottom: 40px;
}
.pdp-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
.pdp-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Alternating Section Backgrounds */
.fbt-section {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.reviews-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.pdp-related-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
}
.pdp-faq-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.recently-viewed {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* Card Hover Enhancement */
.pdp-carousel-track .product-card,
.recently-viewed .product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pdp-carousel-track .product-card:hover,
.recently-viewed .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Trust Blocks Visual Improvement */
.pdp-trust-blocks {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

/* FBT Visual Improvement */
.fbt-header {
  position: relative;
  padding-bottom: 20px;
}
.fbt-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

/* FAQ Visual Improvement */
.pdp-faq-grid {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 30px;
}
.pdp-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}
.pdp-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Gallery - FujiSports/Gameness Style */
.pdp-gallery {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.pdp-thumbnails-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 600px;
  overflow-y: auto;
}
.pdp-thumbnails-vertical::-webkit-scrollbar { width: 4px; }
.pdp-thumbnails-vertical::-webkit-scrollbar-track { background: var(--gray-100); }
.pdp-thumbnails-vertical::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 2px; }

.pdp-thumb {
  width: 80px;
  height: 100px;
  background: var(--gray-100);
  cursor: pointer;
  border: 2px solid transparent;
  padding: 4px;
  transition: var(--transition);
  overflow: hidden;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumb:hover { border-color: var(--gray-400); }
.pdp-thumb.active { border-color: var(--black); }

.pdp-gallery-main { position: relative; }
.pdp-main-image {
  background: var(--gray-100);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pdp-main-image:hover img { transform: scale(1.02); }

.pdp-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
  z-index: 2;
}
.pdp-zoom-btn:hover { background: var(--black); color: var(--white); }

.pdp-gallery-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.pdp-gallery-prev, .pdp-gallery-next {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: var(--gray-700);
  transition: var(--transition);
}
.pdp-gallery-prev:hover, .pdp-gallery-next:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Product Info - Right Side */
.pdp-info { padding: 10px 0 0 20px; }

/* Reviews Top (FujiSports style) */
.pdp-reviews-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp-stars { display: flex; gap: 2px; }
.pdp-reviews-link {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: underline;
}
.pdp-reviews-link:hover { color: var(--primary); }

/* Header & Badge */
.pdp-header { margin-bottom: 16px; }
.pdp-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.pdp-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Meta Info */
.pdp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
}
.pdp-sku { color: var(--gray-600); }
.pdp-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.pdp-stock.in-stock { color: #22C55E; }
.pdp-stock.out-of-stock { color: var(--primary); }

/* Price Block (FujiSports style) */
.pdp-price-block { margin-bottom: 20px; }
.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-price-current {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}
.pdp-price-original {
  font-size: 18px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.pdp-price-discount {
  background: var(--primary);
  color: var(--white);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}
.pdp-price-note {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 6px;
}

.pdp-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

/* Variant Groups */
.pdp-variant-group { margin-bottom: 24px; }
.pdp-variant-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.pdp-variant-label { font-weight: 600; }
.pdp-variant-value { color: var(--gray-600); }
.pdp-size-chart-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: 13px;
}
.pdp-size-chart-link:hover { color: var(--primary); }

/* Color Options */
.pdp-color-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  padding: 3px;
  transition: var(--transition);
  background: transparent;
}
.pdp-color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color);
}
.pdp-color-btn:hover { border-color: var(--gray-400); }
.pdp-color-btn.active { border-color: var(--black); border-width: 2px; }
.pdp-color-btn[title="White"] .pdp-color-swatch { box-shadow: inset 0 0 0 1px var(--gray-300); }

/* Size Options (FujiSports style) */
.pdp-size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-size-btn {
  min-width: 60px;
  padding: 12px 18px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.pdp-size-btn:hover { border-color: var(--black); color: var(--black); }
.pdp-size-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.pdp-size-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

/* Actions - Quantity & Add to Cart */
.pdp-actions { margin-bottom: 24px; }
.pdp-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pdp-quantity-label { font-size: 14px; font-weight: 600; }
.pdp-quantity-selector {
  display: flex;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
}
.pdp-qty-btn {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
}
.pdp-qty-btn:hover { background: var(--gray-200); color: var(--black); }
.pdp-qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
  font-size: 16px;
  font-weight: 600;
}
.pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp-cart-buttons { display: flex; gap: 12px; }
.pdp-add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}
.pdp-add-to-cart:hover { background: var(--primary); }
.pdp-wishlist-btn {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.pdp-wishlist-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Active/Wishlisted state - Red heart */
.pdp-wishlist-btn.active { 
    background: #FFFFFF; 
    border-color: #E11D48; 
    color: #E11D48; 
}
.pdp-wishlist-btn.active svg {
    fill: #E11D48;
    stroke: #E11D48;
}
.pdp-wishlist-btn.active:hover {
    background: #E11D48;
    color: #FFFFFF;
}
.pdp-wishlist-btn.active:hover svg {
    fill: #FFFFFF;
    stroke: #FFFFFF;
}

/* Trust Blocks (FujiSports style) */
.pdp-trust-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 8px;
}
.pdp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pdp-trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
}
.pdp-trust-content h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pdp-trust-content p {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Frequently Bought Together (Venum style) */
.fbt-section {
  background: var(--gray-100);
  padding: 60px 0;
}
.fbt-header {
  text-align: center;
  margin-bottom: 40px;
}
.fbt-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}
.fbt-subtitle {
  font-size: 15px;
  color: var(--gray-600);
}

.fbt-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.fbt-products-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fbt-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.fbt-product-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.fbt-product-item.this-product { border: 2px solid var(--black); }

.fbt-checkbox-wrap {
  position: relative;
  cursor: pointer;
}
.fbt-checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.fbt-checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.fbt-checkbox-wrap input:checked ~ .fbt-checkmark {
  background: var(--black);
  border-color: var(--black);
}
.fbt-checkmark svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.fbt-checkbox-wrap input:checked ~ .fbt-checkmark svg {
  opacity: 1;
  transform: scale(1);
}

.fbt-product-image {
  width: 70px;
  height: 85px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.fbt-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbt-product-details { flex: 1; min-width: 0; }
.fbt-this-item {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 4px;
}
.fbt-product-details h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fbt-product-options { margin-bottom: 6px; }
.fbt-size-select {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  color: var(--gray-800);
  cursor: pointer;
}
.fbt-product-price {
  font-weight: 700;
  font-size: 14px;
}

.fbt-plus-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* FBT Summary */
.fbt-summary {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
}
.fbt-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.fbt-total-label {
  font-size: 14px;
  color: var(--gray-600);
}
.fbt-total-prices { text-align: right; }
.fbt-total-original {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
  display: block;
}
.fbt-total-current {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}
.fbt-savings {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #22C55E;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
}
.fbt-add-all-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 6px;
}
.fbt-add-all-btn:hover { background: var(--primary); }

/* Legacy FBT styles - keep for compatibility */
.fbt-product-img-legacy {
  width: 80px;
  height: 100px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-500);
}
.fbt-product-info h5 { font-size: 13px; margin-bottom: 4px; }
.fbt-product-info p { font-size: 14px; font-weight: 700; }
.fbt-plus { font-size: 24px; color: var(--gray-400); }

.fbt-total { text-align: center; }
.fbt-total p { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.fbt-total .price { font-size: 24px; font-weight: 700; margin-bottom: 16px; }

/* Reviews Section (Enhanced) */
.reviews-section { 
  padding: 70px 0;
  background: var(--white);
}
.reviews-container { max-width: 1000px; margin: 0 auto; }

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #FAFAFA 100%);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.reviews-overview {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.reviews-score-big { 
  text-align: center;
  padding: 20px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.reviews-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-stars-row { 
  display: flex; 
  gap: 4px; 
  justify-content: center; 
  margin-bottom: 10px; 
}
.reviews-count-text { 
  font-size: 13px; 
  color: var(--gray-500);
  font-weight: 500;
}

.reviews-bars-section { 
  min-width: 220px;
  padding: 16px 0;
}
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.reviews-bar-row:hover {
  background: rgba(0,0,0,0.03);
}
.reviews-bar-label {
  font-size: 14px;
  font-weight: 700;
  min-width: 14px;
  color: var(--gray-700);
}
.reviews-bar-track {
  flex: 1;
  height: 10px;
  background: var(--gray-200);
  border-radius: 5px;
  overflow: hidden;
}
.reviews-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFB800, #FF9500);
  border-radius: 5px;
  transition: width 0.5s ease;
}
.reviews-bar-count {
  font-size: 13px;
  color: var(--gray-500);
  min-width: 32px;
  text-align: right;
  font-weight: 500;
}

.reviews-write-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.reviews-write-btn:hover { 
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 62, 62, 0.3);
}

/* Review Topics (FujiSports style filter tags) */
.reviews-topics {
  margin-bottom: 30px;
}
.reviews-topics-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.reviews-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-topic-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
}
.review-topic-btn svg { color: var(--gray-500); flex-shrink: 0; }
.review-topic-btn:hover { border-color: var(--black); }
.review-topic-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.review-topic-btn.active svg { color: var(--white); }
.topic-count {
  background: var(--gray-200);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.review-topic-btn.active .topic-count {
  background: rgba(255,255,255,0.2);
}

/* Review Cards */
.reviews-list { 
  display: flex; 
  flex-direction: column; 
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.review-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(to right, var(--gray-50), transparent);
}
.review-user { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #FF6B6B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.review-user-info { }
.review-author {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.review-meta-row { display: flex; align-items: center; gap: 12px; }
.review-stars-small { display: flex; gap: 2px; }
.review-date { 
  font-size: 12px; 
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-date::before {
  content: '•';
  color: var(--gray-300);
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #16A34A;
  background: #DCFCE7;
  padding: 6px 12px;
  border-radius: 20px;
}
.review-verified-badge svg {
  color: #16A34A;
}

.review-card-body { padding: 20px 24px; }
.review-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}
.review-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.review-tag {
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--gray-100);
}
.review-helpful-text { font-size: 13px; color: var(--gray-500); }
.review-helpful-actions { display: flex; gap: 8px; }
.review-helpful-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.review-helpful-btn:hover { border-color: var(--black); color: var(--black); }
.review-helpful-btn span { font-weight: 600; color: var(--gray-800); }

.reviews-load-more { text-align: center; margin-top: 30px; }
.reviews-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  border: 2px solid var(--black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}
.reviews-load-btn:hover { background: var(--black); color: var(--white); }
.reviews-load-btn svg { transition: var(--transition); }

/* Review Form */
.review-form-wrapper {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.review-form-wrapper h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.review-form-wrapper .comment-form {
  display: grid;
  gap: 20px;
}
.review-form-wrapper .comment-form-comment,
.review-form-wrapper .comment-form-author,
.review-form-wrapper .comment-form-email {
  margin: 0;
}
.review-form-wrapper label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.review-form-wrapper .required {
  color: var(--primary);
}
.review-form-wrapper input[type="text"],
.review-form-wrapper input[type="email"],
.review-form-wrapper textarea,
.review-form-wrapper select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
}
.review-form-wrapper input:focus,
.review-form-wrapper textarea:focus,
.review-form-wrapper select:focus {
  outline: none;
  border-color: var(--black);
}
.review-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}
.review-form-rating {
  margin-bottom: 20px;
}
.review-form-rating select {
  max-width: 200px;
}
.review-form-wrapper .form-submit {
  margin-top: 10px;
}
.review-form-wrapper .form-submit input[type="submit"],
.review-form-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--black);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.review-form-wrapper .form-submit input[type="submit"]:hover,
.review-form-wrapper .btn-primary:hover {
  background: var(--gray-800);
}
.woocommerce-verification-required {
  padding: 20px;
  background: var(--gray-100);
  border-radius: 8px;
  text-align: center;
  color: var(--gray-600);
}

/* Review Login/Purchase Required States */
.review-login-required,
.review-purchase-required {
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 2px dashed var(--gray-200);
}
.review-login-icon {
  color: var(--gray-400);
  margin-bottom: 16px;
}
.review-login-icon svg {
  display: inline-block;
}
.review-login-required h4,
.review-purchase-required h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.review-login-required p,
.review-purchase-required p {
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.review-login-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-login-buttons .btn,
.review-purchase-required .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.review-login-buttons .btn-primary,
.review-purchase-required .btn-primary {
  background: var(--black);
  color: var(--white);
}
.review-login-buttons .btn-primary:hover,
.review-purchase-required .btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.review-login-buttons .btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200);
}
.review-login-buttons .btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

/* Logged in as notice */
.logged-in-as {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}
.logged-in-as strong {
  color: var(--black);
}
.logged-in-as a {
  color: var(--gray-500);
  text-decoration: none;
  margin-left: 8px;
}
.logged-in-as a:hover {
  color: var(--primary);
}

/* ===== IMPROVED REVIEW FORM ===== */

/* Logged in user form wrapper */
.review-form-logged-in {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
}

/* Logged in as header with avatar */
.review-form-logged-in .logged-in-as {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.logged-in-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FF6B6B);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.logged-in-as strong {
  color: var(--black);
}
.logged-in-as a {
  color: var(--gray-500);
  text-decoration: none;
  margin-left: auto;
  font-size: 13px;
}
.logged-in-as a:hover {
  color: var(--primary);
}

/* Star Rating Selector */
.review-form-rating {
  margin-bottom: 24px;
}
.review-form-rating > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.review-form-rating .required {
  color: var(--primary);
}

.star-rating-selector {
  display: flex;
  align-items: center;
  gap: 4px;
}
.star-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.star-btn:hover {
  transform: scale(1.15);
}
.star-btn:focus {
  outline: none;
}
.star-icon {
  fill: var(--gray-300);
  stroke: none;
  transition: fill 0.15s ease;
}
.star-btn:hover .star-icon,
.star-btn.hovered .star-icon {
  fill: #FFD700;
}
.star-btn.active .star-icon {
  fill: #FFB800;
}
.rating-text {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  min-width: 80px;
}
.star-rating-selector[data-rating="5"] .rating-text::after { content: "Excellent!"; color: #16A34A; }
.star-rating-selector[data-rating="4"] .rating-text::after { content: "Good"; color: #22C55E; }
.star-rating-selector[data-rating="3"] .rating-text::after { content: "Average"; color: #EAB308; }
.star-rating-selector[data-rating="2"] .rating-text::after { content: "Poor"; color: #F97316; }
.star-rating-selector[data-rating="1"] .rating-text::after { content: "Terrible"; color: #EF4444; }

/* Review form fields */
.review-form-field {
  margin-bottom: 20px;
}
.review-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.review-form-field .optional {
  font-weight: 400;
  color: var(--gray-500);
}
.review-form-field .required {
  color: var(--primary);
}
.review-form-field input[type="text"],
.review-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: all 0.2s ease;
}
.review-form-field input[type="text"]:focus,
.review-form-field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.review-form-field input::placeholder,
.review-form-field textarea::placeholder {
  color: var(--gray-400);
}
.review-form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.field-hint {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* Submit section */
.review-form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.btn-submit-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-submit-review:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}
.btn-submit-review svg {
  flex-shrink: 0;
}
.review-form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}
.review-form-note svg {
  flex-shrink: 0;
  color: var(--gray-400);
}

/* Review Form - Hide WooCommerce default */
/* Hide ALL WooCommerce default star rating elements */
.comment-form p.stars,
.comment-form .stars,
p.stars,
.stars,
#respond p.stars,
.review-form-wrapper p.stars,
.comment-respond p.stars,
.woocommerce p.stars,
.woocommerce-Reviews p.stars {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .review-login-required,
  .review-purchase-required {
    padding: 32px 20px;
  }
  .review-login-icon svg {
    width: 40px;
    height: 40px;
  }
  .review-login-required h4,
  .review-purchase-required h4 {
    font-size: 1.1rem;
  }
  .review-login-buttons {
    flex-direction: column;
  }
  .review-login-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .review-form-logged-in {
    padding: 24px 20px;
  }
  .review-form-logged-in .logged-in-as {
    flex-wrap: wrap;
    gap: 10px;
  }
  .logged-in-as a {
    width: 100%;
    margin-left: 52px;
    margin-top: -4px;
  }
  .star-btn {
    padding: 2px;
  }
  .star-icon {
    width: 24px;
    height: 24px;
  }
  .rating-text {
    display: none;
  }
  .review-form-submit {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-submit-review {
    width: 100%;
    justify-content: center;
  }
  .review-form-note {
    justify-content: center;
    text-align: center;
  }
}

/* PDP Section Headers */
.pdp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.pdp-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.pdp-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.pdp-view-all:hover { color: var(--primary); }

/* PDP Related Products Carousel */
.pdp-related-section { padding: 60px 0; background: var(--gray-100); }
.pdp-carousel { position: relative; }
.pdp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  z-index: 2;
  transition: var(--transition);
}
.pdp-carousel-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.pdp-carousel-btn.prev { left: -22px; }
.pdp-carousel-btn.next { right: -22px; }

.pdp-carousel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  overflow: hidden;
}
.pdp-carousel-track .product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

/* PDP FAQ Section */
.pdp-faq-section { padding: 60px 0; background: var(--white); }
.pdp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.pdp-faq-category {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.pdp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pdp-faq-item {
  background: var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
}
.pdp-faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pdp-faq-question span { flex: 1; color: var(--gray-900); }
.pdp-faq-icon { 
  transition: transform 0.3s ease;
  color: var(--gray-500);
}
.pdp-faq-item.active .pdp-faq-icon { transform: rotate(45deg); }
.pdp-faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  display: none;
}
.pdp-faq-item.active .pdp-faq-answer { display: block; }

/* PDP Recently Viewed */
.pdp-recently-viewed { 
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
}
.pdp-recently-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.pdp-recently-item {
  background: var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.pdp-recently-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.pdp-recently-image {
  display: block;
  aspect-ratio: 1;
  background: var(--gray-200);
}
.pdp-recently-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-recently-info {
  padding: 12px;
}
.pdp-recently-info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdp-recently-info h4 a { color: var(--gray-900); }
.pdp-recently-info h4 a:hover { color: var(--primary); }
.pdp-recently-price {
  font-size: 14px;
  font-weight: 700;
}

/* Legacy Reviews & FAQ styles - keep for compatibility */
.reviews-section-legacy { padding: 60px 0; border-top: 1px solid var(--gray-200); }

/* FAQ Section - Legacy */
.faq-section { padding: 60px 0; background: var(--gray-100); }
.faq-section h2 { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after { content: '+'; font-size: 24px; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* Recently Viewed - Legacy */
.recently-viewed { padding: 60px 0; border-top: 1px solid var(--gray-200); }

/* ===== BLOG PAGE - IMPROVED ===== */

/* Blog Hero Header */
.blog-hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220,20,60,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220,20,60,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.blog-hero-content { position: relative; z-index: 1; }
.blog-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(220,20,60,0.3);
}
.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin: 0 auto 16px;
}
.blog-hero p {
  color: var(--gray-400);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.blog-categories-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-cat-pill {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
  border-radius: 30px;
  transition: all 0.2s ease;
}
.blog-cat-pill:hover { border-color: var(--white); color: var(--white); }
.blog-cat-pill.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding: 60px 0 80px;
}

/* Section Title */
.blog-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-section-title h2 { font-size: 1.25rem; white-space: nowrap; }
.blog-section-line { flex: 1; height: 1px; background: var(--gray-200); }

/* Featured Card */
.blog-featured { margin-bottom: 50px; }
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.blog-featured-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.blog-featured-img {
  position: relative;
  background: var(--gray-200);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  text-transform: uppercase;
}
.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}
.blog-featured-content h2 { 
  font-size: 1.6rem; 
  margin-bottom: 16px; 
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-featured-content h2 a:hover { color: var(--primary); }
.blog-excerpt { color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; font-size: 15px; }
.blog-featured-content .blog-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  max-height: 5.1em;
}
.blog-featured-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 14px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-author-avatar {
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.blog-read-more:hover { color: var(--primary); }
.blog-read-more svg { transition: transform 0.2s; }
.blog-read-more:hover svg { transform: translateX(4px); }

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-img {
  position: relative;
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  overflow: hidden;
}
.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  text-transform: uppercase;
}
.blog-card-content { padding: 24px; }
.blog-card h3 { 
  font-size: 1.05rem; 
  margin-bottom: 10px; 
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .blog-excerpt { 
  font-size: 14px; 
  margin-bottom: 16px; 
  color: var(--gray-600); 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden;
  word-break: break-word;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.blog-date { font-weight: 500; }
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.blog-pagination-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
}
.blog-pagination-btn:hover { border-color: var(--black); color: var(--black); }
.blog-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 12px;
}
.blog-pagination-numbers a, .blog-pagination-numbers span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--gray-600);
}
.blog-pagination-numbers a:hover { background: var(--gray-100); }
.blog-pagination-numbers a.active { background: var(--black); color: var(--white); }

/* Blog Sidebar - Improved */
.blog-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}
.sidebar-widget h4 svg { color: var(--primary); }

/* Sidebar Search */
.sidebar-search { padding: 16px; }
.sidebar-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}
.sidebar-search-input svg { color: var(--gray-400); flex-shrink: 0; }
.sidebar-search-input input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--gray-900);
}
.sidebar-search-input input::placeholder { color: var(--gray-400); }
.sidebar-search-input input:focus { outline: none; }

/* Sidebar Search Wrapper & Results */
.sidebar-search-wrapper { position: relative; }
.sidebar-search-spinner {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}
.sidebar-search-spinner svg { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sidebar-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.sidebar-search-results:empty { display: none !important; }

.search-result-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover, .search-result-item.active { background: var(--gray-50); }

.search-result-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: var(--gray-100);
  overflow: hidden;
  flex-shrink: 0;
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }

.search-result-content { flex: 1; min-width: 0; }
.search-result-category {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-meta {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
}

.search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}
.search-no-results svg { margin-bottom: 8px; opacity: 0.5; }

.search-view-all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  background: var(--gray-50);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border-top: 1px solid var(--gray-200);
  border-radius: 0 0 8px 8px;
}
.search-view-all:hover { background: var(--gray-100); }

/* Sidebar Popular Posts */
.sidebar-popular-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.sidebar-popular-item:last-child { border-bottom: none; }
.sidebar-popular-item:hover { padding-left: 4px; }
.sidebar-popular-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  min-width: 32px;
}
.sidebar-popular-item:hover .sidebar-popular-num { color: var(--primary); }
.sidebar-popular-content { flex: 1; }
.sidebar-popular-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  margin-bottom: 4px;
}
.sidebar-popular-meta { font-size: 12px; color: var(--gray-500); }

/* Sidebar Tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tags a {
  padding: 7px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.sidebar-tags a:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* Sidebar Newsletter */
.sidebar-newsletter {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  border: none;
  color: var(--white);
  text-align: center;
}
.sidebar-newsletter-icon {
  width: 60px;
  height: 60px;
  background: rgba(220,20,60,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sidebar-newsletter-icon svg { color: var(--primary); }
.sidebar-newsletter h4 {
  font-size: 1.1rem;
  border: none;
  justify-content: center;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.sidebar-newsletter p {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.sidebar-newsletter-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 10px;
}
.sidebar-newsletter-form input::placeholder { color: var(--gray-500); }
.sidebar-newsletter-form input:focus { outline: none; border-color: var(--primary); }
.sidebar-newsletter-form button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar-newsletter-form button:hover { background: var(--primary-dark); }

/* Sidebar Social */
.sidebar-social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sidebar-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--gray-50);
  border-radius: 8px;
  transition: all 0.2s;
}
.sidebar-social-link svg { color: var(--gray-600); }
.sidebar-social-link span { font-size: 11px; font-weight: 600; color: var(--gray-600); }
.sidebar-social-link:hover { background: var(--black); }
.sidebar-social-link:hover svg, .sidebar-social-link:hover span { color: var(--white); }

/* ===== BLOG POST PAGE ===== */

/* Reading Progress */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Blog Post Header */
.blog-post-header {
  padding: 120px 0 50px;
  text-align: center;
}
.blog-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.blog-breadcrumb a { color: var(--gray-600); }
.blog-breadcrumb a:hover { color: var(--primary); }
.blog-breadcrumb svg { color: var(--gray-400); }
.blog-post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--primary);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.2;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.blog-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-post-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.blog-post-author-info { text-align: left; }
.blog-post-author-name { display: block; font-weight: 600; color: var(--gray-900); }
.blog-post-author-title { font-size: 13px; color: var(--gray-500); }
.blog-post-details {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-500);
}
.blog-post-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Blog Post Hero Image */
.blog-post-hero-img { padding-bottom: 50px; }
.blog-post-img {
  max-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.blog-post-img img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}
.blog-post-img:empty {
  height: 480px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* Blog Content */
.blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.blog-content h2 { margin: 50px 0 20px; font-size: 1.6rem; }
.blog-content h3 { margin: 40px 0 16px; font-size: 1.25rem; }
.blog-content p { 
  margin-bottom: 24px; 
  line-height: 1.9; 
  color: var(--gray-700); 
  font-size: 1.05rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.blog-content ul, .blog-content ol { margin: 24px 0; padding-left: 28px; }
.blog-content li { margin-bottom: 12px; line-height: 1.8; color: var(--gray-700); }
.blog-content ul li { list-style: disc; }
.blog-content ol li { list-style: decimal; }
.blog-content blockquote {
  margin: 40px 0;
  padding: 30px 40px;
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-700);
}
.blog-content img { margin: 40px 0; border-radius: 12px; }

/* Blog Post Tags */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 40px;
}
.blog-post-tags-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.blog-post-tags a {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray-700);
  transition: all 0.2s;
}
.blog-post-tags a:hover { background: var(--black); color: var(--white); }

/* Blog Post Share */
.blog-post-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
}
.blog-post-share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.blog-post-share-buttons {
  display: flex;
  gap: 10px;
}
.blog-share-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-share-btn:hover { border-color: var(--gray-300); color: var(--gray-800); }
.blog-share-btn.facebook:hover { background: #1877f2; border-color: #1877f2; color: var(--white); }
.blog-share-btn.twitter:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.blog-share-btn.linkedin:hover { background: #0077b5; border-color: #0077b5; color: var(--white); }
.blog-share-btn.email:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Author Bio Box */
.blog-author-box {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-top: 40px;
}
.blog-author-box-avatar {
  width: 72px;
  height: 72px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.blog-author-box-content { flex: 1; }
.blog-author-box-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.blog-author-box-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.blog-author-box-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}
.blog-author-box-social {
  display: flex;
  gap: 12px;
}
.blog-author-box-social a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.blog-author-box-social a:hover { color: var(--primary); }

/* Related Posts - Improved */
.blog-related {
  padding: 70px 0;
  background: var(--gray-50);
}
.blog-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.blog-related-header h2 { font-size: 1.5rem; }
.blog-related-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.blog-related-all:hover { color: var(--primary); }
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Newsletter CTA */
.blog-newsletter-cta {
  padding: 60px 0;
  background: var(--black);
}
.blog-newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.blog-newsletter-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.blog-newsletter-content p {
  color: var(--gray-400);
  font-size: 15px;
}
.blog-newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.blog-newsletter-form input {
  width: 280px;
  padding: 14px 18px;
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
}
.blog-newsletter-form input::placeholder { color: var(--gray-500); }
.blog-newsletter-form input:focus { outline: none; border-color: var(--primary); }
.blog-newsletter-form button {
  padding: 14px 28px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.blog-newsletter-form button:hover { background: var(--primary-dark); }

/* ===== CONTACT PAGE - IMPROVED ===== */

/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(220,20,60,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(220,20,60,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.contact-hero-content { position: relative; z-index: 1; }
.contact-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(220,20,60,0.3);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto 16px;
}
.contact-hero p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Quick Contact Cards */
.contact-quick {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-quick-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.contact-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.contact-quick-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.contact-quick-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-quick-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.contact-quick-info {
  font-size: 12px;
  color: var(--gray-500);
}
.contact-quick-card-location {
  cursor: default;
}

/* Contact Main Layout */
.contact-main { padding: 0 0 80px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-header {
  margin-bottom: 30px;
}
.contact-form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-header p {
  color: var(--gray-600);
  font-size: 15px;
}
.form-group { margin-bottom: 0; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}
.form-row label .required { color: var(--primary); }
.form-row input, .form-row textarea, .form-row select, .contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--gray-900);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--gray-400); }
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
}
.form-note {
  font-size: 13px;
  color: var(--gray-500);
}

/* Contact Form 7 Styles */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form .form-row-half,
.wpcf7 .form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.wpcf7-form label .required { color: var(--primary); }
.wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  color: var(--gray-900) !important;
}
.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220,20,60,0.1);
}
.wpcf7-form-control::placeholder { color: var(--gray-400); }
.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}
.wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wpcf7-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: var(--primary);
  font-size: 13px;
  margin-top: 6px;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: var(--primary);
  background: rgba(220,20,60,0.05);
  color: var(--primary);
}
.wpcf7-form.sent .wpcf7-response-output {
  border-color: #10B981;
  background: rgba(16,185,129,0.05);
  color: #10B981;
}
.wpcf7 .form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.wpcf7 .form-note {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 768px) {
  .wpcf7-form .form-row-half,
  .wpcf7 .form-row-half {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wpcf7 .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wpcf7-submit {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
}
.contact-sidebar-card h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-sidebar-card h3 svg { color: var(--primary); }

/* Working Hours */
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row span:first-child { color: var(--gray-600); }
.contact-hours-row span:last-child { font-weight: 600; }
.contact-hours-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* Email Departments */
.contact-emails { display: flex; flex-direction: column; gap: 12px; }
.contact-email-item {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: 8px;
  transition: background 0.2s;
}
.contact-email-item:hover { background: var(--gray-100); }
.contact-email-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact-email-address {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

/* Social Card */
.contact-social-card p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.contact-social-links {
  display: flex;
  gap: 12px;
}
.contact-social-link {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
}
.contact-social-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* Map Section */
.contact-map-section {
  padding: 60px 0;
  background: var(--gray-50);
}
.contact-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-map-info {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-map-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.contact-map-info p {
  color: var(--gray-400);
  margin-bottom: 20px;
  font-size: 15px;
}
.contact-map-info address {
  font-style: normal;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-map-info address strong {
  color: var(--white);
}
.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s;
}
.contact-map-btn:hover { background: var(--primary-dark); }
.contact-map {
  background: var(--gray-200);
  min-height: 350px;
}
.contact-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
}

/* Contact FAQ */
.contact-faq {
  padding: 80px 0;
}
.contact-faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-faq-header h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.contact-faq-header p {
  color: var(--gray-600);
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.contact-faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.contact-faq-item.active { border-color: var(--primary); }
.contact-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--gray-800);
  cursor: pointer;
}
.contact-faq-question svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s;
}
.contact-faq-item.active .contact-faq-question svg { transform: rotate(180deg); color: var(--primary); }
.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.contact-faq-item.active .contact-faq-answer { max-height: 200px; }
.contact-faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--white);
}

.legal-header {
  padding: 140px 0 50px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.legal-header .container {
  position: relative;
  z-index: 1;
}
.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.legal-header p { 
  color: var(--gray-400); 
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.legal-header p::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-content {
  padding: 60px 0 100px;
}
.legal-content .container {
  max-width: 1200px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar Navigation */
.legal-nav {
  position: sticky;
  top: 100px;
  background: var(--gray-50);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}
.legal-nav h4 { 
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.legal-nav ul { 
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-nav li {
  margin-bottom: 4px;
}
.legal-nav a { 
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.legal-nav a:hover { 
  color: var(--black);
  background: var(--white);
}
.legal-nav a.active {
  color: var(--primary);
  background: var(--white);
  font-weight: 600;
}

/* Main Content */
.legal-main {
  max-width: 780px;
}
.legal-main > p:first-of-type {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.legal-main h2 { 
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 50px 0 20px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}
.legal-main h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-main h3 { 
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 30px 0 14px;
}
.legal-main p { 
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--gray-600);
  font-size: 15px;
}
.legal-main ul { 
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}
.legal-main li { 
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.75;
  color: var(--gray-600);
  font-size: 15px;
}
.legal-main li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.legal-main a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.legal-main a:hover {
  text-decoration: underline;
}
.legal-main strong {
  color: var(--gray-800);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .legal-nav {
    position: static;
    padding: 20px;
  }
  .legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .legal-nav li {
    margin: 0;
  }
  .legal-nav a {
    padding: 8px 14px;
    font-size: 13px;
    background: var(--white);
    border: 1px solid var(--gray-200);
  }
}

@media (max-width: 768px) {
  .legal-header {
    padding: 120px 0 40px;
  }
  .legal-header h1 {
    font-size: 2rem;
  }
  .legal-content {
    padding: 40px 0 60px;
  }
  .legal-main h2 {
    font-size: 1.3rem;
    margin: 40px 0 16px;
    padding-top: 20px;
  }
  .legal-main h3 {
    font-size: 1rem;
  }
  .legal-main p,
  .legal-main li {
    font-size: 14px;
  }
}

/* ===== ZOOM MODAL ===== */
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.zoom-modal.active { opacity: 1; visibility: visible; }
.zoom-modal-content {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.zoom-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.zoom-prev, .zoom-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: var(--transition);
}
.zoom-prev:hover, .zoom-next:hover {
  background: rgba(255,255,255,0.2);
}
.zoom-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* ===== SIZE CHART MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2600;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal.active { opacity: 1; visibility: visible; }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 18px; }
.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-600);
}
.modal-body { padding: 24px; }
.size-chart-table {
  width: 100%;
  border-collapse: collapse;
}
.size-chart-table th, .size-chart-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
  font-size: 14px;
}
.size-chart-table th { background: var(--gray-100); font-weight: 600; }

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }

/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
}
.mobile-nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.mobile-nav-logo span { color: var(--primary); }
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-700);
  transition: all 0.2s ease;
}
.mobile-nav-close:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile Nav Body */
.mobile-nav-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: var(--gray-500);
}
.mobile-nav-item.open .mobile-nav-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-submenu {
  display: none;
  padding: 0 0 16px 0;
  background: var(--gray-50);
  margin: 0 -24px;
  padding-left: 40px;
  padding-right: 24px;
}
.mobile-nav-item.open .mobile-submenu {
  display: block;
  animation: mobileSlideDown 0.3s ease;
}
@keyframes mobileSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-submenu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}
.mobile-submenu a:last-child { border-bottom: none; }
.mobile-submenu a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.mobile-submenu-all {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Mobile Nav Actions */
.mobile-nav-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mobile-nav-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-100);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  transition: all 0.2s ease;
}
.mobile-nav-action svg {
  color: var(--primary);
  flex-shrink: 0;
}
.mobile-nav-action:hover {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav-action:hover svg {
  color: var(--white);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
  padding: 24px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  text-align: center;
  flex-shrink: 0;
}
.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.mobile-nav-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.2s ease;
}
.mobile-nav-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.mobile-nav-copyright {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .mega-menu-inner { grid-template-columns: repeat(3, 1fr) 220px; gap: 30px; padding: 0 30px; }
  .mega-menu-featured .placeholder-img { min-height: 220px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .catalog-layout { grid-template-columns: 280px 1fr; gap: 30px; }
  .catalog-promo { grid-column: span 4; }
  .catalog-promo-img { flex: 0 0 40%; }
  .catalog-promo h3 { font-size: 26px; }
  .catalog-promo-content { padding: 35px; }
}

@media (max-width: 992px) {
  /* Header Mobile */
  .header-inner { padding: 0 20px; }
  .main-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .mobile-nav { display: flex; }
  
  .header-actions .lang-selector { display: none !important; }
  .header-actions .header-action:nth-child(3) { display: none !important; }
  
  /* Hero */
  .hero { min-height: 600px; height: auto; padding: 140px 0 100px; }
  .hero-title-main { font-size: 3.5rem; }
  .hero-title-line { font-size: 1.2rem; }
  .hero-text { font-size: 16px; }
  .hero-decorative { display: none; }
  .hero-badge { display: none; }
  .hero-bg-glow-1 { width: 400px; height: 400px; }
  .hero-bg-glow-2 { width: 250px; height: 250px; }
  .hero-features { gap: 24px; }
  
  /* Category Grid */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .category-card { 
    grid-column: span 1 !important; 
    grid-row: span 1 !important; 
    height: 200px; 
  }
  
  /* Catalog Header Mobile */
  .catalog-header { padding: 120px 0 50px; }
  .catalog-header h1 { font-size: 2.5rem; }
  .catalog-header p { font-size: 16px; }
  .catalog-header-label { font-size: 16px; margin-bottom: 10px; }
  .catalog-header-stats { gap: 30px; margin-top: 24px; }
  .catalog-header-stat strong { font-size: 1.75rem; }
  .catalog-header-stat span { font-size: 11px; }
  
  /* Products */
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .catalog-promo { 
    grid-column: span 3; 
    flex-direction: column;
    min-height: auto;
  }
  .catalog-promo-img { flex: none; width: 100%; height: 200px; }
  .catalog-promo-content { padding: 30px; text-align: center; }
  .catalog-promo h3 { font-size: 24px; }
  .catalog-promo p { margin-left: auto; margin-right: auto; }
  .catalog-layout { grid-template-columns: 1fr; gap: 0; }
  .catalog-section { padding: 30px 16px 60px; }
  
  /* Filters Sidebar Mobile */
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
  }
  .filters-sidebar.active { transform: translateX(0); }
  .filter-close { display: flex; }
  .filter-overlay { 
    display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1050;
    backdrop-filter: blur(2px);
  }
  .filter-overlay.active {
    display: block;
  }
  .filters-footer { position: sticky; bottom: 0; }
  
  /* Catalog Top Bar Mobile */
  .catalog-top-bar { 
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
  }
  .catalog-top-left { 
    width: 100%; 
    justify-content: space-between; 
  }
  .catalog-top-right { 
    width: 100%; 
    justify-content: flex-end; 
  }
  .filter-toggle { display: flex; }
  .view-toggle { display: none; }
  
  /* Active Filters Mobile */
  .active-filters-bar { 
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .active-filters { width: 100%; }
  .clear-filters { margin-left: 0; }
  
  .product-carousel .carousel { gap: 16px; }
  .product-carousel .product-card { min-width: 220px; }
  
  /* Trending Section Mobile */
  .trending-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 16px; 
  }
  .trending-tabs { 
    width: 100%; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trending-tabs::-webkit-scrollbar { display: none; }
  .trending-tab { 
    white-space: nowrap; 
    padding: 10px 16px; 
    font-size: 13px; 
  }
  .trending-content { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .trending-featured { 
    height: 300px; 
  }
  .trending-products-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
  }
  
  /* Catalog Layout */
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { 
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 20px;
    overflow-y: auto;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .filters-sidebar.active { left: 0; }
  .filter-toggle { display: flex; }
  
  /* PDP */
  .pdp-main { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
  .pdp-thumbnails { overflow-x: auto; padding-bottom: 10px; }
  
  /* Featured Product */
  .featured-product-inner { grid-template-columns: 1fr; }
  .featured-product-image { min-height: 350px; order: -1; }
  .featured-product-content { padding: 50px 30px; text-align: center; align-items: center; }
  .featured-product-content h2 { font-size: 2.5rem; }
  .featured-product-content p { max-width: 100%; }
  .featured-bg-text { font-size: 8rem; right: auto; left: 50%; transform: translate(-50%, -50%); }
  .featured-label { margin-left: auto; margin-right: auto; }
  .featured-decorative { margin-left: auto; margin-right: auto; }
  .hotspot { width: 38px; height: 38px; }
  .hotspot svg { width: 14px; height: 14px; }
  
  /* Custom Section */
  .custom-section-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .custom-section-content { order: 1; }
  .custom-section-content h2 { font-size: 2.2rem; }
  .custom-section-content p { margin-left: auto; margin-right: auto; }
  .custom-features { display: inline-block; text-align: left; }
  .custom-section-visual { order: 2; }
  .custom-card-inner { height: 350px; }
  .custom-decorative { bottom: -25px; right: auto; left: 50%; transform: translateX(-50%) rotate(-5deg); }
  
  /* Trust */
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-item { padding: 30px 20px; }
  
  /* Blog */
  .blog-hero { padding: 100px 0 40px; }
  .blog-hero h1 { font-size: 1.75rem; }
  .blog-categories-nav { gap: 8px; }
  .blog-cat-pill { padding: 6px 14px; font-size: 12px; }
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 220px; }
  .blog-featured-content { padding: 24px 20px; }
  .blog-featured-content h2 { font-size: 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-img { height: 180px; }
  .sidebar-social { grid-template-columns: repeat(2, 1fr); }
  
  /* Blog Post */
  .blog-post-header { padding: 100px 0 30px; }
  .blog-post-header h1 { font-size: 1.5rem; }
  .blog-post-img { height: 280px; border-radius: 10px; }
  .blog-content { padding: 0 16px 50px; }
  .blog-content p { font-size: 1rem; }
  .blog-content h2 { font-size: 1.35rem; margin-top: 40px; }
  .blog-content h3 { font-size: 1.1rem; }
  .blog-content blockquote { padding: 20px 24px; font-size: 1rem; }
  .blog-post-share { flex-direction: column; gap: 16px; text-align: center; }
  .blog-author-box { flex-direction: column; text-align: center; }
  .blog-author-box-avatar { margin: 0 auto; }
  .blog-author-box-social { justify-content: center; }
  .blog-related { padding: 50px 0; }
  .blog-related-header { flex-direction: column; gap: 16px; text-align: center; }
  .blog-related-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-newsletter-cta { padding: 40px 0; }
  .blog-newsletter-inner { flex-direction: column; text-align: center; }
  .blog-newsletter-form { flex-direction: column; width: 100%; }
  .blog-newsletter-form input { width: 100%; }
  
  /* Contact */
  .contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 30px; }
  .contact-map-wrapper { grid-template-columns: 1fr; }
  .contact-map-info { padding: 30px; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-newsletter-inner { flex-direction: column; text-align: center; gap: 30px; }
  .footer-newsletter-content { max-width: 100%; }
  .newsletter-form { max-width: 100%; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; text-align: center; padding-bottom: 30px; border-bottom: 1px solid var(--gray-800); }
  .footer-brand .footer-social { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 768px) {
  /* Announcement */
  .announcement-bar { font-size: 11px; line-height: 1.4; }
  .announcement-container { padding: 8px 40px; gap: 10px; }
  .announcement-slider { min-width: 0; flex: 1; min-height: auto; }
  .announcement-slide { 
    gap: 6px; 
    font-size: 11px; 
  }
  .announcement-nav { display: none; }
  .announcement-close { right: 8px; padding: 4px; }
  .announcement-link { padding-left: 8px; }
  
  /* Header */
  .header-inner { height: 60px; }
  .logo { font-size: 22px; }
  .header-action svg { width: 20px; height: 20px; }
  .cart-count,
  .wishlist-count { width: 16px; height: 16px; font-size: 9px; top: -6px; right: -6px; }
  
  /* Section Spacing */
  .section { padding: 50px 0; }
  .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  
  /* Carousel */
  .carousel { gap: 16px; }
  .collection-card { width: 260px; }
  .collection-card .placeholder-img { height: 320px; }
  .collection-card-content { padding: 20px; }
  .collection-card h3 { font-size: 18px; }
  
  /* Product Cards */
  .product-card-info { padding: 12px 10px; }
  .product-card-category { font-size: 11px; }
  .product-card-title { font-size: 14px; }
  .product-card-price .current { font-size: 14px; }
  .product-card-price .original { font-size: 12px; }
  .product-card-colors { gap: 4px; margin-top: 6px; }
  .color-swatch { width: 22px; height: 22px; }
  .color-count { font-size: 11px; }
  .badge { padding: 5px 8px; font-size: 10px; }
  .product-card-quick-add { padding: 12px; font-size: 11px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  /* Trending Section */
  .trending-section { padding: 40px 0; }
  .trending-header h2 { font-size: 1.5rem; }
  .trending-featured { height: 280px; }
  .trending-featured-overlay h3 { font-size: 1.5rem; }
  .trending-products-grid { gap: 12px; }
  .trending-pagination { margin-top: 20px; }
  
  /* Marquee */
  .marquee-item { font-size: 18px; padding: 0 40px; }
  
  /* Trust Section */
  .trust-header { margin-bottom: 40px; }
  .trust-header h2 { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-item { padding: 40px 30px; }
  .trust-icon { width: 80px; height: 80px; }
  .trust-icon svg { width: 32px; height: 32px; }
  .trust-decorative { opacity: 1; transform: translateY(0); }
  
  /* FBT (Venum style) */
  .fbt-section { padding: 40px 0; }
  .fbt-wrapper { grid-template-columns: 1fr; gap: 30px; }
  .fbt-products-list { flex-direction: column; }
  .fbt-product-item { max-width: 100%; min-width: auto; }
  .fbt-plus-icon { display: none; }
  .fbt-summary { position: static; }
  
  /* Reviews Section - Mobile */
  .reviews-section { padding: 50px 0; }
  .reviews-header { 
    flex-direction: column; 
    gap: 24px; 
    align-items: stretch;
    padding: 24px;
    border-radius: 16px;
  }
  .reviews-overview { 
    flex-direction: column; 
    gap: 24px; 
  }
  .reviews-score-big { 
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    text-align: left; 
  }
  .reviews-number { font-size: 40px; }
  .reviews-stars-row { justify-content: flex-start; }
  .reviews-count-text { font-size: 12px; }
  .reviews-bars-section { 
    min-width: auto; 
    padding: 0;
  }
  .reviews-bar-row { 
    padding: 2px 4px;
    margin-bottom: 6px;
  }
  .reviews-bar-track { height: 8px; }
  .reviews-write-btn { 
    width: 100%; 
    justify-content: center;
    padding: 14px 24px;
  }
  .reviews-topics-list { gap: 8px; }
  .review-topic-btn { padding: 8px 12px; font-size: 12px; }
  .reviews-list { gap: 16px; }
  .review-card { border-radius: 12px; }
  .review-card-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px; 
    padding: 16px;
    background: var(--gray-50);
  }
  .review-avatar { width: 40px; height: 40px; font-size: 14px; }
  .review-author { font-size: 14px; }
  .review-verified-badge { padding: 4px 10px; font-size: 11px; }
  .review-card-body { padding: 16px; }
  .review-text { font-size: 14px; line-height: 1.7; }
  .review-card-footer { flex-direction: column; gap: 12px; padding: 12px 16px; }
  .review-helpful-actions { width: 100%; justify-content: flex-start; }
  
  /* PDP FAQ */
  .pdp-faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .pdp-faq-question { padding: 14px 16px; font-size: 13px; }
  .pdp-faq-answer { padding: 0 16px 14px; font-size: 13px; }
  
  /* PDP Related Carousel */
  .pdp-related-section { padding: 40px 0; }
  .pdp-carousel-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pdp-carousel-btn { display: none; }
  
  /* PDP Recently Viewed */
  .pdp-recently-viewed { padding: 40px 0; }
  .pdp-recently-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pdp-recently-info { padding: 10px; }
  .pdp-recently-info h4 { font-size: 12px; }
  .pdp-recently-price { font-size: 13px; }
  
  /* FAQ */
  .faq-section { padding: 40px 0; }
  .faq-question { padding: 16px; font-size: 14px; }
  .faq-answer { padding: 0 16px 16px; font-size: 13px; }
  
  /* Drawers */
  .drawer { width: 100%; right: -100%; }
  .drawer-header { padding: 16px; }
  .drawer-body { padding: 16px; }
  .drawer-footer { padding: 16px; }
  
  /* Footer */
  .footer-newsletter-section { padding: 40px 0; }
  .footer-newsletter-content h3 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; border-radius: 0; }
  .newsletter-form input { border-bottom: 1px solid var(--gray-700); }
  .newsletter-form button { width: 100%; justify-content: center; }
  .footer-main { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { text-align: center; padding-bottom: 24px; }
  .footer-col { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col ul { align-items: center; }
  .footer-col a:hover { transform: none; }
  .footer-contact .footer-contact-item { justify-content: center; }
  .footer-legal { justify-content: center; }
  .footer-payments { justify-content: center; }
  .footer-bottom { padding: 20px 0; }
  
  /* Contact */
  .contact-hero { padding: 100px 0 50px; }
  .contact-hero h1 { font-size: 1.75rem; }
  .contact-quick { margin-top: -30px; padding-bottom: 40px; }
  .contact-quick-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-quick-card { padding: 20px; display: flex; align-items: center; gap: 16px; text-align: left; }
  .contact-quick-icon { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }
  .contact-quick-card h3 { margin-bottom: 2px; }
  .contact-main { padding-bottom: 50px; }
  .contact-form-wrapper { padding: 24px 20px; border-radius: 12px; }
  .form-row-half { grid-template-columns: 1fr; gap: 16px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
  .contact-sidebar-card { padding: 20px; }
  .contact-map-section { padding: 40px 0; }
  .contact-map-info { padding: 24px; text-align: center; }
  .contact-map-btn { align-self: center; }
  .contact-map-placeholder { min-height: 250px; }
  .contact-faq { padding: 50px 0; }
  .contact-faq-header h2 { font-size: 1.4rem; }
  .contact-faq-question { padding: 16px 20px; font-size: 14px; }
  .contact-faq-answer p { padding: 0 20px 16px; }
  
  /* Legal - see main legal section for responsive styles */
  
  /* Catalog */
  .catalog-header { padding: 100px 0 40px; }
  .catalog-header h1 { font-size: 2rem; }
  .catalog-header p { font-size: 14px; padding: 0 16px; }
  .catalog-header-label { font-size: 12px; }
  
  /* Breadcrumb - Tablet */
  .catalog-header .woocommerce-breadcrumb { 
    font-size: 12px; 
    margin-bottom: 16px; 
  }
  .catalog-header .woocommerce-breadcrumb .container {
    gap: 6px;
    padding: 0 16px;
  }
  .catalog-header .woocommerce-breadcrumb .breadcrumb-sep svg {
    width: 12px;
    height: 12px;
  }
  .catalog-header-stats { gap: 20px; flex-wrap: wrap; }
  .catalog-header-stat strong { font-size: 1.5rem; }
  .catalog-header-stat span { font-size: 10px; }
  .catalog-section { padding: 24px 12px 50px; }
  .catalog-top-bar { 
    padding: 14px; 
    margin-bottom: 16px;
    border-radius: 8px;
  }
  .catalog-top-left { gap: 12px; }
  .catalog-count { font-size: 13px; }
  .catalog-count strong { font-size: 15px; }
  .filter-toggle { 
    padding: 10px 18px; 
    font-size: 12px;
    border-radius: 6px;
  }
  .filter-toggle .filter-count-badge { font-size: 10px; padding: 2px 6px; }
  .catalog-sort select { 
    padding: 10px 32px 10px 14px; 
    font-size: 13px;
    min-width: 150px;
  }
  .active-filters-bar { 
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  .active-filters { gap: 8px; }
  .filter-badge { 
    padding: 8px 12px; 
    font-size: 12px;
    border-radius: 20px;
  }
  .filter-badge button { width: 16px; height: 16px; }
  .clear-filters { 
    padding: 6px 14px;
    font-size: 12px;
  }
  .catalog-promo { min-height: auto; border-radius: 12px; }
  .catalog-promo-img { height: 180px; }
  .catalog-promo-content { padding: 24px; }
  .catalog-promo h3 { font-size: 20px; margin-bottom: 8px; }
  .catalog-promo p { font-size: 13px; margin-bottom: 16px; }
  .catalog-promo .btn { padding: 10px 20px; font-size: 12px; }
  
  /* PDP - New FujiSports/Gameness style */
  .pdp-section { padding: 16px 0 40px; }
  .pdp-main { grid-template-columns: 1fr; gap: 30px; }
  .pdp-gallery { 
    grid-template-columns: 1fr; 
    position: static;
    order: 1;
  }
  .pdp-thumbnails-vertical {
    flex-direction: row;
    order: 2;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .pdp-thumb { width: 60px; height: 75px; flex-shrink: 0; }
  .pdp-gallery-main { order: 1; }
  .pdp-main-image { aspect-ratio: 1; }
  .pdp-zoom-btn { display: none; }
  .pdp-gallery-nav { bottom: 12px; }
  .pdp-gallery-prev, .pdp-gallery-next { width: 36px; height: 36px; }
  
  .pdp-info { padding: 0; order: 2; }
  .pdp-title { font-size: 1.5rem; }
  .pdp-meta { flex-wrap: wrap; gap: 10px; }
  .pdp-price-current { font-size: 26px; }
  .pdp-price-original { font-size: 16px; }
  .pdp-divider { margin: 20px 0; }
  
  .pdp-size-options { gap: 8px; }
  .pdp-size-btn { min-width: 50px; padding: 10px 14px; font-size: 13px; }
  .pdp-color-options { gap: 8px; }
  .pdp-color-btn { width: 36px; height: 36px; }
  
  .pdp-quantity { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pdp-cart-buttons { flex-direction: column; }
  .pdp-add-to-cart { width: 100%; padding: 14px 24px; }
  .pdp-wishlist-btn { width: 100%; height: 50px; flex: 1; }
  
  .pdp-trust-blocks { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .pdp-trust-item { padding: 12px; background: var(--white); border-radius: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  
  /* Announcement Bar - Hide link on small screens */
  .announcement-bar { font-size: 11px; }
  .announcement-container { padding: 8px 32px 8px 12px; }
  .announcement-link { display: none; }
  .announcement-close { right: 6px; }
  
  /* Hero */
  .hero { min-height: 100svh; padding: 120px 0 120px; }
  .hero-tagline { font-size: 1rem; }
  .hero-subtitle { font-size: 11px; gap: 12px; flex-wrap: wrap; }
  .hero-subtitle-line { width: 30px; }
  .hero-title-main { font-size: 2.5rem; }
  .hero-title-line { font-size: 1rem; }
  .hero-text { font-size: 14px; margin-bottom: 30px; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; margin-bottom: 40px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn-hero { padding: 14px 24px; }
  .hero-features { flex-direction: column; gap: 12px; align-items: center; margin-bottom: 30px; }
  .hero-scroll { bottom: 20px; left: 50%; transform: translateX(-50%); }
  .hero-scroll-line { height: 40px; }
  .btn { padding: 12px 24px; font-size: 13px; }
  
  /* Products */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-images { aspect-ratio: 1/1; }
  .product-card-info { padding: 10px 8px; gap: 4px; }
  .product-card-title { font-size: 13px; }
  .product-card-category { font-size: 10px; }
  .product-card-price .current { font-size: 13px; }
  .product-card-colors { margin-top: 4px; }
  .color-swatch { width: 20px; height: 20px; }
  .product-card-quick-add { padding: 10px; font-size: 10px; }
  
  /* Catalog Mobile */
  .catalog-header { padding: 90px 0 30px; }
  .catalog-header h1 { font-size: 1.5rem; letter-spacing: 0.02em; }
  .catalog-header p { font-size: 12px; padding: 0 10px; line-height: 1.5; }
  .catalog-header-label { 
    font-size: 10px; 
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  
  /* Breadcrumb - Mobile Small */
  .catalog-header .woocommerce-breadcrumb { 
    font-size: 10px; 
    margin-bottom: 12px; 
  }
  .catalog-header .woocommerce-breadcrumb .container {
    gap: 4px;
    padding: 0 10px;
    flex-wrap: wrap;
  }
  .catalog-header .woocommerce-breadcrumb a {
    font-size: 10px;
  }
  .catalog-header .woocommerce-breadcrumb .breadcrumb-sep {
    margin: 0 2px;
  }
  .catalog-header .woocommerce-breadcrumb .breadcrumb-sep svg {
    width: 10px;
    height: 10px;
  }
  
  .catalog-header-stats { 
    gap: 16px; 
    margin-top: 20px;
    justify-content: center;
  }
  .catalog-header-stat strong { font-size: 1.25rem; }
  .catalog-header-stat span { font-size: 9px; letter-spacing: 0.08em; }
  .catalog-section { padding: 20px 10px 40px; background: var(--gray-100); }
  .catalog-top-bar { 
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
  }
  .catalog-top-left { flex-direction: row; justify-content: space-between; }
  .catalog-count { font-size: 12px; }
  .catalog-count strong { font-size: 14px; }
  .filter-toggle { 
    padding: 10px 14px;
    font-size: 11px;
    border-radius: 6px;
  }
  .filter-toggle span { display: none; }
  .filter-toggle svg { margin: 0; }
  .filter-toggle .filter-count-badge { margin-left: 0; }
  .catalog-sort { width: 100%; }
  .catalog-sort label { display: none; }
  .catalog-sort select { 
    width: 100%;
    padding: 10px 30px 10px 12px; 
    font-size: 12px;
    min-width: auto;
  }
  .active-filters-bar { 
    padding: 10px;
    margin-bottom: 12px;
    gap: 10px;
  }
  .active-filters-label { display: none; }
  .active-filters { gap: 6px; }
  .filter-badge { 
    font-size: 11px; 
    padding: 6px 10px;
    border-radius: 16px;
  }
  .filter-badge button { width: 14px; height: 14px; }
  .clear-filters { 
    margin-left: 0; 
    padding: 5px 12px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  .catalog-promo { 
    grid-column: span 2; 
    flex-direction: column; 
    text-align: center; 
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    min-height: auto;
  }
  .catalog-promo:hover { transform: none; }
  .catalog-promo-img { height: 140px; }
  .catalog-promo-content { padding: 20px 16px; }
  .catalog-promo-label { font-size: 14px; }
  .catalog-promo h3 { font-size: 1.15rem; margin-bottom: 6px; line-height: 1.3; }
  .catalog-promo p { font-size: 12px; margin-bottom: 14px; line-height: 1.5; }
  .catalog-promo .btn { padding: 10px 18px; font-size: 11px; }
  
  /* Filters Mobile */
  .filters-sidebar { max-width: 100%; }
  .filters-header { padding: 20px; }
  .filters-header h3 { font-size: 14px; }
  .filter-group-header { padding: 16px 20px; font-size: 12px; }
  .filter-group-content { padding: 0 20px 20px; }
  .filter-option { padding: 10px 14px; margin: 0 -14px; font-size: 13px; }
  .filter-checkbox { width: 20px; height: 20px; }
  .filter-sizes { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .filter-size-option span { height: 40px; font-size: 12px; }
  .filter-colors { gap: 10px; }
  .filter-color { width: 32px; height: 32px; }
  .price-input { padding: 0 12px; }
  .price-input input { padding: 10px 6px; font-size: 14px; }
  .filters-footer { padding: 16px 20px; gap: 10px; }
  .filter-clear-btn, .filter-apply-btn { padding: 12px; font-size: 12px; }
  
  /* Category Grid */
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .category-card { height: 180px; }
  .category-card-content { padding: 16px; }
  .category-card h3 { font-size: 16px; }
  .category-card .btn { padding: 8px 16px; font-size: 11px; }
  
  /* Carousel */
  .collection-card { width: 240px; }
  .collection-card .placeholder-img { height: 280px; }
  
  /* Trending Section */
  .trending-section { padding: 30px 0; }
  .trending-header { gap: 12px; margin-bottom: 20px; }
  .trending-header h2 { font-size: 1.25rem; }
  .trending-tabs { gap: 8px; }
  .trending-tab { padding: 8px 12px; font-size: 12px; }
  .trending-featured { height: 220px; }
  .trending-featured-overlay { padding: 16px; }
  .trending-featured-label { font-size: 12px; }
  .trending-featured-overlay h3 { font-size: 1.25rem; }
  .trending-featured-cta { font-size: 13px; }
  .trending-products-grid { gap: 10px; }
  .trending-pagination { margin-top: 16px; gap: 8px; }
  .trending-page-info { font-size: 13px; }
  .trending-dot { width: 30px; height: 3px; }
  
  /* Forms */
  .form-row-half { grid-template-columns: 1fr; }
  .form-row input, .form-row textarea, .form-row select { padding: 12px 14px; font-size: 14px; }
  
  /* Pagination */
  .pagination { gap: 6px; margin-top: 20px; padding: 20px 0; }
  .pagination a, .pagination span { 
    width: 38px; 
    height: 38px; 
    font-size: 13px;
    border-radius: 8px;
  }
  .pagination .prev-next { 
    width: auto;
    padding: 0 12px;
    font-size: 11px;
  }
  .pagination .prev-next span { display: none; }
  
  /* Catalog Results Info */
  .catalog-results-info { 
    margin-top: 30px;
    padding: 24px 16px;
    border-radius: 10px;
  }
  .catalog-results-info p { font-size: 13px; }
  .catalog-progress { width: 150px; }
  .btn-load-more { 
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  /* Breadcrumb */
  .breadcrumb { font-size: 12px; padding: 16px 0; }
  
  /* PDP Mobile Fixes - 480px */
  .pdp-thumbnails-vertical { gap: 6px; }
  .pdp-thumb { width: 50px; height: 62px; }
  .pdp-reviews-top { flex-wrap: wrap; }
  .pdp-title { font-size: 1.35rem; }
  .pdp-badge { font-size: 10px; padding: 3px 10px; }
  .pdp-meta { font-size: 12px; }
  .pdp-price-current { font-size: 24px; }
  .pdp-price-discount { font-size: 11px; padding: 3px 8px; }
  .pdp-variant-header { flex-wrap: wrap; gap: 6px; }
  .pdp-size-chart-link { margin-left: 0; width: 100%; justify-content: flex-start; margin-top: 8px; }
  .pdp-size-btn { min-width: 45px; padding: 8px 12px; font-size: 12px; }
  .pdp-color-btn { width: 32px; height: 32px; }
  .pdp-quantity-selector { width: 100%; }
  .pdp-qty-btn { width: 44px; height: 44px; }
  .pdp-qty-input { flex: 1; }
  .pdp-add-to-cart { font-size: 14px; }
  
  /* FBT Mobile - 480px */
  .fbt-header { margin-bottom: 24px; }
  .fbt-title { font-size: 1.5rem; }
  .fbt-product-item { padding: 12px; gap: 10px; }
  .fbt-product-image { width: 60px; height: 72px; }
  .fbt-product-details h4 { font-size: 12px; }
  .fbt-summary { padding: 20px; }
  .fbt-total-current { font-size: 24px; }
  .fbt-add-all-btn { font-size: 13px; padding: 14px 20px; }
  
  /* Reviews Mobile - 480px */
  .reviews-number { font-size: 40px; }
  .reviews-bar-row { gap: 6px; }
  .review-topic-btn { padding: 6px 10px; font-size: 11px; }
  .topic-count { padding: 1px 6px; font-size: 10px; }
  .review-avatar { width: 40px; height: 40px; font-size: 12px; }
  .review-author { font-size: 14px; }
  .review-title { font-size: 14px; }
  .review-text { font-size: 13px; }
  .review-tags { gap: 6px; }
  .review-tag { font-size: 11px; padding: 3px 10px; }
  
  /* PDP Carousel Mobile - 480px */
  .pdp-carousel-track { gap: 12px; }
  
  /* PDP Recently Viewed - 480px */
  .pdp-recently-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pdp-recently-info { padding: 8px; }
  .pdp-recently-info h4 { font-size: 11px; }
  .pdp-recently-price { font-size: 12px; }
  
  /* PDP FAQ - 480px */
  .pdp-faq-category { font-size: 12px; margin-bottom: 16px; }
  
  /* Legacy styles */
  .qty-selector { flex-direction: column; align-items: flex-start; gap: 8px; }
  .qty-input button { width: 40px; height: 40px; }
  .qty-input input { width: 50px; height: 40px; }
  
  /* Recently Viewed */
  .recently-viewed .product-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
  }
}

/* Extra small screens - hide more announcement elements */
@media (max-width: 360px) {
  .announcement-bar { font-size: 10px; }
  .announcement-container { padding: 8px 28px 8px 8px; }
  .announcement-icon { display: none; }
  .announcement-slide { gap: 4px; }
}

/* ===== UTILITY CLASSES FOR MOBILE ===== */
.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 992px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

/* Fix body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile toggle animation */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Filter overlay for mobile */
.filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}
.filter-overlay.active { display: block; }

/* Close button for mobile filters */
.filter-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .filter-close { display: block; }
  .filters-sidebar { padding-top: 60px; }
}


/* ===== CATALOG AJAX LOADING STATES ===== */
.products-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  min-height: 300px;
}
.products-loading p {
  color: var(--gray-500);
  margin-top: 16px;
  font-size: 14px;
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#products-container.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* No Products Found State */
.no-products-found {
  text-align: center;
  padding: 60px 20px;
  background: var(--gray-100);
  border-radius: 12px;
  grid-column: 1 / -1;
}
.no-products-found__icon {
  color: var(--gray-400);
  margin-bottom: 16px;
}
.no-products-found__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.no-products-found__text {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* Catalog Pagination */
.catalog-pagination {
  grid-column: 1 / -1;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.catalog-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-pagination li a,
.catalog-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.catalog-pagination li a:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}
.catalog-pagination li span.current,
.catalog-pagination li a.current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.catalog-pagination li.prev a,
.catalog-pagination li.next a {
  width: auto;
  padding: 0 16px;
}

/* Filter Count Badge (top bar) */
.filter-count-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 8px;
}
.filter-count-badge:not(:empty) {
  display: flex;
}

/* Price Range Slider Enhanced */
.price-range-slider {
  position: relative;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin: 20px 0 24px;
}
.price-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gray-200);
  border-radius: 3px;
}
.price-slider-range {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}
.price-range-slider input[type="range"] {
  position: absolute;
  top: -8px;
  width: 100%;
  height: 22px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.price-range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}
.price-input span {
  color: var(--gray-500);
  font-size: 14px;
}
.price-input input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  outline: none;
}
.price-separator {
  color: var(--gray-400);
  font-weight: 500;
}

/* View Toggle Buttons */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: 8px;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.2s ease;
}
.view-btn:hover {
  color: var(--gray-700);
}
.view-btn.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* List View Mode */
.product-grid.view-list,
.catalog-products.view-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.view-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}
.view-list .product-card-images {
  border-radius: 8px;
  aspect-ratio: 1;
}
.view-list .product-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.view-list .product-card-title {
  font-size: 18px;
}
.view-list .product-card-price .current {
  font-size: 20px;
}

/* Catalog Sort Select */
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-sort label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}
.catalog-sort select,
.catalog-sort .orderby {
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e") no-repeat right 10px center;
  background-size: 16px;
  appearance: none;
  cursor: pointer;
  min-width: 160px;
}
.catalog-sort select:focus,
.catalog-sort .orderby:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Catalog Products Container */
.catalog-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .catalog-products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 576px) {
  .catalog-products { grid-template-columns: 1fr; }
}

/* Fix WooCommerce nested products list */
.catalog-products ul.products {
  display: contents;
}
.catalog-products ul.products li.product {
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
  float: none;
}
/* Override WooCommerce columns */
.catalog-products ul.products.columns-4 {
  display: contents;
}

/* ===== SHOP PAGE FILTERS - OPTIMIZED ===== */

/* Filter Toggle Button - Always visible on desktop too */
.catalog-top-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.filter-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gray-100);
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-toggle:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}
.filter-toggle svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.filter-toggle .filter-count-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Filters Sidebar Improvements */
.filters-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gray-900);
  color: var(--white);
  border-bottom: none;
}
.filters-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.filters-header svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* Filter Groups */
.filter-group {
  border-bottom: 1px solid var(--gray-200);
}
.filter-group:last-of-type {
  border-bottom: none;
}
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.filter-group-header:hover {
  background: var(--gray-50);
}
.filter-group-header span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-800);
}
.filter-group-header svg {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
}
.filter-arrow {
  transition: transform 0.2s ease;
}
.filter-group-header[aria-expanded="true"] .filter-arrow {
  transform: rotate(180deg);
}

/* Filter Group Content */
.filter-group-content {
  padding: 0 24px 20px;
}

/* Filter Options (Checkboxes) */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 12px;
  margin: 0 -12px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.filter-option:hover {
  background: var(--gray-50);
}
.filter-option input[type="checkbox"] {
  display: none;
}
.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.filter-option input:checked + .filter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-option input:checked + .filter-checkbox::after {
  content: '';
  width: 10px;
  height: 6px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-bottom: 2px;
}
.filter-label {
  flex: 1;
  font-size: 14px;
  color: var(--gray-700);
}
.filter-count {
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Price Range Slider - Fixed */
.price-range {
  padding: 10px 0;
}
.price-range-slider {
  position: relative;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 16px 0 20px;
}
.price-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gray-200);
  border-radius: 2px;
}
.price-slider-range {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}
.price-range-slider input[type="range"] {
  position: absolute;
  top: -6px;
  width: 100%;
  height: 16px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.price-range-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
}
.price-input span {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}
.price-input input {
  width: 70px;
  min-width: 60px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  outline: none;
  text-align: center;
  -moz-appearance: textfield;
}
.price-input input::-webkit-outer-spin-button,
.price-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-separator {
  color: var(--gray-400);
  font-size: 14px;
}

/* Size Filter Options */
.filter-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-size-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-size-option:hover {
  border-color: var(--gray-400);
}
.filter-size-option.active,
.filter-size-option:has(input:checked) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.filter-size-option input {
  display: none;
}
.filter-size-option span {
  font-size: 13px;
  font-weight: 600;
}

/* Color Filter */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-color:hover {
  transform: scale(1.1);
}
.filter-color.active,
.filter-color:has(input:checked) {
  border-color: var(--gray-900);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gray-900);
}
.filter-color input {
  display: none;
}
.filter-color svg {
  display: none;
}
.filter-color.active svg,
.filter-color:has(input:checked) svg {
  display: block;
}

/* Filters Footer */
.filters-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.filters-footer .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.filter-clear-btn {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}
.filter-clear-btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}
.filter-apply-btn {
  background: var(--primary);
  border: none;
  color: var(--white);
}
.filter-apply-btn:hover {
  background: var(--primary-dark, #b91c1c);
}

/* Active Filters Bar */
.active-filters-bar {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 20px;
}
.active-filters-bar[style*="flex"] {
  display: flex;
}
.active-filters-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
}
.filter-badge button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  background: var(--gray-200);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-badge button:hover {
  background: var(--primary);
  color: var(--white);
}
.filter-badge button svg {
  width: 10px;
  height: 10px;
}
.clear-filters {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.clear-filters:hover {
  text-decoration: underline;
}

/* Desktop - Hide mobile filter button behavior */
@media (min-width: 993px) {
  .filter-toggle {
    display: none !important;
  }
  .filters-sidebar {
    position: static !important;
    transform: none !important;
    height: auto !important;
    max-width: none !important;
  }
  .filter-close {
    display: none !important;
  }
}

/* Mobile Filters */
@media (max-width: 992px) {
  .filter-toggle {
    display: flex !important;
  }
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    z-index: 1100;
    border-radius: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .filters-sidebar.active {
    left: 0;
  }
  .filter-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
  }
  .filters-footer {
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 10;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .catalog-top-bar {
    flex-direction: column;
    gap: 12px;
  }
  .catalog-top-left,
  .catalog-top-right {
    width: 100%;
    justify-content: space-between;
  }
  .filter-toggle {
    flex: 1;
    justify-content: center;
  }
  .catalog-sort {
    flex: 1;
  }
  .catalog-sort select {
    width: 100%;
  }
}

/* ===== SHOP/CATALOG PAGE - WIREFRAME MATCH ===== */

/* Catalog Header - Hero Style */
.catalog-header {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.catalog-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.catalog-header .container {
  position: relative;
  z-index: 2;
}
.catalog-header .woocommerce-breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray-400);
}
.catalog-header .woocommerce-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.catalog-header .woocommerce-breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.catalog-header .woocommerce-breadcrumb a:hover {
  color: var(--white);
}
.catalog-header .woocommerce-breadcrumb .breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  color: var(--gray-500);
}
.catalog-header .woocommerce-breadcrumb .breadcrumb-sep svg {
  width: 14px;
  height: 14px;
}
.catalog-header-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--primary);
}
.catalog-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px;
  color: var(--white);
}
.catalog-header p {
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Catalog Section */
.catalog-section {
  padding: 40px 0 80px;
  background: var(--white);
}

/* Catalog Top Bar - Toolbar */
.catalog-top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.catalog-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Filter Toggle Button */
.filter-toggle,
#filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gray-100);
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-toggle:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
}
.filter-toggle svg {
  width: 16px;
  height: 16px;
}
.filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
}

/* Catalog Count */
.catalog-count {
  font-size: 14px;
  color: var(--gray-600);
}
.catalog-count strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: 8px;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}
.view-btn:hover {
  color: var(--gray-700);
}
.view-btn.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Catalog Sort */
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-sort label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.catalog-sort select,
.catalog-sort .orderby {
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  background: var(--white);
  cursor: pointer;
  min-width: 160px;
}

/* Active Filters Bar */
.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: 10px;
  margin-bottom: 24px;
}
.active-filters-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.filter-badge a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}
.filter-badge a:hover {
  background: rgba(255,255,255,0.3);
}
.clear-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 14px;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.clear-filters:hover {
  background: var(--primary);
  color: var(--white);
}

/* Catalog Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}
.filters-sidebar::-webkit-scrollbar { width: 6px; }
.filters-sidebar::-webkit-scrollbar-track { background: var(--gray-100); }
.filters-sidebar::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

/* Filters Header */
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gray-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.filters-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.filters-header h3 svg {
  opacity: 0.8;
}
.filter-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.filter-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Filter Groups - Accordion Style */
.filter-group {
  border-bottom: 1px solid var(--gray-200);
}
.filter-group:last-of-type {
  border-bottom: none;
}
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-800);
  transition: background 0.2s;
}
.filter-group-header:hover {
  background: var(--gray-50);
}
.filter-group-header span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-group-header span:first-child svg {
  color: var(--gray-500);
}
.filter-arrow {
  transition: transform 0.3s ease;
}
.filter-group[data-expanded="false"] .filter-arrow {
  transform: rotate(-90deg);
}
.filter-group-content {
  padding: 0 24px 20px;
}

/* Filter Options - Checkbox Style */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin: 0 -14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-700);
  transition: background 0.2s;
}
.filter-option:hover {
  background: var(--gray-50);
}
.filter-option input[type="checkbox"] {
  display: none;
}
.filter-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.2s;
}
.filter-checkbox::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.filter-option input:checked + .filter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-option input:checked + .filter-checkbox::after {
  opacity: 1;
}
.filter-label {
  flex: 1;
}
.filter-count {
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Size Filter - Button Style */
.filter-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-size-option {
  position: relative;
}
.filter-size-option input {
  display: none;
}
.filter-size-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-size-option:hover span {
  border-color: var(--gray-400);
}
.filter-size-option.active span,
.filter-size-option input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Color Filter - Swatch Style */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-color {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-color input {
  display: none;
}
.filter-color svg {
  opacity: 0;
  transition: opacity 0.2s;
}
.filter-color:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.filter-color.active,
.filter-color input:checked ~ svg {
  border-color: var(--gray-900);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gray-900);
}
.filter-color.active svg,
.filter-color input:checked ~ svg {
  opacity: 1;
}

/* Price Range Slider */
.price-range {
  padding-top: 10px;
}
.price-range-slider {
  position: relative;
  height: 40px;
  margin-bottom: 10px;
}
.price-range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: auto;
}
.price-range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: auto;
}
.price-slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  transform: translateY(-50%);
}
.price-slider-range {
  position: absolute;
  top: 50%;
  height: 6px;
  background: var(--primary);
  border-radius: 3px;
  transform: translateY(-50%);
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-input {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.price-input span {
  color: var(--gray-500);
  font-weight: 600;
}
.price-input input {
  flex: 1;
  width: 100%;
  padding: 10px 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
}
.price-input input:focus {
  outline: none;
}
.price-input input::-webkit-outer-spin-button,
.price-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-separator {
  color: var(--gray-400);
  font-weight: 500;
}

/* Filters Footer */
.filters-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  position: sticky;
  bottom: 0;
}
.filter-clear-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-clear-btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}
.filter-apply-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-apply-btn:hover {
  background: var(--primary-dark, #B91C1C);
}

/* Filter Overlay */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.filter-overlay.active {
  opacity: 1;
}

/* Catalog Main / Product Grid */
.catalog-main {
  min-width: 0;
}
.product-grid.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Catalog Pagination */
.catalog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.catalog-pagination .page-numbers {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-pagination .page-numbers li a,
.catalog-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--gray-700);
  transition: all 0.2s ease;
}
.catalog-pagination .page-numbers li a:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.catalog-pagination .page-numbers li span.current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.catalog-pagination .page-numbers li a svg {
  width: 18px;
  height: 18px;
}

/* No Products Found */
.no-products-found {
  text-align: center;
  padding: 80px 30px;
  background: var(--gray-50);
  border-radius: 16px;
}
.no-products-icon {
  margin-bottom: 24px;
}
.no-products-icon svg {
  color: var(--gray-300);
}
.no-products-found h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.no-products-found p {
  color: var(--gray-600);
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: Hide filter toggle, show sidebar */
@media (min-width: 993px) {
  .filter-toggle {
    display: none !important;
  }
  .filters-sidebar {
    display: block;
  }
}

/* Tablet: Show filter toggle, slide-in sidebar */
@media (max-width: 992px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .filter-toggle {
    display: flex !important;
  }
  
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1000;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
  }
  
  .filters-sidebar.active {
    transform: translateX(0);
  }
  
  .filter-close {
    display: flex !important;
  }
  
  /* Filter overlay - only show when active */
  .filter-overlay {
    display: none !important;
  }
  .filter-overlay.active {
    display: block !important;
  }
  
  body.filters-open {
    overflow: hidden;
  }
  
  .product-grid.catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .catalog-top-bar {
    flex-wrap: wrap;
  }
  .catalog-top-left {
    order: 2;
    width: 100%;
  }
  .catalog-top-right {
    order: 1;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }
}

/* Mobile Phone */
@media (max-width: 576px) {
  .catalog-header {
    padding: 80px 0 40px;
  }
  .catalog-header h1 {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }
  .catalog-header p {
    font-size: 13px;
    padding: 0 16px;
    line-height: 1.5;
  }
  .catalog-header-label {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  
  /* Breadcrumb Mobile */
  .catalog-header .woocommerce-breadcrumb {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .catalog-header .woocommerce-breadcrumb .container {
    gap: 4px;
    padding: 0 16px;
  }
  .catalog-header .woocommerce-breadcrumb .breadcrumb-sep svg {
    width: 12px;
    height: 12px;
  }
  
  .catalog-top-bar {
    gap: 12px;
  }
  .view-toggle {
    display: none;
  }
  
  .filters-sidebar {
    max-width: 100%;
  }
  
  .product-grid.catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .active-filters-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .clear-filters {
    margin-left: 0;
  }
}

/* ===== FINAL OVERRIDES ===== */

/* Price input - ensure numbers fit */
.price-input {
  min-width: 90px !important;
  padding: 8px 10px !important;
}
.price-input input {
  width: 55px !important;
  min-width: 50px !important;
  font-size: 13px !important;
  text-align: center !important;
  padding: 0 !important;
}
.price-input span {
  font-size: 13px !important;
  flex-shrink: 0;
}

/* All overlays - DISABLED (close by clicking outside or X button) */
.filter-overlay,
.mobile-nav-overlay,
.drawer-overlay {
  display: none !important;
  pointer-events: none !important;
}

/* Cart drawer backdrop - DISABLED */
.cart-drawer-backdrop {
  display: none !important;
  pointer-events: none !important;
}
