/* ============================================================
   BERRY SUPPLIES LLC — PREMIUM UI STYLESHEET v3.0
   Aesthetic: Luxury Supply House — Deep Navy + Crimson + Gold
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #1a2d4a;
  --navy-light:  #243b5e;
  --crimson:     #c41230;
  --crimson-light:#e8193f;
  --gold:        #d4a843;
  --gold-light:  #f0c96a;
  --white:       #ffffff;
  --off-white:   #f6f7f9;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --success:     #059669;
  --warning:     #d97706;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', 'Segoe UI', sans-serif;
  --shadow-xs:   0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--crimson); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ── TOP ANNOUNCEMENT BAR ───────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 9px 0;
  letter-spacing: .2px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-left span,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
}
.topbar-left span i,
.topbar-right a i { color: var(--gold); font-size: .72rem; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a:hover { color: var(--gold); }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
}
.topbar-promo {
  background: var(--crimson);
  color: #fff !important;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .4px;
}

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
}
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  /* Remove white background from logo */
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo-tagline {
  font-size: .68rem;
  color: var(--gray-400);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 500;
}

/* SEARCH */
.header-search {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header-search:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10,22,40,.07);
  background: var(--white);
}
.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 20px;
  font-size: .92rem;
  outline: none;
  color: var(--gray-900);
  min-width: 0;
}
.header-search input::placeholder { color: var(--gray-400); }
.header-search button {
  background: var(--navy);
  border: none;
  color: var(--white);
  padding: 0 22px;
  height: 100%;
  font-size: .95rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.header-search button:hover { background: var(--crimson); }

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hdr-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: .95rem;
  transition: all var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hdr-btn:hover { background: var(--gray-100); color: var(--navy); }
.hdr-btn span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin-top: 2px;
  color: var(--gray-500);
  text-transform: uppercase;
}
.hdr-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--crimson);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: .62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.hdr-cart {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.hdr-cart:hover { background: var(--crimson); color: var(--white); transform: translateY(-1px); }
.hdr-cart-count {
  background: var(--gold);
  color: var(--navy);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: .72rem;
  font-weight: 800;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.main-nav {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  height: 50px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 3px 3px 0 0;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { left: 0; right: 0; }

/* MEGA DROPDOWN */
.nav-mega { position: relative; }
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 680px;
  padding: 28px;
  z-index: 999;
  border-top: 3px solid var(--gold);
}
.nav-mega:hover .mega-menu { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.mega-cat-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.mega-cat-link:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}
.mega-cat-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--white);
}
.mega-cat-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-body);
}
.mega-cat-count { font-size: .72rem; color: var(--gray-400); margin-top: 2px; }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── FLASH ───────────────────────────────────────────────────── */
.flash-message { padding: 13px 0; font-size: .88rem; }
.flash-message .container { display: flex; justify-content: space-between; align-items: center; }
.flash-message button { background: none; border: none; font-size: 1.2rem; opacity: .6; cursor: pointer; }
.flash-success { background: #ecfdf5; color: #065f46; border-bottom: 2px solid #059669; }
.flash-error   { background: #fff1f2; color: #9f1239; border-bottom: 2px solid var(--crimson); }
.flash-info    { background: #eff6ff; color: #1e3a5f; border-bottom: 2px solid #3b82f6; }
.flash-warning { background: #fffbeb; color: #78350f; border-bottom: 2px solid #f59e0b; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
  box-shadow: 0 4px 16px rgba(196,18,48,.25);
}
.btn-primary:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196,18,48,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 800;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--navy); }
.btn-sm { padding: 8px 18px; font-size: .8rem; }
.btn-lg { padding: 16px 36px; font-size: .96rem; }
.btn-xl { padding: 18px 44px; font-size: 1.02rem; }

/* ── PRODUCT CARD ─────────────────────────────────────────────── */
.pc {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  height: 100%;
}
.pc:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.pc-img {
  display: block;
  width: 100%;
  height: 220px;
  background: var(--gray-50);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.pc:hover .pc-img img { transform: scale(1.08); }
.pc-badges {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pc-badge-sale { background: var(--crimson); color: #fff; }
.pc-badge-hot  { background: var(--gold); color: var(--navy); }
.pc-badge-new  { background: var(--navy); color: #fff; }
.pc-badge-low  { background: var(--warning); color: #fff; }
.pc-wish {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: .9rem;
  transition: all var(--transition);
}
.pc-wish:hover, .pc-wish.active { color: var(--crimson); transform: scale(1.15); background: #fff; }
.pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.pc-cat {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 6px;
}
.pc-name {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.pc-name a { color: inherit; text-decoration: none; }
.pc-name a:hover { color: var(--navy); }
.pc-sku { font-size: .68rem; color: var(--gray-400); margin-bottom: 10px; font-family: monospace; }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pc-price-cur {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
}
.pc-price-old {
  font-size: .82rem;
  text-decoration: line-through;
  color: var(--gray-300);
}
.pc-price-save {
  font-size: .7rem;
  font-weight: 800;
  background: #ecfdf5;
  color: var(--success);
  padding: 2px 7px;
  border-radius: 20px;
}
.pc-stock { font-size: .74rem; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.pc-stock i { font-size: .8rem; }
.pc-s-in  { color: var(--success); }
.pc-s-low { color: var(--warning); }
.pc-s-out { color: var(--crimson); }
.pc-actions { display: flex; gap: 8px; margin-top: auto; }
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  padding: 10px 8px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  letter-spacing: .2px;
}
.pc-btn-view {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
}
.pc-btn-view:hover { border-color: var(--navy); color: var(--navy); background: var(--gray-50); }
.pc-btn-cart {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 0 3px 12px rgba(10,22,40,.2);
}
.pc-btn-cart:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-1px); }
.pc-btn-sold { background: var(--gray-100); color: var(--gray-400); cursor: not-allowed; border: 2px solid var(--gray-200); }

/* ── SECTION STYLES ──────────────────────────────────────────── */
.section    { padding: 72px 0; }
.section-sm { padding: 44px 0; }
.section-xs { padding: 28px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.12);
  color: var(--gold);
  border: 1px solid rgba(212,168,67,.3);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--crimson); }
.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── FEATURES BAR ────────────────────────────────────────────── */
.features-strip { background: var(--navy); padding: 20px 0; }
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid rgba(255,255,255,.1);
}
.fs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.fs-item:last-child { border-right: none; }
.fs-icon {
  width: 44px; height: 44px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.fs-text h5 {
  font-size: .86rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.fs-text p { font-size: .76rem; color: rgba(255,255,255,.5); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(26,45,74,.8) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(196,18,48,.15) 0%, transparent 50%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.12);
  color: var(--gold);
  border: 1px solid rgba(212,168,67,.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 0; }
.hero-stat {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 440px;
}
.hero-mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-mini-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); border-color: rgba(212,168,67,.3); }
.hero-mini-card i { font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; display: block; }
.hero-mini-card span { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 600; display: block; }
.hero-mini-card strong { font-size: .72rem; color: rgba(255,255,255,.4); display: block; margin-top: 2px; }

/* ── CATEGORIES ──────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 14px 22px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.cat-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--white);
  transition: transform var(--transition);
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-name {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.cat-count { font-size: .72rem; color: var(--gray-400); font-weight: 500; }

/* ── PROMO BANNERS ───────────────────────────────────────────── */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promo-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.promo-card::before {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.promo-card::after {
  content: '';
  position: absolute;
  right: 40px; bottom: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.promo-content { position: relative; z-index: 1; }
.promo-label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.promo-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-desc { font-size: .86rem; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.promo-icon {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5.5rem;
  opacity: .1;
  color: var(--white);
  z-index: 0;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); margin-top: 0; }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr; gap: 48px; }
.footer-logo-img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; }
.footer-about { font-size: .86rem; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-heading {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-links li a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  transition: all var(--transition);
  border-left: 2px solid transparent;
  padding-left: 0;
}
.footer-links li a:hover { color: var(--white); padding-left: 8px; border-left-color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .84rem;
  line-height: 1.5;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .84rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.newsletter-btn:hover { background: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
  cursor: pointer;
}
#backToTop.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { background: var(--crimson); }

/* ── CART NOTIF ──────────────────────────────────────────────── */
#cartNotif {
  position: fixed;
  top: 88px; right: 20px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  font-size: .88rem;
  font-weight: 600;
  z-index: 2000;
  transform: translateX(130%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--gold);
}
#cartNotif.show { transform: translateX(0); }
#cartNotif i { color: var(--gold); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination-nav { display: flex; justify-content: center; margin-top: 48px; }
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .86rem;
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--transition);
}
.pagination li a:hover { border-color: var(--navy); color: var(--navy); background: var(--gray-50); }
.pagination li.active a { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: .84rem;
  color: var(--gray-700);
  margin-bottom: 7px;
  letter-spacing: .2px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--gray-50);
  font-family: var(--font-body);
  color: var(--gray-900);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10,22,40,.06);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-navy    { color: var(--navy); }
.text-crimson { color: var(--crimson); }
.text-gold    { color: var(--gold); }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }

/* ── ORDER STATUS BADGES ─────────────────────────────────────── */
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .74rem; font-weight: 700; text-transform: capitalize; }
.status-pending     { background: #fffbeb; color: #92400e; }
.status-processing  { background: #eff6ff; color: #1e40af; }
.status-shipped     { background: #f0fdf4; color: #14532d; }
.status-delivered   { background: #ecfdf5; color: #065f46; }
.status-cancelled   { background: #fff1f2; color: #9f1239; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header-inner { gap: 20px; }
  .hero-title { font-size: 2.8rem; }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .fs-item:nth-child(2) { border-right: none; }
  .mega-menu { display: none !important; }
}
@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; padding: 12px 16px; }
  .header-search { display: none; }
  .logo-text { display: none; }
  .hamburger { display: flex; }
  .hdr-cart span { display: none; }
  .nav-list { display: none; flex-direction: column; width: 100%; }
  .nav-list.open { display: flex; }
  .nav-list > li > a { height: auto; padding: 14px 20px; font-size: .9rem; }
  .topbar-left { display: none; }
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat { border-right: none; padding: 0 16px; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .fs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.75rem; }
}
