/* ═══════════════════════════════════════════════════════
   ShopNest – DARK LUXURY EDITORIAL THEME
   Fonts: Playfair Display + Plus Jakarta Sans
   Palette: Obsidian · Amber Gold · Cream · Ember Red
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0c0c0e;
  --bg2: #111114;
  --bg3: #18181d;
  --bg4: #1f1f26;
  --surface: #222228;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .12);
  --gold: #00f0f0;
  --gold2: #4ae4ff;
  --gold-glow: rgba(240, 165, 0, .18);
  --cream: #f5ede0;
  --text: #d4cfc9;
  --text-dim: #7a7570;
  --red: #e84545;
  --teal: #00d4aa;
  --blue: #4f8ef7;
  --radius: 18px;
  --radius-sm: 10px;
  --nav-h: 72px;
  --shadow-gold: 0 0 40px rgba(240, 165, 0, .15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, .6);
  --transition: all .32s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .25s, height .25s, background .25s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(240, 165, 0, .5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform .18s cubic-bezier(.4, 0, .2, 1), width .3s, height .3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px;
  height: 48px;
  background: rgba(240, 165, 0, .06);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ── Utility ── */
.text-gold {
  color: var(--gold);
}

.text-cream {
  color: var(--cream);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: .6rem;
  max-width: 500px;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
#mainNav {
  height: var(--nav-h);
  background: rgba(12, 12, 14, .6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(12, 12, 14, .95);
  border-bottom-color: var(--border2);
  box-shadow: 0 2px 40px rgba(0, 0, 0, .5);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--cream) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
  letter-spacing: .02em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(240, 165, 0, .4);
}

.brand-accent {
  color: var(--gold);
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  font-size: .9rem;
  padding: .5rem .85rem !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: .02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
  background: rgba(240, 165, 0, .08);
}

.dropdown-menu.mega-menu {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .7);
  padding: .6rem;
  min-width: 240px;
}

.mega-menu .dropdown-item {
  color: var(--text);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-weight: 500;
  transition: var(--transition);
  font-size: .9rem;
}

.mega-menu .dropdown-item:hover {
  background: rgba(240, 165, 0, .1);
  color: var(--gold);
}

.search-wrap {
  position: relative;
}

.search-input {
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  padding: .45rem 1rem .45rem 2.4rem;
  font-size: .88rem;
  width: 210px;
  transition: var(--transition);
  background: var(--surface);
  color: var(--cream);
  outline: none;
  font-family: var(--font-body);
}

.search-input::placeholder {
  color: var(--text-dim);
}

.search-input:focus {
  border-color: var(--gold);
  width: 270px;
  box-shadow: 0 0 0 3px var(--gold-glow);
  color: var(--cream);
}

.search-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: .82rem;
  pointer-events: none;
}

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  background: rgba(240, 165, 0, .12);
  border-color: var(--gold);
  color: var(--gold);
}

.badge-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
}

.cart-btn .badge-dot {
  background: var(--red);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: .45rem 1.3rem !important;
  font-size: .88rem !important;
  box-shadow: 0 4px 20px rgba(240, 165, 0, .35) !important;
  transition: var(--transition) !important;
  letter-spacing: .02em;
}

.nav-cta:hover {
  box-shadow: 0 8px 32px rgba(240, 165, 0, .5) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--slide-bg);
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Noise overlay on hero */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .35;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 14, .92) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Geometric accents */
.slide-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.slide-geo-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 0, .12) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: geoPulse 6s ease-in-out infinite;
}

.slide-geo-2 {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(240, 165, 0, .08);
  border-radius: 50%;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  animation: geoRotate 20s linear infinite;
}

.slide-geo-3 {
  width: 80px;
  height: 80px;
  background: rgba(240, 165, 0, .06);
  border: 1px solid rgba(240, 165, 0, .15);
  border-radius: 12px;
  right: 420px;
  top: 25%;
  animation: geoFloat 5s ease-in-out infinite;
  transform: rotate(15deg);
}

@keyframes geoPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1)
  }

  50% {
    transform: translateY(-50%) scale(1.1)
  }
}

@keyframes geoRotate {
  from {
    transform: translateY(-50%) rotate(0)
  }

  to {
    transform: translateY(-50%) rotate(360deg)
  }
}

@keyframes geoFloat {

  0%,
  100% {
    transform: rotate(15deg) translateY(0)
  }

  50% {
    transform: rotate(15deg) translateY(-20px)
  }
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240, 165, 0, .1);
  border: 1px solid rgba(240, 165, 0, .3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.slide-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: tagBlink 1.5s ease-in-out infinite;
}

@keyframes tagBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.slide-title em {
  font-style: italic;
  color: var(--gold);
}

.slide-desc {
  color: rgba(213, 207, 201, .7);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: .8rem 2rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 8px 32px rgba(240, 165, 0, .35);
  font-size: .95rem;
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, .3);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: .8rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
}

.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* hero stats */
.slide-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.slide-stat {
  display: flex;
  flex-direction: column;
}

.slide-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
}

.slide-stat-label {
  font-size: .75rem;
  color: var(--text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* hero right image panel */
.hero-img-panel {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-main {
  width: 320px;
  height: 420px;
  border-radius: 24px 24px 80px 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(240, 165, 0, .1);
  position: relative;
  z-index: 2;
  transform: perspective(800px) rotateY(-5deg);
  transition: var(--transition);
  right: -50px;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  width: 180px;
  height: 240px;
  border-radius: 16px 16px 50px 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
  position: absolute;
  bottom: 20px;
  left: 80px;
  z-index: 3;
  border: 3px solid var(--bg3);
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  z-index: 4;
  background: rgba(30, 30, 36, .85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(240, 165, 0, .2);
  border-radius: 14px;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  white-space: nowrap;
}

.hero-float-card .hfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.hfc-top {
  top: 40px;
  right: 20px;
  animation: floatCard 4s ease-in-out infinite;
}

.hfc-mid {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  animation: floatCard 4s ease-in-out infinite 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.hfc-mid {
  animation: floatCardMid 4s ease-in-out infinite 1.5s;
}

@keyframes floatCardMid {

  0%,
  100% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 10px))
  }
}

/* Decorative gold line */
.hero-gold-line {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .5;
  z-index: 10;
}

.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border2);
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(240, 165, 0, .15);
  border-color: var(--gold);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: .5rem;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* ══════════════════════════════════════════
   SEARCH RESULTS
   ══════════════════════════════════════════ */
.search-results-panel {
  background: var(--bg2);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-top: var(--nav-h);
}

.search-results-panel h5 {
  color: var(--cream);
  font-family: var(--font-display);
}

/* ══════════════════════════════════════════
   CATEGORY CTA BUTTONS
   ══════════════════════════════════════════ */
.category-cta-section {
  background: var(--bg2);
  padding: 4rem 0;
  position: relative;
}

.category-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .3;
}

.cat-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.75rem 1rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cat-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--cat-color, var(--gold)) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.cat-cta-btn:hover {
  border-color: var(--cat-color, var(--gold));
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 0 1px var(--cat-color, var(--gold));
  color: var(--cream);
}

.cat-cta-btn:hover::before {
  opacity: .08;
}

.cat-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cat-color, var(--gold));
  transition: var(--transition);
}

.cat-cta-btn:hover .cat-cta-icon {
  background: var(--cat-color, var(--gold));
  color: var(--bg);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.cat-cta-btn span {
  font-weight: 600;
  font-size: .82rem;
  text-align: center;
  letter-spacing: .03em;
}

/* ══════════════════════════════════════════
   PRODUCT SECTIONS
   ══════════════════════════════════════════ */
.products-section {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
}

.products-section.alt-bg {
  background: var(--bg2);
}

/* diagonal divider */
.products-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.products-section.alt-bg::after {
  background: var(--bg);
}

.products-section:not(.alt-bg)::after {
  background: var(--bg2);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  font-size: .85rem;
  border: 1.5px solid rgba(240, 165, 0, .3);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: .03em;
}

.show-all-btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(240, 165, 0, .3);
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  height: 100%;
  group: true;
}

.product-card:hover {
  border-color: rgba(240, 165, 0, .35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(240, 165, 0, .2), var(--shadow-gold);
}

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 5;
  background: var(--gold);
  color: var(--bg);
  font-size: .65rem;
  font-weight: 800;
  padding: .2rem .65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(240, 165, 0, .4);
}

/* image area */
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .4s;
  filter: brightness(.95) saturate(1.05);
}

.product-card:hover .product-img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.15);
}

.product-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: var(--surface);
}

/* overlay shimmer on card hover */
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, .8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover .product-img-wrap::after {
  opacity: 1;
}

/* quick actions */
.product-quick-actions {
  position: absolute;
  top: .6rem;
  right: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  opacity: 0;
  transform: translateX(12px);
  transition: var(--transition);
  z-index: 6;
}

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

.card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 18, 22, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border2);
  cursor: pointer;
  color: var(--text-dim);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.card-action-btn:hover {
  background: rgba(240, 165, 0, .15);
  color: var(--gold);
  border-color: rgba(240, 165, 0, .4);
}

.card-action-btn.wishlisted {
  background: rgba(232, 69, 69, .15);
  color: var(--red);
  border-color: rgba(232, 69, 69, .4);
}

.product-info {
  padding: 1rem 1.1rem 1.25rem;
}

.product-category-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: .35rem 0 .4rem;
  color: var(--cream);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc{
  font-size: 15px;
  font-weight: 500;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  font-size: .72rem;
  color: var(--text-dim);
  margin-bottom: .6rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}

.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(240, 165, 0, .3);
}

.add-to-cart-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(240, 165, 0, .5);
}

.add-to-cart-btn.in-cart {
  background: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 212, 170, .3);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
.about-section {
  background: var(--bg2);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 0, .04) 0%, transparent 70%);
  left: -200px;
  top: -200px;
  pointer-events: none;
}

.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, var(--acolor) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.about-card:hover {
  border-color: var(--acolor);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.about-card:hover::before {
  opacity: .05;
}

.about-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  color: var(--acolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.about-card:hover .about-icon {
  background: var(--acolor);
  color: var(--bg);
  border-color: var(--acolor);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.about-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}

.about-card p {
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.stats-row {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.stat-item {
  padding: 1.75rem;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(240, 165, 0, .3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-section {
  background: var(--bg);
  padding: 5rem 0;
}

.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg3) !important;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(240, 165, 0, .25) !important;
}

.faq-btn {
  background: var(--bg3) !important;
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  padding: 1.25rem 1.5rem !important;
  font-size: .98rem;
  box-shadow: none !important;
}

.faq-btn::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

.faq-btn:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(240, 165, 0, .06) !important;
}

.faq-icon {
  color: var(--gold);
  font-size: 1rem;
}

.faq-body {
  color: var(--text-dim);
  line-height: 1.75;
  padding: 0 1.5rem 1.25rem;
  background: rgba(240, 165, 0, .03);
  font-size: .93rem;
}

/* ══════════════════════════════════════════
   SUBSCRIBE
   ══════════════════════════════════════════ */
.subscribe-section {
  background: var(--bg2);
  padding: 5rem 0;
}

.subscribe-card {
  background: var(--bg3);
  border: 1px solid rgba(240, 165, 0, .2);
  border-radius: 28px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(240, 165, 0, .1);
}

.subscribe-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 0, .08) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.subscribe-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--cream);
}

.subscribe-card>.row>div>p {
  color: var(--text-dim);
}

.subscribe-input-wrap {
  display: flex;
  gap: .5rem;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  padding: .4rem .4rem .4rem 1rem;
  transition: var(--transition);
}

.subscribe-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  padding: .5rem .5rem;
  font-size: .93rem;
  font-family: var(--font-body);
}

.subscribe-input::placeholder {
  color: var(--text-dim);
}

.subscribe-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(240, 165, 0, .35);
}

.subscribe-btn:hover {
  background: var(--gold2);
  transform: scale(1.03);
}

.subscribe-note {
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: .75rem;
}

.unsub-link {
  color: rgba(240, 165, 0, .6);
  text-decoration: underline;
  transition: var(--transition);
}

.unsub-link:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-section {
  background: var(--bg);
  padding: 5rem 0;
}

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--ccolor, var(--gold));
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  color: var(--ccolor, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--ccolor, var(--gold));
  color: var(--bg);
  border-color: var(--ccolor, var(--gold));
}

.contact-card h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .5rem;
}

.contact-card p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form-wrap h5 {
  font-family: var(--font-display);
  color: var(--cream);
}

.contact-input {
  background: var(--surface) !important;
  border: 1.5px solid var(--border2) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--cream) !important;
  padding: .75rem 1rem !important;
  font-size: .93rem !important;
  transition: var(--transition) !important;
  font-family: var(--font-body) !important;
}

.contact-input::placeholder {
  color: var(--text-dim) !important;
}

.contact-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
  outline: none;
}

.send-btn {
  background: var(--gold) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  color: var(--bg) !important;
  padding: .75rem 2rem !important;
  box-shadow: 0 4px 20px rgba(240, 165, 0, .35) !important;
}

.send-btn:hover {
  background: var(--gold2) !important;
}

.social-connect {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.social-connect h5 {
  font-family: var(--font-display);
  color: var(--cream);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  background: var(--surface);
  color: var(--sc, var(--gold));
  border: 1px solid var(--border2);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--sc, var(--gold));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

.app-badges {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--cream);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  transition: var(--transition);
}

.app-badge:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(240, 165, 0, .3);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.footer-brand .brand-icon {
  background: var(--gold);
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-dim);
}

.footer-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.f-badge {
  font-size: .72rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  padding: .3rem .75rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-dim);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .87rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-dim);
}

.payment-icons {
  display: flex;
  gap: .75rem;
  font-size: 1.7rem;
  color: var(--text-dim);
}

.payment-icons i:hover {
  color: var(--gold);
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   CART / WISHLIST SIDEBARS
   ══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 1060;
}

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

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: 96vw;
  background: var(--bg3);
  border-left: 1px solid var(--border2);
  z-index: 1061;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

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

.wishlist-sidebar {
  border-left: 2px solid rgba(240, 165, 0, .25);
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
}

.cart-header h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}

.cart-close {
  background: var(--surface);
  border: 1px solid var(--border2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(232, 69, 69, .15);
  color: var(--red);
  border-color: rgba(232, 69, 69, .3);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

/* cart item */
.cart-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: .75rem;
  background: var(--bg2);
  transition: var(--transition);
}

.cart-item:hover {
  border-color: rgba(240, 165, 0, .2);
}

.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: .83rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-unit {
  font-size: .76rem;
  color: var(--text-dim);
  display: block;
  margin-top: .1rem;
}

.ci-qty-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
}

.ci-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: var(--text-dim);
  transition: var(--transition);
}

.ci-qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 165, 0, .1);
}

.ci-qty-num {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  color: var(--cream);
}

.ci-line-total {
  font-weight: 700;
  font-size: .83rem;
  color: var(--gold);
  margin-left: .4rem;
}

.cart-item-remove {
  background: transparent;
  border: 1px solid var(--border2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: rgba(232, 69, 69, .12);
  color: var(--red);
  border-color: rgba(232, 69, 69, .3);
}

.wish-item-actions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex-shrink: 0;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 220px;
  color: var(--text-dim);
  text-align: center;
}

.cart-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .88rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.cart-price-row:last-of-type {
  border-bottom: none;
}

.cart-total-row {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  padding-top: .6rem;
}

.checkout-btn {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: .75rem !important;
  box-shadow: 0 4px 20px rgba(240, 165, 0, .35) !important;
  transition: var(--transition) !important;
}

.checkout-btn:hover {
  background: var(--gold2) !important;
  box-shadow: 0 8px 32px rgba(240, 165, 0, .5) !important;
}

.fw-600 {
  font-weight: 600;
}

.badge.bg-primary {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

.badge[style*="#ec4899"] {
  background: #ec4899 !important;
}

/* ══════════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════════ */
.product-modal {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
}

.product-modal .modal-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg2);
}

.product-modal .btn-close {
  filter: invert(1);
}

.modal-product-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 16px;
}

.modal-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.modal-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 290px;
  border-radius: 16px;
}

.modal-category-badge {
  border-radius: 50px;
  padding: .25rem .75rem;
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.product-modal h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 900;
}

.product-modal .modal-title {
  color: var(--text-dim);
}

.modal-price {
  margin-bottom: .5rem;
}

.modal-rating {
  font-size: .8rem;
  color: var(--text-dim);
}

.modal-perks {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.perk-tag {
  font-size: .76rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border2);
  padding: .25rem .7rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text-dim);
}

.modal-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  padding: .35rem .9rem;
}

.qty-control button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--transition);
}

.qty-control button:hover {
  color: var(--gold);
}

.qty-control span {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--cream);
}

.product-modal .btn-primary {
  background: var(--gold) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  color: var(--bg) !important;
  box-shadow: 0 4px 20px rgba(240, 165, 0, .35) !important;
}

.product-modal .btn-outline-danger {
  border-color: rgba(232, 69, 69, .4) !important;
  color: var(--red) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-modal .btn-outline-danger:hover {
  background: rgba(232, 69, 69, .12) !important;
}

.product-modal p {
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   CHECKOUT OVERLAY
   ══════════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.checkout-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 28px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(240, 165, 0, .06);
  transform: translateY(50px);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.checkout-overlay.active .checkout-modal {
  transform: translateY(0);
}

.checkout-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
}

.checkout-header h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
}

.checkout-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.checkout-back-btn:hover {
  background: rgba(240, 165, 0, .1);
  color: var(--gold);
  border-color: rgba(240, 165, 0, .3);
}

.checkout-body {
  padding: 1.75rem;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.co-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.co-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.co-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: .35rem;
  display: block;
  letter-spacing: .02em;
}

.co-input {
  background: var(--surface) !important;
  border: 1.5px solid var(--border2) !important;
  border-radius: 10px !important;
  padding: .65rem 1rem !important;
  font-size: .92rem !important;
  color: var(--cream) !important;
  transition: var(--transition) !important;
  font-family: var(--font-body) !important;
}

.co-input::placeholder {
  color: var(--text-dim) !important;
}

.co-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
}

.co-input option {
  background: var(--bg3);
  color: var(--cream);
}

/* payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.payment-option {
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  transition: var(--transition);
  background: var(--surface);
}

.payment-option input {
  display: none;
}

.payment-option.selected,
.payment-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(240, 165, 0, .05);
  box-shadow: 0 0 0 1px rgba(240, 165, 0, .2);
}

.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-option strong {
  color: var(--cream);
  font-size: .92rem;
}

.payment-option .text-muted {
  color: var(--text-dim) !important;
}

.disabled-option {
  cursor: not-allowed;
  opacity: .5;
}

.co-cod-note {
  background: rgba(240, 165, 0, .06);
  border: 1px solid rgba(240, 165, 0, .2);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .86rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.co-place-btn {
  background: var(--gold) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-family: var(--font-body) !important;
  padding: .85rem 2rem !important;
  font-size: 1rem !important;
  color: var(--bg) !important;
  box-shadow: 0 4px 24px rgba(240, 165, 0, .4) !important;
  transition: var(--transition) !important;
}

.co-place-btn:hover {
  background: var(--gold2) !important;
  box-shadow: 0 8px 36px rgba(240, 165, 0, .55) !important;
  transform: translateY(-2px);
}

/* checkout order summary */
.co-summary-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}

.co-items-list {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.co-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}

.co-item:last-child {
  border-bottom: none;
}

.co-item-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.co-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-item-info {
  flex: 1;
  min-width: 0;
}

.co-item-name {
  font-size: .82rem;
  font-weight: 600;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cream);
}

.co-item-meta {
  font-size: .73rem;
  color: var(--text-dim);
}

.co-item-price {
  font-weight: 700;
  font-size: .88rem;
  color: var(--gold);
  flex-shrink: 0;
}

.co-price-breakdown {
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-bottom: 1rem;
}

.co-price-row {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  font-size: .87rem;
  color: var(--text-dim);
}

.co-price-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  border-top: 1px solid rgba(240, 165, 0, .2);
  padding-top: .65rem;
  margin-top: .35rem;
}

.co-price-total strong {
  color: var(--gold);
}

.co-trust-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.co-trust-badges span {
  font-size: .75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .22rem .6rem;
  border-radius: 50px;
}

/* ══════════════════════════════════════════
   ORDER SUCCESS
   ══════════════════════════════════════════ */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 1rem;
}

.legal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
}

.legal-overlay.active .legal-modal {
  transform: translateY(0);
}

.legal-modal h3 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--cream);
}

.legal-modal h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin: 1.25rem 0 .5rem;
}

.legal-modal p {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: .75rem;
  font-size: .92rem;
}

.legal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.legal-close:hover {
  background: rgba(232, 69, 69, .12);
  color: var(--red);
}

.success-modal {
  max-width: 440px;
  text-align: center;
}

.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;
}

.success-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4aa, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 0 40px rgba(0, 212, 170, .35);
  animation: successPop .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes successPop {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.success-details {
  background: var(--surface);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--border);
}

.success-detail-row {
  display: flex;
  align-items: center;
  padding: .45rem 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}

.success-detail-row:last-child {
  border-bottom: none;
}

.success-modal h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.6rem;
}

.success-modal p.text-muted {
  color: var(--text-dim) !important;
}

.unsub-modal {
  max-width: 420px;
}

.unsub-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(232, 69, 69, .1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.unsub-modal h4 {
  color: var(--cream);
  font-family: var(--font-display);
}

.btn-outline-danger {
  border-color: rgba(232, 69, 69, .4) !important;
  color: var(--red) !important;
}

.btn-outline-danger:hover {
  background: rgba(232, 69, 69, .12) !important;
}

.btn-link {
  color: var(--text-dim) !important;
}

/* ══════════════════════════════════════════
   BACK TO TOP + TOAST
   ══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(240, 165, 0, .45);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(240, 165, 0, .6);
}

#appToast {
  border-radius: 12px !important;
  backdrop-filter: blur(12px);
}

#appToast .toast-body {
  font-size: .9rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-slide.active .slide-tag {
  animation: fadeInUp .7s ease .1s both;
}

.hero-slide.active .slide-title {
  animation: fadeInUp .7s ease .25s both;
}

.hero-slide.active .slide-desc {
  animation: fadeInUp .7s ease .4s both;
}

.hero-slide.active .slide-actions {
  animation: fadeInUp .7s ease .55s both;
}

.hero-slide.active .slide-stats {
  animation: fadeInUp .7s ease .7s both;
}

.hero-slide.active .hero-img-panel {
  animation: fadeInUp .8s ease .3s both;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media(max-width:992px) {
  .hero-img-panel {
    display: none;
  }
}

@media(max-width:768px) {
  .slide-title {
    font-size: 2rem;
  }

  .hero-section {
    height: 85vh;
  }

  .subscribe-card {
    padding: 2rem;
  }

  .subscribe-input-wrap {
    flex-direction: column;
    border-radius: 16px;
  }

  .subscribe-btn {
    border-radius: 12px !important;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-sidebar {
    width: 100%;
  }

  .checkout-modal {
    border-radius: 16px;
  }

  .checkout-body {
    padding: 1rem;
  }

  .co-section {
    padding: 1rem;
  }

  .co-summary-box {
    position: static;
  }

  .slide-stats {
    gap: 1.5rem;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media(max-width:576px) {
  :root {
    --nav-h: 64px;
  }

  .products-section {
    padding: 3.5rem 0;
  }

  .cat-cta-btn {
    padding: 1.25rem .75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .search-input {
    width: 150px;
  }

  .search-input:focus {
    width: 190px;
  }
}