/* ==========================================================================
   ITALY COMMERCE - High Fashion E-Commerce Style System
   Exact Reference Matching (Bonkers Corner Full-Viewport Hero & Clean Studio Aesthetic)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,900&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-primary: #000000;
  --color-dark: #0a0a0a;
  --color-accent-red: #e52e2e;
  --color-accent-red-hover: #c42222;
  --color-text-main: #111827;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-bg-light: #f9fafb;
  --color-card-bg: #ffffff;
  --color-border: #e5e7eb;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.14);
  --shadow-drawer: -6px 0 30px rgba(0,0,0,0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: #ffffff;
  color: var(--color-text-main);
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ==========================================================================
   1. ANNOUNCEMENT MARQUEE BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 8px 0;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 110;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
}

.marquee-item span.highlight {
  color: #facc15;
  font-weight: 800;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   2. HEADER NAVIGATION (Exact Reference Style - Floating & Glassmorphism)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.05); /* Almost invisible background */
  backdrop-filter: blur(8px); /* Subtle glass effect */
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 400; /* Normal weight */
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: opacity var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  opacity: 0.7;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header Search Input Box (Matching Screenshot 2) */
.header-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 6px 14px;
  background: transparent;
  width: 200px;
  transition: all 0.25s ease;
}

.header-search-box:focus-within {
  border-color: #ffffff;
  width: 240px;
}

.header-search-input {
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  width: 100%;
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search-icon {
  color: rgba(255, 255, 255, 0.9);
}

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

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  position: relative;
  background: transparent;
  border: none;
  transition: opacity var(--transition-fast);
}

.action-btn:hover {
  opacity: 0.7;
}

.badge-count {
  position: absolute;
  top: 0px;
  right: -2px;
  background-color: #ffffff;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.mobile-menu-btn {
  display: none;
  color: white;
  font-size: 1.6rem;
}

/* ==========================================================================
   3. HERO BANNER SLIDER (Full Viewport Height & 1920x1080 Clean Studio Image)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 34px); /* Full viewport height minus the announcement bar */
  background-color: #000000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 24px 60px 24px;
}

.hero-content {
  max-width: 1000px;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Dual Rounded Pill Buttons (Matching Screenshot 2) */
.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.btn-hero-pill {
  background-color: #ffffff;
  color: #000000;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 24px;
  transition: all var(--transition-fast);
  border: 1.5px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.btn-hero-pill:hover {
  background-color: var(--color-accent-red);
  color: #ffffff;
  border-color: var(--color-accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 46, 46, 0.4);
}

.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator-dot.active {
  background-color: #ffffff;
  width: 36px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   4. DENSE FULL-WIDTH CONTAINERS
   ========================================================================== */
.section-padding {
  padding: 64px 28px;
}

.max-width-container {
  max-width: 1600px;
  margin: 0 auto;
}

.category-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* Removed gap */
}

.category-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 0; /* Removed border-radius */
  overflow: hidden;
  box-shadow: none; /* Removed shadow */
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #ffffff;
}

.category-card-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.btn-category {
  align-self: flex-start;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn-category::before {
  display: none; /* Removed the sweep fill animation */
}

.btn-category:hover {
  background-color: rgba(255, 255, 255, 0.15); /* Subtle transparent white fade */
  color: #ffffff;
  border-color: #ffffff;
}

/* ==========================================================================
   4.5 EXPLORE NEW BANNER (Widescreen Slider)
   ========================================================================== */
.explore-banner {
  position: relative;
  width: 100%;
  height: 95vh;
  background-color: #0a0a0a; /* Dark background to prevent white flashes */
  overflow: hidden;
  margin: 0;
}

.explore-banner .promo-overlay {
  justify-content: flex-end;
  padding-bottom: 80px;
}

.explore-banner .btn-category {
  align-self: center;
}

.explore-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
}

.explore-img:nth-child(1) {
  opacity: 1; /* First image visible initially */
}

.explore-banner.is-visible .explore-img {
  animation: cinematicSlider 15s infinite ease-in-out;
}

.explore-banner.is-visible .explore-img:nth-child(1) { animation-delay: 0s; }
.explore-banner.is-visible .explore-img:nth-child(2) { animation-delay: 5s; }
.explore-banner.is-visible .explore-img:nth-child(3) { animation-delay: 10s; }

@keyframes cinematicSlider {
  0% { opacity: 0; transform: scale(1.05); }
  6% { opacity: 1; transform: scale(1); }
  27% { opacity: 1; transform: scale(1); }
  33% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* ==========================================================================
   5. MID PROMO BANNER
   ========================================================================== */
.promo-full-banner {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin: 30px 0;
}

.promo-full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: transparent; /* Removed dark overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.promo-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* Smaller size */
  font-weight: 400; /* Normal weight instead of bold */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* ==========================================================================
   6. DENSE 4-COLUMN PRODUCT GRIDS WITH COLOR SWATCHES & BADGES
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 2px solid #000;
  padding-bottom: 12px;
}

.section-title-wrapper h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--color-text-main);
}

.section-title-wrapper p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  font-weight: 600;
}

.section-link {
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.section-link:hover {
  color: var(--color-accent-red);
}

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

.product-card {
  position: relative;
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #f4f4f6;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.06);
}

.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-accent-red);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(229,46,46,0.3);
}

.btn-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent; /* Hide text heart */
  z-index: 2;
  border: none;
}

.btn-wishlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' stroke='%23333' stroke-width='1.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l8.72-8.72 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition-fast);
}

.btn-wishlist:hover::before, .btn-wishlist.active::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='%23e52e2e' stroke='%23e52e2e' stroke-width='1.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l8.72-8.72 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  transform: scale(1.1);
  cursor: pointer;
}

.quick-add-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.product-card:hover .quick-add-bar {
  transform: translateY(0);
}

.product-info {
  padding: 14px 12px 14px 12px;
}

.product-category-tag {
  display: none;
}

.product-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #4b5563;
  margin: 4px 0 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.price-original {
  font-size: 0.7rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.price-discounted {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-red);
}

.color-swatches {
  display: none;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: inline-block;
  cursor: pointer;
}

/* ==========================================================================
   7. INSTAGRAM STORIES CAROUSEL
   ========================================================================== */
.stories-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.story-card {
  flex: 0 0 240px;
  height: 400px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover img {
  transform: scale(1.08);
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: white;
}

.story-handle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.play-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease;
}

.story-card:hover .play-icon-circle {
  transform: scale(1.15);
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
}

.story-caption {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ==========================================================================
   8. BRAND STORY
   ========================================================================== */
.story-section {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 84px 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 36px;
}

.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.pillar-icon {
  font-size: 1.6rem;
}

.pillar-text {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-image-box {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 500px;
}

.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   9. LATEST NEWS & TESTIMONIALS
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.news-image {
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.06);
}

.news-body {
  padding: 24px;
}

.news-date {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  color: var(--color-accent-red);
}

.testimonial-section {
  background-color: var(--color-bg-light);
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quote-mark {
  font-size: 3rem;
  color: var(--color-accent-red);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.35rem;
  font-weight: 800;
  max-width: 820px;
  margin: 16px auto;
  color: var(--color-text-main);
  line-height: 1.45;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
}

.trust-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 28px;
  border-bottom: 1px solid var(--color-border);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.badge-title {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-desc {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  max-width: 220px;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 84px 28px 32px 28px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-accent-red);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.84rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.newsletter-box p {
  color: #9ca3af;
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;
}

.newsletter-input {
  background: none;
  border: none;
  color: white;
  width: 100%;
  font-size: 0.88rem;
  outline: none;
}

.newsletter-btn {
  color: white;
  font-size: 1.2rem;
}

.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.app-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7280;
}

/* ==========================================================================
   11. CART DRAWER & MODALS
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: #ffffff;
  z-index: 201;
  box-shadow: var(--shadow-drawer);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.close-btn {
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

.free-shipping-bar {
  background: #fff8f8;
  padding: 14px 26px;
  border-bottom: 1px solid #fee2e2;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-accent-red);
}

.progress-track {
  height: 6px;
  background: #fee2e2;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-accent-red);
  width: 65%;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-item-meta {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  margin: 4px 0;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--color-accent-red);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.qty-val {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0 10px;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background: #fafafa;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: white;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.checkout-btn:hover {
  background: var(--color-accent-red);
}

/* QUICK VIEW MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  width: min(860px, 95vw);
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 1.3rem;
  z-index: 10;
}

.modal-img-box {
  height: 100%;
  background: #f8f9fa;
}

.modal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.size-selector {
  display: flex;
  gap: 8px;
  margin: 16px 0 24px 0;
}

.size-pill {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.size-pill:hover, .size-pill.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #111;
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .header-search-box {
    display: none;
  }
  .category-grid-three {
    grid-template-columns: 1fr;
  }
  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-badges-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 32px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 10px;
  }
  .modal-container {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges-row {
    grid-template-columns: 1fr;
  }
}
