/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #0f0a14;
  color: #f0e8f5;
  overflow-x: hidden;
}

img {
  display: block;
}

/* ── CSS VARIABLES ── */
:root {
  --plum: #2d1a3e;
  --plum-mid: #4a1a42;
  --rose: #c06090;
  --rose-light: #e8a0c8;
  --pink-pale: #f5d5e8;
  --gold: #d4a060;
  --text: #f0e8f5;
  --text-muted: #b090b8;
  --bg: #0f0a14;
  --bg2: #1a1020;
  --card-bg: #1e1228;
  --border: rgba(200, 100, 160, 0.20);
  --grad: linear-gradient(135deg, #e870b0 0%, #c060f0 60%, #806ae0 100%);
}

/* ── UTILITIES ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #f070c0, #a060e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(15, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.logo-v {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--rose-light);
  line-height: 1;
}

.logo-v em {
  font-style: italic;
  color: var(--rose);
}

.logo-text {
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logo-text strong {
  color: var(--text);
  letter-spacing: 0.2em;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--grad) !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.87;
  transform: scale(1.03) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─────────────────────────────── HERO ─── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, #4a1060 0%, #1a0a28 55%, #0f0a14 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c06090 0%, transparent 70%);
  top: -150px;
  right: 5%;
  animation-delay: 0s;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6040b0 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 96, 144, 0.15);
  border: 1px solid var(--border);
  color: var(--rose-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tag {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
  background: rgba(255, 255, 255, 0.04);
}

.tag:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(192, 96, 144, 0.12);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--grad);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(192, 96, 144, 0.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(192, 96, 144, 0.5);
}

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--rose);
  background: rgba(192, 96, 144, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* Hero image */
.hero-right {
  position: relative;
}

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

.hero-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-float-card {
  position: absolute;
  background: rgba(30, 18, 40, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card1 {
  top: 30px;
  left: -20px;
  animation-delay: 0s;
}

.card2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 2s;
}

.card-icon {
  font-size: 1.5rem;
}

.card-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.card-sub {
  font-size: 0.7rem;
  color: var(--rose-light);
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-8px);
  }
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  border-radius: 2px;
}

.scroll-indicator p {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ─────────────────────────────── MARQUEE ─── */
.marquee-strip {
  background: var(--grad);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────── SECTION COMMON ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ─────────────────────────────── CATEGORIES ─── */
.categories {
  padding: 100px 0;
  background: var(--bg2);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.cat-card--large {
  grid-column: span 1;
  grid-row: span 2;
}

.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 96, 144, 0.5);
  box-shadow: 0 20px 50px rgba(192, 96, 144, 0.2);
}

.cat-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.cat-card--large .cat-visual {
  height: 260px;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 10, 20, 0.1) 0%, rgba(15, 10, 20, 0.55) 100%);
  pointer-events: none;
}

.cat-icon-wrap {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
}

.cat-card--large .cat-icon-wrap {
  width: 100px;
  height: 100px;
}

.cat-info {
  padding: 18px 20px;
}

.cat-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cat-card--large .cat-info h3 {
  font-size: 1.2rem;
}

.cat-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cat-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-light);
  text-decoration: none;
  transition: color 0.2s;
}

.cat-link:hover {
  color: white;
}

.cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--grad);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────── PRODUCTS ─── */
.collections {
  padding: 100px 0;
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(192, 96, 144, 0.2);
  border-color: rgba(192, 96, 144, 0.4);
}

.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

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

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-badge.new {
  background: linear-gradient(135deg, #50c090, #308060);
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
}

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

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15, 10, 20, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.action-btn:hover {
  background: rgba(192, 96, 144, 0.2);
  border-color: var(--rose);
}

.product-info {
  padding: 18px;
}

.product-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-rating {
  font-size: 0.8rem;
  color: #f0b040;
  margin-bottom: 10px;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

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

.price-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

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

.product-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.color-dot:hover {
  transform: scale(1.3);
  box-shadow: 0 0 0 2px var(--rose);
}

.btn-add-cart {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
}

.btn-add-cart:hover {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(192, 96, 144, 0.3);
}

.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-view-all span {
  transition: transform 0.2s;
}

.btn-view-all:hover {
  border-color: var(--rose);
  background: rgba(192, 96, 144, 0.1);
  color: var(--rose-light);
}

.btn-view-all:hover span {
  transform: translateX(5px);
}

/* ─────────────────────────────── WHY ─── */
.why {
  padding: 100px 0;
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(192, 96, 144, 0.15);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────── DEAL BANNER ─── */
.deal-banner {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, #3a1060 0%, #0f0a14 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.deal-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.deal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.deal-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.deal-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.deal-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.deal-form input:focus {
  border-color: var(--rose);
}

.deal-form input::placeholder {
  color: var(--text-muted);
}

.btn-subscribe {
  background: var(--grad);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-subscribe:hover {
  opacity: 0.87;
  transform: scale(1.03);
}

.deal-fine {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Countdown */
.deal-countdown {
  margin-bottom: 36px;
}

.countdown-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  min-width: 80px;
}

.cd-box span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.cd-box small {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.cd-colon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
}

.deal-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.perk::before {
  content: '';
  display: none;
}

/* ─────────────────────────────── TESTIMONIALS ─── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow: hidden;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
}

.testi-stars {
  color: #f0b040;
  font-size: 1rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testi-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--rose);
}

/* ─────────────────────────────── FOOTER ─── */
.footer {
  background: #080510;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(192, 96, 144, 0.1);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.pay-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ─────────────────────────────── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: linear-gradient(135deg, #2d1a3e, #4a1a42);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ─────────────────────────────── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    order: -1;
  }

  .hero-img {
    max-height: 320px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .deal-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-float-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testi-track {
    grid-template-columns: 1fr;
  }

  .cat-card--large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .deal-form {
    flex-direction: column;
  }

  .countdown-boxes {
    gap: 6px;
  }

  .cd-box {
    padding: 14px 16px;
    min-width: 60px;
  }

  .cd-box span {
    font-size: 1.6rem;
  }
  /* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative;
  padding: 160px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, #4a1060 0%, #1a0a28 55%, #0f0a14 100%);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(192, 96, 144, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--rose-light);
}

.breadcrumb span:last-child {
  color: var(--text);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.page-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── SHOP LAYOUT ── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 100px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.clear-filters {
  background: none;
  border: none;
  color: var(--rose-light);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.clear-filters:hover {
  color: var(--text);
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.filter-opt:hover {
  color: var(--text);
}

.filter-opt input[type="checkbox"],
.filter-opt input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--rose);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-opt span:first-of-type {
  flex: 1;
}

.opt-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Price range */
.price-range {
  padding-top: 4px;
}

.range-slider {
  width: 100%;
  accent-color: var(--rose);
  cursor: pointer;
  margin-bottom: 10px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

#priceVal {
  color: var(--rose-light);
  font-weight: 600;
}

/* Size grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover {
  border-color: var(--rose);
  color: var(--text);
}

.size-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

/* Color filter */
.color-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-filter-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.color-filter-dot:hover {
  transform: scale(1.12);
}

.color-filter-dot.active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--rose);
}

.rating-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── PRODUCT AREA / TOOLBAR ── */
.product-area {
  min-width: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.results-count {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.results-count span {
  color: var(--text);
  font-weight: 700;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sort-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

.view-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
}

.view-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.view-btn.active {
  background: var(--grad);
  color: white;
}

/* Active filter tags */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.active-filters:empty {
  display: none;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 96, 144, 0.15);
  border: 1px solid var(--border);
  color: var(--rose-light);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.filter-tag button {
  background: none;
  border: none;
  color: var(--rose-light);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

/* ── PRODUCTS GRID (shop page cards) ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products-grid.list-view {
  grid-template-columns: 1fr;
}

.p-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192, 96, 144, 0.2);
  border-color: rgba(192, 96, 144, 0.4);
}

.p-card.featured {
  border-color: rgba(212, 160, 96, 0.5);
}

.p-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.p-card:hover .p-img {
  transform: scale(1.06);
}

.p-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-badge {
  background: var(--grad);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.p-badge.new {
  background: linear-gradient(135deg, #50c090, #308060);
}

.p-badge.sale {
  background: linear-gradient(135deg, #e05070, #b03050);
}

.p-badge.set {
  background: linear-gradient(135deg, #d4a060, #a87838);
}

.p-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
}

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

.p-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15, 10, 20, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.p-action-btn:hover {
  background: rgba(192, 96, 144, 0.25);
  border-color: var(--rose);
}

.p-info {
  padding: 18px;
}

.p-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.p-rating {
  font-size: 0.8rem;
  color: #f0b040;
  margin-bottom: 10px;
}

.p-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.p-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.p-price-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.p-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.p-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.p-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.p-dot:hover {
  transform: scale(1.3);
  box-shadow: 0 0 0 2px var(--rose);
}

.p-cart-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
}

.p-cart-btn:hover {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(192, 96, 144, 0.3);
}

/* List view row layout */
.products-grid.list-view .p-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.products-grid.list-view .p-img-wrap {
  height: 100%;
}

.products-grid.list-view .p-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── NO RESULTS ── */
.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results.hidden {
  display: none;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.no-results button {
  background: none;
  border: none;
  color: var(--rose-light);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--rose);
  color: var(--text);
}

.page-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.page-dots {
  color: var(--text-muted);
  padding: 0 4px;
}

/* ── QUICK VIEW MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 16, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(880px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.quick-view-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15, 10, 20, 0.8);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(192, 96, 144, 0.25);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px 0 0 24px;
}

.modal-img-thumbs {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.modal-info {
  padding: 36px 32px;
}

.modal-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.modal-rating {
  font-size: 0.85rem;
  color: #f0b040;
  margin-bottom: 14px;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.modal-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.modal-colors {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.msz {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.msz:hover {
  border-color: var(--rose);
  color: var(--text);
}

.msz.active {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.modal-qty-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  width: 20px;
}

.modal-cart-btn {
  flex: 1;
  background: var(--grad);
  border: none;
  color: white;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.modal-cart-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.modal-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── FOOTER STRIP ── */
.footer-strip {
  background: #080510;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.footer-strip-inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.strip-home {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 84vw;
    border-radius: 0;
    z-index: 1500;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .filter-toggle-btn {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-img {
    border-radius: 24px 24px 0 0;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid.list-view .p-card {
    grid-template-columns: 1fr;
  }

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

  .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .modal-info {
    padding: 24px 20px;
  }
}