/* ============================================
   MAISON — Luxury Shopping Site
   Palette: Monochrome Luxe + Gold
   Fonts: Outfit (display) + Spectral (body)
============================================ */

:root {
  --white: #FAFAFA;
  --off-white: #F0EDE8;
  --light-gray: #E0E0E0;
  --mid-gray: #9A9A9A;
  --dark: #1A1A1A;
  --black: #0D0D0D;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5EDD6;
  --red: #C0392B;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Spectral', serif;

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-display); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--light-gray);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--dark);
  text-transform: uppercase;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.nav-right { justify-content: flex-end; }

.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--off-white); }

.hamburger {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--dark);
  margin: 3px 0;
  transition: transform var(--transition), opacity var(--transition);
}

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--transition), transform var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.mobile-menu.open { max-height: 300px; padding: 24px 40px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn-primary.light { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-primary.light:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-ghost.full-width {
  width: 100%;
  justify-content: center;
  color: var(--dark);
  border-color: var(--light-gray);
  margin-top: 10px;
}
.btn-ghost.full-width:hover { border-color: var(--dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.35) 60%,
    rgba(10,10,10,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
  animation: heroFadeUp 1s 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,250,0.8);
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(250,250,250,0.6);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 1s 0.8s both;
}
.scroll-line {
  width: 60px; height: 1px;
  background: rgba(250,250,250,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollAnim 2s 1.5s infinite;
}
@keyframes scrollAnim {
  to { left: 100%; }
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.7);
  padding: 0 24px;
}
.marquee-track .dot { color: var(--gold); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════
   CATEGORIES
══════════════════════════════════════ */
.categories {
  padding: 100px 60px;
  background: var(--white);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 480px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover img { transform: scale(1.06); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  transition: opacity var(--transition);
}
.cat-card:hover::after { opacity: 0.85; }

.cat-info {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 2;
  color: var(--white);
}
.cat-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.cat-info span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products-section {
  padding: 100px 60px;
  background: var(--off-white);
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 28px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border: 1.5px solid var(--light-gray);
  background: transparent;
  transition: all var(--transition);
}
.filter-tab:hover { color: var(--dark); border-color: var(--dark); }
.filter-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img { transform: scale(1.07); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.quick-add {
  padding: 12px 28px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transform: translateY(12px);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--gold); color: var(--white); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
}
.product-badge.sale { background: var(--red); }

.product-info {
  padding: 20px 20px 24px;
}
.product-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.old-price {
  font-weight: 400;
  color: var(--mid-gray);
  margin-left: 6px;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════
   BANNER
══════════════════════════════════════ */
.banner-section {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.banner-inner {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
  color: var(--white);
}
.banner-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.banner-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,250,0.8);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 100px 60px;
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  padding: 40px;
  border: 1px solid var(--light-gray);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,134,11,0.1);
}
.testimonial-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  color: inherit;
  margin-bottom: 28px;
}
.testimonial-card.featured p { color: rgba(250,250,250,0.85); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}
.testimonial-author span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}
.testimonial-card.featured .testimonial-author span { color: rgba(250,250,250,0.5); }

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter {
  background: var(--gold-pale);
  padding: 100px 60px;
  text-align: center;
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.newsletter-inner p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-right: none;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--mid-gray); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--dark);
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold); border-color: var(--gold); }
.newsletter-note {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(250,250,250,0.7);
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(250,250,250,0.55);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(250,250,250,0.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(250,250,250,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 201;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--light-gray);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cart-header h3 span { color: var(--mid-gray); font-weight: 400; }
.close-cart {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.close-cart:hover { background: var(--off-white); }

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--mid-gray);
  text-align: center;
}
.cart-empty svg { opacity: 0.3; }
.cart-empty p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.cart-empty span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--off-white);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  transition: background var(--transition), border-color var(--transition);
}
.qty-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.qty-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  align-self: flex-start;
  color: var(--mid-gray);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--light-gray);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal span:first-child {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-subtotal span:last-child {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-shipping-note {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--mid-gray);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 300;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 28px;
  border-left: 3px solid var(--gold);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-card.cat-large { grid-column: 1 / -1; height: 360px; }
  .cat-card { height: 280px; }
}

@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .hero-content { padding: 0 40px; }
  .hero-scroll { left: 40px; }
  .categories, .products-section, .testimonials, .newsletter, .footer { padding: 72px 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .banner-inner { padding: 0 40px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 0 24px; }
  .hero-scroll { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .categories, .products-section, .testimonials, .newsletter, .footer { padding: 60px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.cat-large { grid-column: auto; height: 280px; }
  .cat-card { height: 220px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--light-gray); border-bottom: none; }
  .newsletter-form button { width: 100%; }
  .cart-drawer { width: 100vw; }
  .banner-inner { padding: 0 24px; }
  .banner-section { height: 480px; }
}