/* ============================================================
   Duravel Parfume — Clean & Simple Stylesheet
   ============================================================ */

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

/* ── Variabel ───────────────────────────────────────────── */
:root {
  --cream: #F8FAFC;
  /* Light cool background */
  --white: #FFFFFF;
  /* Pure white card panels */
  --gold: #2563EB;
  /* Primary elegant blue */
  --gold-light: #60A5FA;
  /* Lighter vibrant blue */
  --dark: #0F172A;
  /* Rich dark slate text */
  --gray: #64748B;
  /* Muted slate text */
  --light: #E2E8F0;
  /* Light borders and elements */
  --border: rgba(37, 99, 235, 0.15);
  /* Soft blue-tinted borders */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --cream: #0F172A;
  /* Deep slate background */
  --white: #1E293B;
  /* Dark slate card panels */
  --gold: #3B82F6;
  /* Bright blue for contrast */
  --gold-light: #93C5FD;
  /* Lighter blue */
  --dark: #F8FAFC;
  /* Light text */
  --gray: #94A3B8;
  /* Muted gray text */
  --light: #334155;
  /* Dark borders and elements */
  --border: rgba(59, 130, 246, 0.18);
  /* Soft blue-tinted borders */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 14px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Typography ─────────────────────────────────────────── */
.font-serif {
  font-family: 'Outfit', sans-serif;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px 0;
  transition: padding 0.3s var(--ease);
}

.navbar.scrolled {
  padding-top: 6px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
  transition: all 0.3s var(--ease);
  gap: 16px;
}

[data-theme="dark"] .navbar-inner {
  background: rgba(15, 23, 42, 0.85);
}

.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  border-color: var(--border);
}

[data-theme="dark"] .navbar.scrolled .navbar-inner {
  background: rgba(15, 23, 42, 0.96);
}

.nav-logo-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon-v2 {
  width: 38px;
  height: 38px;
  background: #2563EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.nav-logo-text-v2 {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-logo-v2:hover .nav-logo-name {
  color: var(--gold);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
}

.nav-logo-sub-old {
  display: block;
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--light);
  padding: 4px 5px;
  border-radius: 999px;
  position: relative;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 7px 18px;
  border-radius: 999px;
  /* NO transition delay — instant feel */
  transition: color 0.15s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--dark);
}

.nav-link.active {
  color: #fff;
}

/* Sliding pill indicator */
.nav-links-slider {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transition: left 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
}

.nav-cart {
  position: relative;
  color: var(--gray);
  font-size: 18px;
  transition: color 0.2s;
}

.nav-cart:hover {
  color: var(--dark);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── User Dropdown Panel (UDP) ──────────────────────────── */
.udp {
  position: relative;
}

/* Trigger button */
.udp-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 30px;
  transition: background 0.2s var(--ease);
  outline: none;
}

.udp-trigger:hover {
  background: rgba(201, 168, 76, 0.08);
}

.udp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.udp-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 640px) {
  .udp-name {
    display: none;
  }
}

.udp-chevron {
  font-size: 10px;
  color: var(--gray);
  transition: transform 0.3s var(--ease);
}

.udp-trigger[aria-expanded="true"] .udp-chevron {
  transform: rotate(180deg);
}

/* Panel container */
.udp-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.1), 0 8px 24px rgba(37, 99, 235, 0.05);
  overflow: hidden;
  z-index: 9999;
  /* Hidden state */
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  transform-origin: top right;
}

.udp-panel.udp-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header section */
.udp-header {
  padding: 4px 6px 0;
}

.udp-header-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s;
}

.udp-header-link:hover {
  background: var(--cream);
}

.udp-header-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.udp-header-info {
  flex: 1;
  min-width: 0;
}

.udp-header-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.udp-header-email {
  font-size: 11px;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.udp-header-arrow {
  font-size: 11px;
  color: var(--gray);
  flex-shrink: 0;
}

/* Stats bar */
.udp-stats {
  display: flex;
  align-items: stretch;
  margin: 6px 10px 2px;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 8px;
  gap: 0;
}

.udp-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.udp-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 2px;
}

.udp-stat-icon--order {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.udp-stat-icon--member {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.udp-stat-icon--nonmember {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

.udp-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

/* Member = emas, Non-Member = abu-abu muted */
.udp-stat-member {
  color: var(--gold) !important;
}

.udp-stat-nonmember {
  color: var(--gray) !important;
  font-size: 11px !important;
}

.udp-stat-lbl {
  font-size: 10px;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.udp-stat-divider {
  width: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* Group sections */
.udp-group {
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.udp-group-hdr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.udp-group-hdr:hover {
  color: var(--gold);
}

.udp-group-icon {
  font-size: 10px;
  color: var(--gray);
  transition: transform 0.25s var(--ease);
}

.udp-group-hdr.udp-collapsed .udp-group-icon {
  transform: rotate(180deg);
}

.udp-group-body {
  overflow: hidden;
  max-height: 300px;
  transition: max-height 0.28s var(--ease), opacity 0.22s;
  opacity: 1;
}

.udp-group-body.udp-hidden {
  max-height: 0;
  opacity: 0;
}

/* Menu items */
.udp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  font-size: 13.5px;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}

.udp-item:hover {
  background: var(--cream);
  color: var(--dark);
}

.udp-item-icon {
  width: 18px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.udp-item:hover .udp-item-icon {
  color: var(--gold);
}

/* Footer: logout */
.udp-footer {
  border-top: 1px solid var(--border);
  padding: 6px 10px 8px;
  margin-top: 4px;
}

.udp-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #ef4444;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 0.15s;
}

.udp-logout:hover {
  background: rgba(239, 68, 68, 0.08);
}

.udp-logout i {
  font-size: 13px;
}

/* ── Tombol ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border-radius: 999px;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, #1D4ED8, #2563EB, #60A5FA);
  color: #fff;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #2563EB, #60A5FA, #93C5FD);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-img-main {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  margin-left: auto;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
  border: 8px solid white;
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-img-badge .badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-img-badge .badge-value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

/* ── Section ────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

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

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

/* ── Produk Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.03);
}

.product-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

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

/* Wishlist Button on Product Cards */
.product-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  font-size: 18px;
  transition: color 0.2s, transform 0.2s;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.product-wishlist-btn:hover {
  color: #ffffff;
  transform: scale(1.15);
}

.product-wishlist-btn.active {
  color: #e53935;
  transform: scale(1.1);
}

.product-wishlist-btn.active i {
  font-size: 18px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.product-info {
  padding: 20px;
}

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

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.stars {
  color: var(--gold);
  font-size: 12px;
}

.stars .empty {
  color: rgba(37, 99, 235, 0.2);
}

.product-rating-text {
  font-size: 11px;
  color: var(--gray);
}

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

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.product-size {
  font-size: 11px;
  color: var(--gray);
}

/* ── About ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  border: 8px solid white;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
}

.about-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}

.divider-gold {
  height: 2px;
  width: 40px;
  background: var(--gold);
  margin: 12px 0 20px;
}

/* ── Input ──────────────────────────────────────────────── */
.input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 12px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s var(--ease);
  border-radius: 999px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input:focus {
  border-color: var(--gold);
}

.input::placeholder {
  color: #aaa;
}

.input option {
  background: #fff;
  color: var(--dark);
}

.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

/* ── User Menu (nav dropdown) ────────────────────────────── */
.user-dropdown {
  position: relative;
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}

.user-dropdown-btn:hover {
  color: var(--dark);
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
  display: block;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--gray);
  transition: background 0.15s, color 0.15s;
}

.user-dropdown-item:hover {
  background: var(--cream);
  color: var(--dark);
}

.user-dropdown-item.danger {
  color: #e53e3e;
}

.user-dropdown-item.danger:hover {
  background: rgba(229, 62, 62, 0.15);
  color: #f56565;
}

.user-dropdown-divider {
  height: 1px;
  background: var(--border);
}

/* ── Mobile Nav ─────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--gray);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--dark);
}

/* ── Toast ──────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 13px;
  min-width: 260px;
  border-radius: 6px;
  animation: slideInRight 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.toast.success {
  border-left: 3px solid #48bb78;
}

.toast.error {
  border-left: 3px solid #fc8181;
}

.toast.info {
  border-left: 3px solid var(--gold);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

/* ── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ── Reveal on Scroll ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

/* ── Admin ──────────────────────────────────────────────── */
.admin-sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--border);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  overflow-y: auto;
}

.admin-main {
  margin-left: 240px;
  min-height: 100vh;
  background: var(--cream);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  border-left: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: var(--gold);
  background: rgba(37, 99, 235, 0.05);
  border-left-color: var(--gold);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: var(--gold);
}

/* ── Card (Generic) ─────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Flash Message ──────────────────────────────────────── */
.flash-success {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #2f855a;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.flash-error {
  background: rgba(252, 129, 129, 0.1);
  border: 1px solid rgba(252, 129, 129, 0.3);
  color: #c53030;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  border-radius: 4px;
}

/* ── Note Pill ──────────────────────────────────────────── */
.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--gold);
  font-size: 12px;
  border-radius: 20px;
}

/* ── Progress Bar ───────────────────────────────────────── */
.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1s var(--ease);
}

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

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

::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #0F172A;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all 0.2s;
}

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

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
  }

  .hero-img-main {
    max-width: 100%;
    height: 320px;
    margin: 0 auto;
  }

  .hero-img-badge {
    left: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-features {
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

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

  .admin-main {
    margin-left: 0;
  }
}

/* ── Compatibility Styles for Dark-to-Light Theme transition ── */
.card-luxury,
.glass {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  color: var(--dark) !important;
}

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

.input-luxury {
  width: 100%;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  color: var(--dark) !important;
  padding: 11px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 12px;
}

.input-luxury:focus {
  border-color: var(--gold) !important;
}

.input-luxury::placeholder {
  color: #aaa !important;
}

/* ── Mobile Bottom Navigation Bar ───────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
  height: 62px;
}

.bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 16px;
  color: rgba(100, 116, 139, 0.7);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  flex: 1;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.bottom-nav-item i {
  font-size: 18px;
  transition: transform 0.2s;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--gold);
}

.bottom-nav-item.active i {
  transform: translateY(-1px);
}

.bottom-nav-item .bottom-nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 16px);
  background: var(--gold);
  color: #000;
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Ripple effect on tap */
.bottom-nav-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.bottom-nav-item:active::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    align-items: center;
  }

  /* Beri ruang agar konten tidak tertutup bottom nav */
  body {
    padding-bottom: 62px;
  }

  /* Sembunyikan hamburger & mobile dropdown lama */
  .hamburger {
    display: none !important;
  }

  #mobile-menu {
    display: none !important;
  }

  /* Toast naik sedikit di mobile */
  #toast-container {
    bottom: 80px;
  }

  /* WA float naik di mobile */
  .wa-float {
    bottom: 76px;
  }
}

/* ── Theme Mode Toggle Button & Keyframes ───────────────── */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  outline: none;
}

.theme-toggle-btn:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: scale(1.08);
}

.theme-toggle-btn .theme-sun-icon {
  display: none;
}

.theme-toggle-btn .theme-moon-icon {
  display: none;
}

[data-theme="light"] .theme-toggle-btn .theme-moon-icon {
  display: block;
  animation: rotateIn 0.5s var(--ease) forwards;
}

[data-theme="dark"] .theme-toggle-btn .theme-sun-icon {
  display: block;
  animation: rotateIn 0.5s var(--ease) forwards;
}

@keyframes rotateIn {
  from {
    transform: rotate(-45deg) scale(0.5);
    opacity: 0;
  }

  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* ── Dark Mode Element Overrides ────────────────────────── */
[data-theme="dark"] .navbar .navbar-inner {
  background: rgba(30, 41, 59, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
}

[data-theme="dark"] .navbar.scrolled .navbar-inner {
  background: rgba(30, 41, 59, 0.95) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .bottom-nav {
  background: rgba(15, 23, 42, 0.98) !important;
  border-top: 1px solid rgba(59, 130, 246, 0.15) !important;
}

[data-theme="dark"] .bottom-nav-item {
  color: rgba(148, 163, 184, 0.7) !important;
}

[data-theme="dark"] .bottom-nav-item:hover,
[data-theme="dark"] .bottom-nav-item.active {
  color: var(--gold) !important;
}

[data-theme="light"] .site-footer {
  background: #F4EFEB !important;
  border-top: 1px solid var(--border) !important;
  color: rgba(26, 26, 26, 0.7) !important;
}

[data-theme="light"] .footer-logo-text {
  color: var(--dark) !important;
}

[data-theme="light"] .footer-desc {
  color: rgba(26, 26, 26, 0.6) !important;
}

[data-theme="light"] .footer-social a {
  border: 1px solid rgba(163, 128, 41, 0.2) !important;
  color: rgba(26, 26, 26, 0.6) !important;
}

[data-theme="light"] .footer-social a:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

[data-theme="light"] .footer-links a {
  color: rgba(26, 26, 26, 0.6) !important;
}

[data-theme="light"] .footer-links a:hover {
  color: var(--dark) !important;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(163, 128, 41, 0.15) !important;
}

[data-theme="light"] .footer-copy {
  color: rgba(26, 26, 26, 0.45) !important;
}

[data-theme="light"] .hero-img-badge {
  background: var(--white) !important;
}

[data-theme="light"] .user-dropdown-menu {
  background: var(--white) !important;
}

[data-theme="light"] .user-dropdown-item:hover {
  background: var(--cream) !important;
}

[data-theme="light"] .toast {
  background: var(--white) !important;
}

[data-theme="light"] ::-webkit-scrollbar-track {
  background: var(--cream) !important;
}

[data-theme="light"] .admin-sidebar {
  border-right: 1px solid var(--border) !important;
}

[data-theme="light"] .admin-sidebar div {
  border-color: var(--border) !important;
}

[data-theme="light"] .admin-sidebar .absolute {
  border-color: var(--border) !important;
}

[data-theme="light"] .admin-main .sticky {
  background: rgba(251, 249, 246, 0.95) !important;
  border-bottom: 1px solid var(--border) !important;
}

[data-theme="light"] .admin-main #admin-notif-dropdown {
  background: var(--white) !important;
  border-color: var(--border) !important;
}

[data-theme="light"] .admin-main #admin-notif-dropdown div {
  border-color: var(--border) !important;
}

[data-theme="light"] .admin-main #admin-notif-list a {
  border-color: var(--border) !important;
}

[data-theme="light"] .admin-main #admin-notif-list a:hover {
  background: var(--cream) !important;
}

/* ── Light Mode Core Utility Overrides (Smart CSS Interception) ── */
[data-theme="light"] h1.text-white,
[data-theme="light"] h2.text-white,
[data-theme="light"] h3.text-white,
[data-theme="light"] h4.text-white,
[data-theme="light"] h5.text-white,
[data-theme="light"] h6.text-white,
[data-theme="light"] p.text-white,
[data-theme="light"] span.text-white,
[data-theme="light"] td.text-white,
[data-theme="light"] th.text-white,
[data-theme="light"] div.text-white,
[data-theme="light"] label.text-white,
[data-theme="light"] a.text-white,
[data-theme="light"] i.text-white,
[data-theme="light"] input.text-white,
[data-theme="light"] textarea.text-white,
[data-theme="light"] select.text-white,
[data-theme="light"] .text-white {
  color: var(--dark) !important;
}

/* Overrides for inputs and select boxes with hardcoded background styles */
[data-theme="light"] input[class*="bg-white/5"],
[data-theme="light"] textarea[class*="bg-white/5"],
[data-theme="light"] select[class*="bg-white/5"],
[data-theme="light"] input[class*="bg-zinc-950"],
[data-theme="light"] textarea[class*="bg-zinc-950"],
[data-theme="light"] select[class*="bg-zinc-950"],
[data-theme="light"] input.input-luxury,
[data-theme="light"] textarea.input-luxury,
[data-theme="light"] select.input-luxury {
  background: var(--white) !important;
  border-color: var(--border) !important;
  color: var(--dark) !important;
}

[data-theme="light"] input[class*="bg-white/5"]::placeholder,
[data-theme="light"] textarea[class*="bg-white/5"]::placeholder,
[data-theme="light"] input[class*="bg-zinc-950"]::placeholder,
[data-theme="light"] textarea[class*="bg-zinc-950"]::placeholder {
  color: var(--gray) !important;
  opacity: 0.6 !important;
}

/* Hover and focus states */
[data-theme="light"] input[class*="bg-white/5"]:focus,
[data-theme="light"] textarea[class*="bg-white/5"]:focus,
[data-theme="light"] select[class*="bg-white/5"]:focus,
[data-theme="light"] input[class*="bg-zinc-950"]:focus,
[data-theme="light"] textarea[class*="bg-zinc-950"]:focus,
[data-theme="light"] select[class*="bg-zinc-950"]:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}

[data-theme="light"] .text-dim,
[data-theme="light"] .text-dim\/50,
[data-theme="light"] [class*="text-dim"] {
  color: var(--gray) !important;
}

[data-theme="light"] div[class*="divide-y"]>* {
  border-color: var(--border) !important;
}

[data-theme="light"] table thead tr {
  border-color: var(--border) !important;
}

[data-theme="light"] table tbody tr {
  border-color: var(--border) !important;
}

/* ── Wishlist Confirm Modal ──────────────────────────────── */
.wishlist-confirm-box {
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  animation: confirmPop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirmPop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(12px);
  }

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

.wishlist-confirm-icon {
  font-size: 20px;
  color: #ef4444;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin: 0 auto 18px;
}

.wishlist-confirm-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.wishlist-confirm-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  line-height: 1.6;
}

.wishlist-confirm-actions {
  display: flex;
  gap: 10px;
}

.wishlist-btn-cancel {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.wishlist-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.wishlist-btn-ok {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.wishlist-btn-ok:hover {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
  transform: translateY(-1px);
}

/* ── Wishlist Modal Item Cards ───────────────────────────── */
.wishlist-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s;
}

.wishlist-item-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
}

.wishlist-item-img-wrap {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.wishlist-item-card:hover .wishlist-item-img-wrap img {
  transform: scale(1.06);
}

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

.wishlist-item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f0ece4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s;
}

.wishlist-item-name:hover {
  color: var(--gold);
}

.wishlist-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.wishlist-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

.wishlist-stock-badge {
  display: inline-block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 4px;
  padding: 2px 6px;
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.wishlist-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.wishlist-cart-btn:hover {
  background: #e8c84a;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

.wishlist-del-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.08);
  color: rgba(239, 68, 68, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.wishlist-del-btn:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: scale(1.08);
}

/* ══════════════════════════════════════════════════════════════
   V2 REDESIGN — New Layout Components
   ══════════════════════════════════════════════════════════════ */

/* ── Hero V2 ─────────────────────────────────────────────── */
.hero-v2 {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-v2-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-v2-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(37,99,235,0.12);
}
.hero-v2-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-v2-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-v2-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-v2-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}
.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.hero-v2-stat-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-v2-stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}
.hero-v2-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-v2-visual {
  position: relative;
}
.hero-v2-img-container {
  position: relative;
}
.hero-v2-img {
  width: 100%;
  max-width: 480px;
  height: 560px;
  object-fit: cover;
  border-radius: 32px;
  margin-left: auto;
  display: block;
  box-shadow: 0 40px 80px rgba(37,99,235,0.12);
}
.hero-v2-floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  animation: floatCard 4s ease-in-out infinite;
}
.card-top-right {
  top: 20px;
  right: -20px;
}
.card-bottom-left {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}
.hero-v2-rating-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Brand Marquee ───────────────────────────────────────── */
.brand-marquee {
  background: var(--gold);
  overflow: hidden;
  position: relative;
  user-select: none;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  padding: 18px 0;
}
.marquee-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 100%;
  white-space: nowrap;
  animation: marqueeSpin 30s linear infinite;
  will-change: transform;
}
.brand-marquee:hover .marquee-inner {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}
.marquee-sep {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
@keyframes marqueeSpin {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── Section V2 ──────────────────────────────────────────── */
.section-v2 {
  padding: 100px 0;
  background: var(--cream);
}
.section-v2-alt {
  background: var(--white);
}
.container-v2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header-v2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.section-header-v2.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-v2-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  background: rgba(37,99,235,0.06);
  padding: 6px 16px;
  border-radius: 999px;
}
.section-v2-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Product Card V2 ─────────────────────────────────────── */
.products-scroll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}
.product-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.25);
}
.product-card-v2-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light);
}
.product-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card-v2:hover .product-card-v2-img img {
  transform: scale(1.06);
}
.bestseller-badge-v2 {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-wishlist-btn-v2 {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-wishlist-btn-v2:hover {
  color: #e53935;
  transform: scale(1.1);
}
.product-wishlist-btn-v2.active {
  color: #e53935;
  background: #fff;
}
.product-wishlist-btn-v2.active i {
  font-weight: 900;
}
.product-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.product-card-v2-overlay > * {
  pointer-events: auto;
}
.product-card-v2:hover .product-card-v2-overlay {
  opacity: 1;
}
.product-card-v2-body {
  padding: 20px 24px 24px;
}
.product-card-v2-cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.product-card-v2-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 10px;
  line-height: 1.3;
}
.product-card-v2-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.product-card-v2-name a:hover {
  color: var(--gold);
}
.product-card-v2-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--gray);
}
.product-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-v2-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}
.product-card-v2-size {
  font-size: 12px;
  color: var(--gray);
  background: rgba(37,99,235,0.06);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── About Bento Grid ────────────────────────────────────── */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-img-card {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
}
.bento-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.bento-img-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 999px;
}
.bento-text-card {
  grid-column: 2 / 4;
  grid-row: 1;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
}
.bento-text-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.bento-text-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 12px;
}
.bento-feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.bento-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 16px 40px rgba(37,99,235,0.08);
}
.bento-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin: 0 auto 12px;
}
.bento-feature-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.bento-feature-card p {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── Footer V2 ───────────────────────────────────────────── */
.footer-v2 {
  background: #0F172A;
  color: rgba(255,255,255,0.7);
  padding: 0 0 32px;
}
.footer-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-cta-banner {
  background: linear-gradient(135deg, var(--gold), #60A5FA);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(-48px);
  margin-bottom: 16px;
}
.footer-cta-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-cta-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.footer-cta-banner .btn {
  background: #fff;
  color: #1D4ED8;
  flex-shrink: 0;
}
.footer-cta-banner .btn:hover {
  background: #F0F9FF;
  transform: translateY(-2px);
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-v2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-v2-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
}
.footer-v2-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}
.footer-v2-logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
}
.footer-v2-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}
.footer-v2-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-v2-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-v2-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(37,99,235,0.1);
}
.footer-v2-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-v2-links {
  list-style: none;
}
.footer-v2-links li {
  margin-bottom: 14px;
}
.footer-v2-links a,
.footer-v2-links span {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-v2-links a i,
.footer-v2-links span i {
  font-size: 10px;
  color: var(--gold);
}
.footer-v2-links a:hover {
  color: #fff;
}
.footer-v2-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-v2-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-v2-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-v2-pay-badge {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ── V2 Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-v2-content {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
  }
  .hero-v2-img {
    max-width: 100%;
    height: 380px;
    margin: 0 auto;
  }
  .hero-v2-floating-card {
    display: none;
  }
  .hero-v2-stats {
    gap: 16px;
  }
  .hero-v2-stat-value {
    font-size: 22px;
  }
  .products-scroll-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .about-bento {
    grid-template-columns: 1fr;
  }
  .bento-img-card {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }
  .bento-text-card {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .footer-v2-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-header-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Welcome Splash Gate (JNE Inspired) ─────────────────── */
.welcome-gate {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #030712;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.0s ease;
}

.welcome-gate.entered {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.welcome-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #030712;
}

.welcome-bg-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.55) contrast(1.05) saturate(0.9) blur(4px);
}

.welcome-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 20, 0.45) 0%,
    rgba(3, 7, 20, 0.25) 40%,
    rgba(3, 7, 20, 0.25) 60%,
    rgba(3, 7, 20, 0.75) 100%
  );
}

/* Shimmer Sweep Effect */
.welcome-shimmer {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 60%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: welcomeShimmerSweep 12s infinite linear;
}

/* Cinematic Center Content */
.welcome-cinematic-center {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  padding: 0 24px;
  text-align: center;
  z-index: 10;
  position: relative;
}

.welcome-logo-reveal {
  margin-bottom: 24px;
  perspective: 1000px;
}

.welcome-logo-img-big {
  height: 100px;
  width: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 40px rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotateY(-15deg);
  opacity: 0;
}

.welcome-brand-text {
  margin-bottom: 20px;
  text-align: center;
}

.welcome-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 12px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  padding-left: 12px; /* Offset letter-spacing on last char */
}

.welcome-brand-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.welcome-brand-parfume {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 10px;
  color: #60A5FA;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0;
}

.welcome-brand-line {
  height: 1px;
  width: 0;
  background: linear-gradient(to right, transparent, rgba(96, 165, 250, 0.5), transparent);
  margin: 18px auto 0;
  opacity: 0;
}

.welcome-cinematic-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.welcome-cta-btn {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 16px 42px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 
    0 10px 25px rgba(37, 99, 235, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  outline: none;
}

.welcome-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 30px rgba(37, 99, 235, 0.45),
    0 0 15px rgba(96, 165, 250, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.welcome-cta-btn:active {
  transform: translateY(-1px);
}

.welcome-bottom-nav {
  width: 100%;
  max-width: 900px;
  padding: 0 24px 48px;
  z-index: 10;
  position: relative;
  opacity: 0;
}

.welcome-nav-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(10, 15, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.welcome-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 16px 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.welcome-nav-card:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.welcome-nav-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60A5FA;
  font-size: 18px;
}

.welcome-nav-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.welcome-nav-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes welcomeOrbFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
  100% { transform: translateY(10px) scale(0.95); }
}

@keyframes welcomeShimmerSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes wLogoReveal {
  0% { opacity: 0; transform: scale(0.8) rotateY(-30deg); }
  100% { opacity: 1; transform: scale(1) rotateY(0); }
}

@keyframes wLetterPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wFadeUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes wLineExpand {
  0% { width: 0; opacity: 0; }
  100% { width: 180px; opacity: 1; }
}

@media (max-width: 768px) {
  .welcome-nav-card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .welcome-bottom-nav {
    padding-bottom: 24px;
  }
  .welcome-nav-card {
    padding: 12px 16px;
  }
  .welcome-brand-name {
    font-size: 32px;
    letter-spacing: 8px;
  }
}

/* Global Page Transition Overlay — lightweight, no dark flash */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 15000;
  pointer-events: none;
  opacity: 0;                        /* invisible by default — no blink on load */
  transition: opacity 0.18s ease;
  will-change: opacity;
}
.page-transition-overlay.leaving {
  opacity: 1;
  pointer-events: auto;
}
.page-transition-overlay.loaded {
  opacity: 0;
  pointer-events: none;
}

/* View Transitions API — smooth cross-fade (Chrome 111+) */
::view-transition-old(root) {
  animation: vt-out 0.18s ease both;
}
::view-transition-new(root) {
  animation: vt-in 0.18s ease both;
}
@keyframes vt-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes vt-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}