/* === Google Font === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Design Tokens === */
:root {
  --navy:          #1c0008;   /* deepest maroon-black */
  --primary:       #881337;   /* deep rose-maroon */
  --blue:          #9f1239;   /* mid maroon */
  --blue-bright:   #be123c;   /* bright crimson */
  --blue-pale:     #fff1f2;   /* very light rose bg */
  --accent:        #d97706;   /* warm gold CTA */
  --accent-hover:  #b45309;   /* darker gold */
  --success:       #2e7d32;
  --danger:        #c62828;
  --text:          #0f172a;
  --text-mid:      #334155;
  --text-muted:    #64748b;
  --border:        #fce7f7;
  --bg:            #ffffff;
  --bg-light:      #fff8f5;
  --bg-section:    #fff1f2;
  --white:         #ffffff;
  --shadow-xs:     0 1px 3px rgba(136,19,55,0.06);
  --shadow-sm:     0 2px 10px rgba(136,19,55,0.10);
  --shadow:        0 4px 24px rgba(136,19,55,0.14);
  --shadow-lg:     0 10px 48px rgba(136,19,55,0.20);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --max-width:     1200px;
  --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================================================
   HEADER
====================================================== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(13,59,142,0.07);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }

nav { display: flex; gap: 4px; align-items: center; }
nav a {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
  letter-spacing: -0.1px;
}
nav a:hover { background: var(--bg-section); color: var(--primary); }
nav a.active { background: var(--blue-pale); color: var(--primary); font-weight: 600; }
.nav-shop-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(136,19,55,0.30) !important;
}
.nav-shop-btn:hover {
  box-shadow: 0 4px 16px rgba(136,19,55,0.45) !important;
  transform: translateY(-1px);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: var(--transition); }

/* ======================================================
   HERO — HOME PAGE (split layout)
====================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #881337 55%, #9f1239 100%);
  position: relative;
  overflow: hidden;
  color: white;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}
.hero-blob-1 {
  width: 560px; height: 560px;
  background: #e11d48;
  top: -200px; right: -80px;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: #fbbf24;
  bottom: -120px; left: 8%;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 96px 28px;
}
.hero-content { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.25);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(76,175,80,0.08); }
}
.hero h1 { font-size: clamp(34px, 4.5vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero h1 span { color: #ffd54f; }
.hero > .hero-inner .hero-content > p { font-size: 17px; opacity: 0.82; margin-bottom: 36px; max-width: 440px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: white; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero-stat-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }

/* Hero product cards (right visual) */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 360px;
}
.hero-pcard {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.hero-pcard:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.hero-pcard-offset { margin-top: 28px; }
.hero-pcard-img {
  height: 90px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.hero-pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}
.hero-pcard-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.hero-pcard-price { font-size: 16px; font-weight: 800; color: #ffd54f; }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: -0.2px;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(245,124,0,0.35);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 6px 24px rgba(245,124,0,0.5); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--blue-bright));
  color: white;
  box-shadow: 0 4px 16px rgba(136,19,55,0.30);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(136,19,55,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: white;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-outline-blue {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline-blue:hover { background: rgba(255,255,255,0.1); }

/* ======================================================
   TRUST BAR
====================================================== */
.trust-bar {
  background: linear-gradient(to right, #fff8f5, #fff1f2, #fff8f5);
  border-bottom: 1px solid #fecdd3;
  padding: 14px 28px;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-mid); font-weight: 600; }
.trust-icon-wrap {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--blue-bright));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ======================================================
   SECTIONS & CONTAINERS
====================================================== */
section { padding: 80px 28px; }
.container { max-width: var(--max-width); margin: 0 auto; }
.bg-section { background: var(--bg-section); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.section-title span { color: var(--primary); }
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ======================================================
   INNER PAGE HERO
====================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #881337 55%, #9f1239 100%);
  color: white;
  text-align: center;
  padding: 72px 24px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 20% 50%, rgba(194,65,12,.40) 0%, transparent 60%);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  position: relative;
}
.page-hero p { color: rgba(255,255,255,.72); font-size: 1rem; max-width: 480px; margin: 0 auto; position: relative; }

/* ======================================================
   SHOP TOOLBAR & FILTERS
====================================================== */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar-left { font-size: 14px; color: var(--text-muted); }
.shop-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 14px rgba(136,19,55,.30); }

/* ======================================================
   PRODUCT CARDS
====================================================== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 2;
  color: white;
}
.product-badge.new  { background: linear-gradient(135deg, #b45309, #d97706); }
.product-badge.sale { background: linear-gradient(135deg, #881337, #be123c); }

.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 2;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #94a3b8;
}
.product-wishlist:hover { transform: scale(1.15); color: #ef4444; box-shadow: 0 4px 16px rgba(0,0,0,0.16); }

.product-img {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--blue-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-info { padding: 18px 20px 20px; }
.product-category { font-size: 11px; color: var(--blue-bright); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 7px; }
.product-name { font-size: 15.5px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-price { font-size: 21px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
.product-price-old { font-size: 13px; color: #94a3b8; text-decoration: line-through; }
.product-rating { font-size: 13px; color: #f59e0b; margin-bottom: 14px; font-weight: 500; }
.add-to-cart {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  letter-spacing: -0.1px;
}
.add-to-cart:hover {
  box-shadow: 0 4px 16px rgba(136,19,55,0.40);
  transform: translateY(-1px);
}

/* ======================================================
   FEATURE CARDS
====================================================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  font-size: 26px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-pale), #fecdd3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 9px; letter-spacing: -0.3px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ======================================================
   CTA BANNER
====================================================== */
.cta-banner {
  background: linear-gradient(135deg, #1c0008 0%, #881337 50%, #9f1239 100%);
  color: white;
  text-align: center;
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(190,18,60,0.25);
  top: -200px; left: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(251,191,36,0.12);
  bottom: -150px; right: -50px;
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; margin-bottom: 14px; letter-spacing: -1px; position: relative; z-index: 1; }
.cta-banner p { font-size: 16px; opacity: 0.82; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ======================================================
   FOOTER
====================================================== */
footer {
  background: #0c0003;
  color: #94a3b8;
  padding: 60px 28px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.88; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.75; color: #64748b; max-width: 300px; }
.footer-col h4 { color: #e2e8f0; font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.2px; text-transform: uppercase; letter-spacing: 0.8px; font-size: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: #64748b; transition: color var(--transition), padding-left var(--transition); }
.footer-col ul li a:hover { color: var(--blue-bright); padding-left: 4px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #475569; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: #475569; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--blue-bright); }

/* ======================================================
   PAGE HERO (inner pages)
====================================================== */
.page-hero {
  background: linear-gradient(135deg, #1c0008 0%, #881337 60%, #be123c 100%);
  color: white;
  padding: 68px 28px 80px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.page-hero p { font-size: 16px; opacity: 0.8; max-width: 480px; margin: 0 auto; }

/* ======================================================
   ABOUT PAGE
====================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--bg-section), var(--blue-pale));
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
}
.about-content h2 { font-size: 32px; font-weight: 900; color: var(--primary); margin-bottom: 18px; line-height: 1.25; letter-spacing: -1px; }
.about-content p { font-size: 15.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { font-size: 20px; margin-top: 2px; background: var(--blue-pale); width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.value-text span { font-size: 13px; color: var(--text-muted); }
.company-badge {
  display: inline-block;
  background: var(--blue-pale);
  border: 1px solid #fecdd3;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* ======================================================
   CONTACT PAGE
====================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: linear-gradient(145deg, #881337, #be123c);
  color: white;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.4px; }
.contact-info-card > p { font-size: 14px; opacity: 0.75; margin-bottom: 30px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 12px; opacity: 0.65; font-weight: 500; margin-bottom: 3px; letter-spacing: 0.4px; text-transform: uppercase; }
.contact-item-text span { font-size: 15px; font-weight: 600; }
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 21px; font-weight: 800; color: var(--text); margin-bottom: 26px; letter-spacing: -0.4px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 7px; }
input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue-bright);
  background: white;
  box-shadow: 0 0 0 4px rgba(136,19,55,0.10);
}
textarea { resize: vertical; min-height: 126px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--blue-bright));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-top: 8px;
  letter-spacing: -0.2px;
}
.form-submit:hover { box-shadow: 0 6px 24px rgba(13,59,142,0.35); transform: translateY(-1px); }

/* ======================================================
   POLICY PAGES
====================================================== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 28px;
}
.policy-content h2 { font-size: 22px; font-weight: 800; color: var(--primary); margin: 40px 0 14px; letter-spacing: -0.4px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.policy-content ul { margin: 0 0 16px 20px; }
.policy-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 6px; }
.policy-content a { color: var(--blue-bright); text-decoration: underline; }
.policy-last-updated {
  display: inline-block;
  background: var(--blue-pale);
  border: 1px solid #fecdd3;
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ======================================================
   SHOP PAGE
====================================================== */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar-left { font-size: 15px; color: var(--text-muted); }
.shop-toolbar-left strong { color: var(--text); font-weight: 700; }
.shop-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 17px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue-bright); color: var(--blue-bright); background: var(--blue-pale); }
.filter-btn.active { background: linear-gradient(135deg, var(--primary), var(--blue-bright)); color: white; border-color: transparent; box-shadow: 0 2px 10px rgba(136,19,55,0.30); }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 70px 28px 60px; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-img-wrap { height: 280px; }
}
@media (max-width: 640px) {
  nav { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .page-hero { clip-path: none; padding: 56px 24px; }
  section { padding: 56px 20px; }
  .trust-bar-inner { gap: 20px; }
}
