/* ================================
   SESSE & CO — Premium Edition
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --red:        #9B1B1B;
  --red-mid:    #B52525;
  --red-light:  #D94040;
  --red-pale:   #F5E0E0;
  --red-ultra:  #FDF5F5;
  --gold:       #B8934A;
  --gold-light: #D4AF6F;
  --gold-pale:  #F7EDD8;
  --cream:      #FEFCF8;
  --white:      #FFFFFF;
  --warm-gray:  #F4EFE9;
  --text:       #1E1010;
  --text-mid:   #5C3D3D;
  --text-light: #9A7A7A;
  --border:     rgba(155, 27, 27, 0.12);
  --radius:     4px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 12px rgba(155, 27, 27, 0.07);
  --shadow:     0 8px 32px rgba(155, 27, 27, 0.12);
  --shadow-lg:  0 20px 60px rgba(155, 27, 27, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 0.95rem; letter-spacing: 0.3px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-family: 'Jost', sans-serif;
}

.section-footer { text-align: center; margin-top: 50px; }

/* ================================
   BOUTONS
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 27, 27, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 74, 0.35);
}

.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================
   BARRE D'ANNONCE
   ================================ */

.announcement-bar {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 11px 0;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticker-wrapper { overflow: hidden; white-space: nowrap; }

.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker span { margin: 0 24px; }
.ticker span i { color: var(--gold); margin: 0 6px; font-size: 0.55rem; vertical-align: middle; }

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

/* ================================
   HEADER
   ================================ */

.header {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-icon { font-size: 1rem; }

.cart-icon { position: relative; }

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.logo a, .logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 3px auto;
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.mobile-menu.open { display: flex; }

/* ================================
   HERO
   ================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  min-height: 90vh;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 600;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}

.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image { position: relative; }

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
}

.hero-img-frame {
  position: relative;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: 2px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.hero-badge i { color: var(--gold); font-size: 1.2rem; }

.hero-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

.hero-badge-text span {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================
   BANDEAU CONFIANCE
   ================================ */

.trust-bar {
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  padding: 12px 40px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--red-ultra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i { font-size: 1rem; color: var(--red); }

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ================================
   CATÉGORIES
   ================================ */

.categories { background: var(--cream); }

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  height: 380px;
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 16, 16, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(30, 16, 16, 0.85) 0%, rgba(30,16,16,0.2) 60%);
}

.category-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.category-overlay h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: var(--transition);
}

.category-card:hover .category-link { border-color: var(--gold-light); color: var(--gold-light); }

/* ================================
   PRODUITS
   ================================ */

.products { background: var(--warm-gray); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--white);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover { z-index: 2; box-shadow: var(--shadow-lg); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 4px 12px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Jost', sans-serif;
}

.product-badge.promo { background: var(--red); }
.product-badge.best  { background: var(--text); }

.product-image-wrap { position: relative; overflow: hidden; }

.product-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 0.82rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.product-action-btn:hover { background: var(--red); color: var(--white); }

.product-info { padding: 20px; }

.product-category {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-name {
  font-size: 1rem;
  margin: 6px 0 12px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
}

.price-old {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-cart {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
}

/* ================================
   BANDEAU PROMO
   ================================ */

.promo-banner {
  background: var(--red);
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(15deg);
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 30%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(-15deg);
}

.promo-banner p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.promo-banner h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.promo-banner .btn {
  background: var(--white);
  color: var(--red);
  margin-top: 8px;
}

.promo-banner .btn:hover {
  background: var(--gold-pale);
  color: var(--red);
  transform: translateY(-2px);
}

/* ================================
   À PROPOS
   ================================ */

.about { background: var(--cream); }

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-frame {
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--gold-pale);
  padding: 20px 24px;
  text-align: center;
  border-left: 3px solid var(--gold);
}

.about-accent strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.about-accent span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 300;
}

.about-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-signature-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
}

.about-signature-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================================
   FOOTER
   ================================ */

.footer { background: var(--text); }

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 20px 0 24px;
  font-weight: 300;
}

.footer-logo .logo-name { color: var(--white); font-size: 1.5rem; letter-spacing: 5px; }
.footer-logo .logo-tagline { color: var(--gold-light); }
.footer-logo .logo-divider { background: linear-gradient(to right, transparent, var(--gold-light), transparent); }

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

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.footer-contact-item i { color: var(--gold); font-size: 0.9rem; width: 16px; }
.footer-contact-item strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; align-items: center; }

.footer-pay-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  border-radius: 5px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-pay-logo:hover { opacity: 1; }

.payment-badge {
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* ================================
   WHATSAPP FLOTTANT
   ================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ================================
   PANIER SIDEBAR
   ================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 16, 16, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  height: 100vh;
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.cart-header h3 { font-size: 1.2rem; letter-spacing: 1px; }

.cart-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 6px;
  transition: var(--transition);
}

.cart-close:hover { color: var(--red); }

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 80px;
  color: var(--text-light);
  text-align: center;
}

.cart-empty i { font-size: 2.5rem; color: var(--red-pale); }
.cart-empty p { font-size: 0.9rem; }

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-total strong {
  font-family: 'Cormorant Garamond', serif;
  color: var(--red);
  font-size: 1.3rem;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 24px;
    text-align: center;
    gap: 50px;
  }

  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-image { order: -1; }
  .hero-img { height: 320px; }
  .hero-img-frame::before { display: none; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; white-space: nowrap; }

  .nav-links { display: none; }
  .burger { display: block; }

  .trust-bar { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; width: 100%; }
  .trust-item:last-child { border-bottom: none; }

  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 280px; }

  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-accent { display: none; }
  .about-img-frame::before { display: none; }
  .about-img-frame img { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cart-sidebar { width: 100%; right: -100%; }
  .promo-banner h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
}
