/* Premium Color Variables & Theme Overrides */
/* ☀️ LIGHT MODE (default) */
:root {
  --primary-gold: #c5a059;
  --luxury-dark: #1a1a1a;
  --light-bg: #f5f2ec;
  --warm-taupe: #7a6f5f;
  --bg-primary: #f5f2ec;
  --bg-surface: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #7a6f5f;
  --brand-gold: #c5a059;
  --header-bg: #1a1a1a;
  --header-text: #f5f2ec;
  --border-color: rgba(122, 111, 95, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --overlay-bg: rgba(255, 255, 255, 0.98);
  --card-hover-shadow: rgba(90, 50, 60, 0.05);
  --input-bg: transparent;
  --drawer-bg: #ffffff;
  --muted-text: #666;
  --delete-icon: #ccc;
}

/* 🌙 DARK MODE */
[data-theme="dark"] {
  --primary-gold: #d4af61;
  --luxury-dark: #0d0d0d;
  --light-bg: #0d0d0d;
  --warm-taupe: #9a8e7e;
  --bg-primary: #0d0d0d;
  --bg-surface: #1a1815;
  --text-primary: #f0e6d8;
  --text-secondary: #9a8e7e;
  --brand-gold: #d4af61;
  --header-bg: #111110;
  --header-text: #f0e6d8;
  --border-color: rgba(212, 175, 97, 0.12);
  --shadow-color: rgba(0, 0, 0, 0.4);
  --overlay-bg: rgba(13, 13, 13, 0.98);
  --card-hover-shadow: rgba(212, 175, 97, 0.08);
  --input-bg: #1a1815;
  --drawer-bg: #141210;
  --muted-text: #9a8e7e;
  --delete-icon: #666;
}

/* 🌙 AUTOMATIC DARK MODE (SYSTEM PREFERENCE) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --primary-gold: #d4af61;
    --luxury-dark: #0d0d0d;
    --light-bg: #0d0d0d;
    --warm-taupe: #9a8e7e;
    --bg-primary: #0d0d0d;
    --bg-surface: #1a1815;
    --text-primary: #f0e6d8;
    --text-secondary: #9a8e7e;
    --brand-gold: #d4af61;
    --header-bg: #111110;
    --header-text: #f0e6d8;
    --border-color: rgba(212, 175, 97, 0.12);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --overlay-bg: rgba(13, 13, 13, 0.98);
    --card-hover-shadow: rgba(212, 175, 97, 0.08);
    --input-bg: #1a1815;
    --drawer-bg: #141210;
    --muted-text: #9a8e7e;
    --delete-icon: #666;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
html,
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg-primary);
  color: var(--text-secondary);
  width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* All tappable elements must be ≥ 44×44 and feel snappy */
a, button, input[type="submit"], input[type="button"], input[type="reset"],
[role="button"], .variant-pill, .quiz-option, .qty-btn, .kit-size,
.theme-toggle, .menu-toggle, .nav-icons a, .nav-icons i,
.drawer-links a, .pd-thumb, .add-to-cart-btn, .btn-primary, .checkout-btn,
.account-tabs a, .category-card, .payment-opt {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  min-width: 44px;
}
/* Exclude inline text links and swiper bullets from min-size rule */
.nav-links a, .footer-col a, .footer-col p a, .product-card a,
.product-img a, .review-card a, .extra-block a, .pd-notes a, .pd-specs a,
.skip-link, .breadcrumb a, .cart-row a, summary, .faq-item summary,
.swiper-pagination-bullet {
  min-height: 0 !important;
  min-width: 0 !important;
}
h1,
h2,
h3,
h4,
.nav-link {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

/* Header & Mobile Nav Overhaul */
header {
  padding: 12px 20px;
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  width: 100%;
  transition: background 0.4s ease;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--header-text);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--header-text);
  transition: 0.2s;
}
.nav-links li a:hover {
  color: var(--brand-gold);
}
.nav-links li a:hover::after {
  width: 100%;
}

/* Text Logo — Simple Clean */
.animated-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--brand-gold);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.animated-logo-sub {
  display: none;
}

.nav-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.nav-icons i {
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--header-text);
  position: relative;
}
.nav-icons i:hover {
  color: var(--brand-gold);
}

@media (max-width: 1023px) {
  header {
    height: 60px;
    padding: 0 16px;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1;
    font-size: 1.3rem;
  }
  .nav-links {
    display: none !important;
  }
  .logo {
    display: none !important;
  }
  .nav-icons {
    order: 3;
    gap: 0.8rem !important;
    z-index: 3;
  }
  .nav-icons a, .nav-icons i, .nav-icons button {
    min-width: 32px !important;
    min-height: 32px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
  }
  .nav-icons i {
    font-size: 1.1rem !important;
  }
  .theme-toggle {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-user-icon {
    display: none !important;
  }
}

/* Mobile Sidebar Menu (Amazon Style) */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  max-width: 90%;
  height: 100%;
  background: var(--drawer-bg);
  z-index: 2000;
  transition: 0.3s ease;
  box-shadow: 5px 0 15px var(--shadow-color);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  left: 0;
}
.drawer-header {
  background: var(--header-bg);
  color: var(--header-text);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.drawer-links {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.drawer-links a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}
.drawer-links a:hover {
  background: var(--bg-primary);
  color: var(--brand-gold);
}
.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

/* Hero Premium Slider Setup */
.hero-swiper {
  width: 100%;
  height: calc(100vh - 70px);
  background: #11100f;
}
@media (max-width: 850px) {
  .hero-swiper {
    height: 75vh;
  }
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Hero <img> for LCP optimization (replaces pure background-image slides) */
.hero-slide img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Slides - kept for fallback only; hero <img> preferred for LCP */
.slide-1 { background-image: url("../assets/images/bg_image_1.png"); }
.slide-2 { background-image: url("../assets/images/bg_image_2.png"); }
.slide-3 { background-image: url("../assets/images/bg_image_3.png"); }
.slide-4 { background-image: url("../assets/images/bg_image_4.png"); }
.slide-5 { background-image: url("../assets/images/bg_image_5.png"); }
.slide-6 { background-image: url("../assets/images/bg_image_6.png"); }
.slide-7 { background-image: url("../assets/images/bg_image_7.png"); }
.slide-8 { background-image: url("../assets/images/bg_image_8.png"); }

.hero-text {
  max-width: 90%;
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
.hero-text .tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 0.95rem; }
  .btn-primary { padding: 12px 30px; font-size: 0.8rem; }
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--luxury-dark);
  border: none;
  padding: 16px 45px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 2px;
}
.btn-primary:hover {
  background: white;
  color: var(--luxury-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Products Grid */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 50px 0 10px;
}
.section-sub {
  text-align: center;
  color: var(--warm-taupe);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 25px 0;
}
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 40px;
    margin: 30px 0;
  }
  .section-title {
    font-size: 2.8rem;
  }
}

.product-card {
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  background: var(--bg-surface);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.product-img {
  background: transparent;
  padding: 0;
  border-radius: 12px;
  margin-bottom: 15px;
  border: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card:hover .product-img {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--card-hover-shadow);
}
.product-img i { font-size: 1.2rem; color: var(--warm-taupe); }
.product-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: unset;
  object-position: unset;
}
@media (min-width: 768px) {
  .product-img i { font-size: 1.5rem; }
  .product-card { padding: 16px; border-radius: 20px; }
  .product-img { padding: 0; border-radius: 12px; }
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", serif;
}
.product-desc {
  font-size: 0.75rem;
  color: var(--warm-taupe);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.add-to-cart-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}
.add-to-cart-btn:hover {
  background: var(--brand-gold);
  color: var(--luxury-dark);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  z-index: 3000;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.search-overlay.active {
  display: flex;
}
.search-input-wrapper {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-input-wrapper input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--text-primary);
  padding: 12px;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  outline: none;
  background: var(--input-bg);
  color: var(--text-primary);
}
.close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--drawer-bg);
  z-index: 2500;
  transition: 0.3s ease;
  box-shadow: -5px 0 15px var(--shadow-color);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: center;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 0.85rem;
  margin-bottom: 3px;
}
.cart-item-info p {
  font-size: 0.75rem;
  color: var(--warm-taupe);
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 15px;
}
.checkout-btn {
  width: 100%;
  background: var(--brand-gold);
  color: var(--luxury-dark);
  border: none;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: 0.3s;
}
.checkout-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Modern Luxury Login / Profile Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: var(--bg-surface);
  background: linear-gradient(165deg, var(--bg-surface) 0%, rgba(25, 23, 20, 0.98) 100%);
  padding: 36px 30px 32px;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 97, 0.12);
  position: relative;
  text-align: center;
  color: var(--text-primary);
  animation: rkauraModalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-theme="dark"] .modal-content {
  background: linear-gradient(165deg, #1d1a16 0%, #11100e 100%);
  border: 1px solid rgba(212, 175, 97, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 97, 0.06);
}

@keyframes rkauraModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content .close-search,
.modal-content #closeLogin {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(122, 111, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  line-height: 1;
}

.modal-content .close-search:hover,
.modal-content #closeLogin:hover {
  background: rgba(212, 175, 97, 0.2);
  color: var(--brand-gold);
  border-color: rgba(212, 175, 97, 0.3);
  transform: rotate(90deg);
}

.modal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--brand-gold);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.modal-content input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-content input:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 97, 0.15);
}

.modal-content .btn-primary {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Luxury Profile Card Component Inside Modal */
.rkaura-profile-card {
  padding: 8px 4px 4px;
  text-align: center;
}

.rkaura-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(212, 175, 97, 0.1);
  border: 1px solid rgba(212, 175, 97, 0.25);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 18px;
}

.rkaura-avatar-container {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
}

.rkaura-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), rgba(212, 175, 97, 0.2));
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rkauraPulseAura 3s infinite ease-in-out;
}

@keyframes rkauraPulseAura {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.rkaura-avatar-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.rkaura-avatar-fallback {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af61 0%, #9e7d3b 100%);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rkaura-user-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.rkaura-user-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(122, 111, 95, 0.08);
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 22px;
}

.rkaura-user-email i {
  color: #2ecc71;
  font-size: 0.8rem;
}

/* Quick Navigation Links */
.rkaura-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  padding: 0 4px;
}

.rkaura-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  background: rgba(122, 111, 95, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.rkaura-quick-btn i {
  font-size: 1.15rem;
  color: var(--brand-gold);
  transition: transform 0.2s ease;
}

.rkaura-quick-btn:hover {
  background: rgba(212, 175, 97, 0.15);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

.rkaura-quick-btn:hover i {
  transform: scale(1.15);
}

/* Action Buttons Row */
.rkaura-actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rkaura-btn-continue {
  flex: 1.4;
  background: var(--brand-gold);
  color: #0d0d0d;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 97, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rkaura-btn-continue:hover {
  background: #e5c378;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 97, 0.35);
}

.rkaura-btn-logout {
  flex: 1;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(231, 76, 60, 0.4);
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rkaura-btn-logout:hover {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border-color: #e74c3c;
  transform: translateY(-1px);
}

/* Wishlist Count & Icon */
.wishlist-count,
.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--brand-gold);
  color: white;
  font-size: 0.6rem;
  padding: 1px 5px;
  border-radius: 50%;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
#wishlistIcon.active {
  color: #d9534f;
}



/* Quiz Modal Styling */
.quiz-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 4000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.quiz-modal.active {
  display: flex;
}
.quiz-step {
  display: none;
  max-width: 500px;
}
.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s;
}
.quiz-option {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 15px 25px;
  margin: 10px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 5px;
  font-weight: 500;
  color: var(--text-primary);
}
.quiz-option:hover {
  border-color: var(--brand-gold);
  background: var(--bg-primary);
}

/* Testimonials Section */
.testimonials {
  background: var(--header-bg);
  padding: 80px 0;
  margin-top: 60px;
}
.testimonial-card {
  text-align: center;
  padding: 30px;
  font-style: italic;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--light-bg);
  margin-bottom: 15px;
}
.testimonial-card h4 {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Product Badges */
.badge-stack {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.badge {
  display: block;
  padding: 3px 8px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
  border-radius: 2px;
  white-space: nowrap;
  line-height: 1.4;
}
.badge-trending {
  background: var(--brand-gold);
  color: #fff;
}
.badge-new {
  background: var(--luxury-dark);
  color: #fff;
}
.badge-sale {
  background: #d9534f;
  color: #fff;
}
.badge-vegan {
  background: #2e7d32;
  color: #fff;
}
.badge-cruelty-free {
  background: #558b2f;
  color: #fff;
}

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}
.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto;
  gap: 10px;
  padding: 0 20px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  outline: none;
  background: var(--input-bg);
  color: var(--text-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  background: var(--header-bg);
  color: var(--text-secondary);
  padding: 50px 0 30px;
  margin-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.footer-col h4 {
  color: #f0e6df;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.footer-col p,
.footer-col a {
  color: var(--warm-taupe);
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.85rem;
}
.social i {
  font-size: 1.2rem;
  margin-right: 15px;
  color: var(--brand-gold);
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent !important;
  border: none !important;
  color: var(--header-text);
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: none !important;
}
.theme-toggle:hover {
  border-color: transparent;
  color: var(--brand-gold);
  transform: rotate(30deg);
}

/* Section title color */
.section-title {
  color: var(--text-primary);
}
.section-sub {
  color: var(--text-secondary);
}

/* Smooth transitions for theme change */
.product-card, .product-img, .cart-drawer, .modal-content,
.mobile-drawer, .quiz-option, .newsletter-form input,
.search-overlay, footer, header, .testimonials {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ============ PHP STORE ADDITIONS ============ */

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin: 30px 0 50px;
}
.category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px 15px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: 0.3s;
}
.category-card:hover { border-color: var(--brand-gold); transform: translateY(-4px); }
.category-card i { font-size: 2rem; color: var(--brand-gold); margin-bottom: 12px; display: block; }
.category-card h3 { font-size: 1rem; }

/* Shop filters */
.shop-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.shop-filters input, .shop-filters select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: inherit;
  min-width: 160px;
}
.shop-filters input { flex: 1; max-width: 320px; }

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 850px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 50px; }
}
.pd-main-img img {
  width: 100%;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  aspect-ratio: 1;
  object-fit: cover;
}
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumb {
  width: 70px; height: 70px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 2px solid var(--border-color);
  transition: 0.2s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--brand-gold); }
.pd-price { font-size: 1.8rem; font-weight: 700; color: var(--text-primary); margin: 15px 0; }
.pd-variants { display: flex; gap: 10px; flex-wrap: wrap; margin: 15px 0; }
.variant-pill {
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: 0.2s;
}
.variant-pill:has(input:checked) { border-color: var(--brand-gold); background: var(--brand-gold); color: var(--luxury-dark); font-weight: 600; }
.variant-pill.oos { opacity: 0.45; cursor: not-allowed; }
.variant-pill input { display: none; }
.pd-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 25px 0;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
.pd-specs .spec strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-text); margin-bottom: 4px; }
.pd-specs .spec span { font-size: 0.9rem; color: var(--text-primary); }
.pd-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.pd-notes .note {
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
}
.pd-notes .note strong { color: var(--brand-gold); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; }
.pd-notes .note p { margin-top: 8px; font-size: 0.9rem; color: var(--text-secondary); }

/* Extra info blocks */
.pd-extra { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
.extra-block { padding: 25px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; }
.extra-block h3 { margin-bottom: 12px; color: var(--brand-gold); }
.extra-block p, .extra-block li { color: var(--text-secondary); line-height: 1.8; font-size: 0.92rem; }
.extra-block ul { list-style: none; }

/* Reviews */
.review-card {
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
}
.review-card p { margin: 8px 0; color: var(--text-secondary); }
.review-card small { color: var(--muted-text); }
.admin-reply-block {
  margin-top: 12px;
  padding: 12px 15px;
  border-left: 3px solid var(--brand-gold);
  background: rgba(197,160,89,0.06);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}
.admin-reply-block strong { color: var(--brand-gold); font-size: 0.85rem; }
.admin-reply-block p { margin: 6px 0; color: var(--text-secondary); }
.admin-reply-block small { color: var(--muted-text); font-size: 0.75rem; }
.review-form { margin-top: 25px; padding: 25px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; }
.review-form input, .review-form select, .review-form textarea {
  width: 100%; padding: 12px; margin-bottom: 12px;
  border: 1px solid var(--border-color); border-radius: 6px;
  background: var(--input-bg); color: var(--text-primary);
  font-family: inherit;
}

/* Cart page */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 850px) { .cart-layout { grid-template-columns: 2fr 1fr; } }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
}
.cart-row img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-row-info h4 { font-size: 1rem; }
.cart-row-info p { font-size: 0.82rem; color: var(--muted-text); margin-top: 3px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
}
.cart-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; }
.sum-total { border-top: 1px solid var(--border-color); margin-top: 10px; padding-top: 15px; font-weight: 700; font-size: 1.1rem; }

/* Checkout */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid input {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: inherit;
}
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: 0.2s;
}
.payment-opt:has(input:checked) { border-color: var(--brand-gold); }

/* Flash messages */
.flash-ok { background: #d4edda; color: #155724; padding: 12px 18px; border-radius: 8px; margin-bottom: 18px; text-align: center; }
.flash-err { background: #f8d7da; color: #721c24; padding: 12px 18px; border-radius: 8px; margin-bottom: 18px; text-align: center; }

/* Account tabs */
.account-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.account-tabs a {
  padding: 10px 25px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.account-tabs a.active { background: var(--brand-gold); color: var(--luxury-dark); border-color: var(--brand-gold); font-weight: 600; }

/* Data table (storefront reuse) */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th { text-align: left; padding: 10px 12px; color: var(--muted-text); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border-color); }
.data-table td { padding: 12px; border-bottom: 1px solid var(--border-color); }
.table-wrap { overflow-x: auto; }

/* Track order steps */
.track-steps { display: flex; justify-content: space-between; margin: 25px 0; position: relative; }
.track-steps::before { content: ""; position: absolute; top: 8px; left: 5%; right: 5%; height: 2px; background: var(--border-color); }
.track-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; flex: 1; }
.track-step .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--border-color); border: 3px solid var(--bg-surface); }
.track-step.done .dot { background: var(--brand-gold); }
.track-step span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-text); text-align: center; }
.track-step.done span { color: var(--text-primary); font-weight: 600; }

/* Discovery kit */
.kit-selector { display: flex; gap: 15px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }
.kit-size {
  padding: 18px 30px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  background: var(--bg-surface);
  transition: 0.2s;
}
.kit-size:has(input:checked) { border-color: var(--brand-gold); }
.kit-size input { display: none; }
.kit-size strong { display: block; font-size: 1.05rem; color: var(--text-primary); }
.kit-size span { color: var(--brand-gold); font-weight: 700; }
.kit-card { cursor: default; }

/* FAQ */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px 22px;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--text-primary); }
.faq-item p { margin-top: 12px; color: var(--text-secondary); line-height: 1.7; font-size: 0.92rem; }

/* Status pills (storefront) */
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed, .status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ============ MOBILE-FIRST / TOUCH-FRIENDLY ENHANCEMENTS ============ */

/* Theme toggle - bump to semi-tappable size on mobile */
.theme-toggle {
  min-width: 40px;
  min-height: 40px;
}
@media (max-width: 850px) {
  .theme-toggle { min-width: 44px; min-height: 44px; }
}

/* Header tap zones — give nav icons visible touch targets on mobile */
@media (max-width: 850px) {
  .nav-icons {
    gap: 0.4rem;
  }
  .nav-icons a,
  .nav-icons .icon-wrapper,
  .nav-icons .cart-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
  }
  .nav-icons i { font-size: 1.25rem; }
}

/* Menu toggle (hamburger) full tap target */
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Drawer links — large touch targets */
.drawer-links a {
  min-height: 48px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

/* Quiz options: stack full-width on mobile, large tap targets */
@media (max-width: 600px) {
  .quiz-option {
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
    padding: 18px 20px;
    font-size: 1rem;
    text-align: left;
  }
  .quiz-modal { padding: 16px; }
  .quiz-step { max-width: 100%; }
}

/* Variant pills, kit-size, payment options - bigger on mobile */
.variant-pill, .kit-size {
  min-height: 48px;
  padding: 14px 20px;
  font-size: 0.95rem;
}

/* Quantity buttons — bring up to ≥44px tap target with spacing */
.qty-btn {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-controls { display: inline-flex; gap: 10px; align-items: center; }

/* Add to cart / primary buttons: nice padding + full width on mobile */
.add-to-cart-btn, .btn-primary, .checkout-btn {
  min-height: 48px;
  font-size: 0.95rem;
  padding: 14px 24px;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .add-to-cart-btn, .btn-primary, .checkout-btn {
    width: 100%;
    padding: 16px;
  }
  .btn-primary { padding: 16px 28px; font-size: 0.9rem; }
}

/* Form inputs — ≥44px tall, font-size ≥16px to avoid iOS auto-zoom */
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="search"], input[type="number"],
input[type="url"], textarea, select {
  min-height: 48px;
  font-size: 16px;
  font-family: inherit;
}
.shop-filters input, .shop-filters select { min-height: 48px; }
.newsletter-form input { min-height: 48px; font-size: 16px; }
.newsletter-form button { min-height: 48px; }

/* Account tabs: bigger tap targets */
.account-tabs a {
  min-height: 48px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
}

/* Category cards tap target polish */
.category-card {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Track order step labels — bigger on mobile */
.track-step span { font-size: 0.7rem; }
@media (max-width: 600px) {
  .track-step span { font-size: 0.62rem; line-height: 1.3; }
}

/* Hero text: better readability on small phones */
@media (max-width: 600px) {
  .hero-text h1 { font-size: 2rem; line-height: 1.15; }
  .hero-text p { font-size: 0.95rem; line-height: 1.5; }
  .hero-text .tag { font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 14px; }
}

/* Footer tap targets */
.footer-col a { display: inline-block; padding: 4px 0; }
.footer-col.social a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* Section spacing for mobile */
@media (max-width: 600px) {
  .section-title { font-size: 1.8rem; margin: 30px 0 8px; }
  .section-sub { margin-bottom: 25px; }
  .container { padding: 0 16px; }
  .testimonials { padding: 50px 0; }
  footer { padding: 40px 0 20px; }
}

/* Newsletter form stack on mobile */
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
}

/* Form-grid stack on mobile */
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* Product detail mobile polish */
@media (max-width: 600px) {
  .pd-price { font-size: 1.5rem; }
  .pd-thumbs { overflow-x: auto; padding-bottom: 6px; }
  .pd-thumb { flex-shrink: 0; }
  .pd-specs, .pd-notes { grid-template-columns: 1fr; }
}

/* Cart layout stack on mobile (already in styles but ensure tap targets) */
@media (max-width: 850px) {
  .cart-row {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .cart-row img { width: 70px; height: 70px; }
  .cart-row-qty { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; }
}

/* Disable text selection on UI-only buttons (prevents long-press copy on mobile) */
button, .nav-icons a, .menu-toggle, .qty-btn, .quiz-option,
.variant-pill, .kit-size, .theme-toggle, .swiper-button-next, .swiper-button-prev,
.swiper-pagination-bullet {
  -webkit-user-select: none;
  user-select: none;
}

/* Hide hero navigation arrows on small phones ( swiper pagination is enough ) */
@media (max-width: 600px) {
  .swiper-button-next, .swiper-button-prev { display: none; }
}

/* Sticky footer tap targets — privacy policy, etc */
.footer-col a { min-height: 36px; display: inline-flex; align-items: center; }

/* Clickable tel: links clear visual cue */
a[href^="tel:"], a[href^="https://wa.me/"] {
  -webkit-text-decoration-color: var(--brand-gold);
  text-decoration-color: var(--brand-gold);
}

/* Avoid layout shift on hero images (reserved aspect ratio box) */
.hero-slide img.hero-bg {
  aspect-ratio: 16 / 9;
}

/* Premium Luxury Swiper dots */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  max-width: 8px !important;
  max-height: 8px !important;
  margin: 0 4px !important;
  border-radius: 50% !important;
  opacity: 0.4 !important;
  background: var(--brand-gold, #c5a059) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}
.swiper-pagination-bullet-active {
  width: 22px !important;
  max-width: 22px !important;
  border-radius: 10px !important;
  opacity: 1 !important;
  background: var(--brand-gold, #c5a059) !important;
}
.swiper-pagination { padding: 8px 0; }

/* Larger mobile formfields in admin and storefront to be comfortable */
.form-grid input,
.shop-filters input,
.shop-filters select {
  padding: 14px 16px;
}

/* Fix for swiper pagination positioning on mobile */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
}

/* Load More Bestsellers Button */
#loadMoreBestsellers {
  background: transparent !important;
  color: var(--text-primary) !important;
  border: 1.5px solid var(--brand-gold) !important;
  padding: 12px 32px !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
}
#loadMoreBestsellers:hover {
  background: var(--brand-gold) !important;
  color: var(--luxury-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 160, 89, 0.3) !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   1. PAGE LOADER — Luxury branded intro screen
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--luxury-dark, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 8px;
  background: linear-gradient(90deg, #c5a059 0%, #f0d898 50%, #c5a059 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: loaderShine 1.8s linear infinite;
}
.loader-sub-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: rgba(197, 160, 89, 0.7);
  text-transform: uppercase;
}
.loader-bar-track {
  width: 140px;
  height: 2px;
  background: rgba(197, 160, 89, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c5a059, #f0d898);
  border-radius: 2px;
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderShine {
  to { background-position: 200% center; }
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ============================================================
   2. TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
}
.trust-strip-track {
  display: flex;
  width: max-content;
  animation: trustTicker 28s linear infinite;
  will-change: transform;
}
.trust-strip:hover .trust-strip-track {
  animation-play-state: paused;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-badge i {
  font-size: 1.2rem;
  color: var(--brand-gold);
}
.trust-badge-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-badge-label strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-badge-label span {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
  flex-shrink: 0;
}
@keyframes trustTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 600px) {
  .trust-strip-track { animation-duration: 22s; }
  .trust-strip-inner { gap: 20px; padding-right: 20px; }
}

/* ============================================================
   3. WHY RK AURA SECTION
   ============================================================ */
.why-section {
  padding: 60px 20px;
  background: var(--bg-primary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 40px auto 0;
}
.why-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}
@media (max-width: 900px) {
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid-4 { grid-template-columns: 1fr; gap: 16px; }
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-color);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(197,160,89,0.15), rgba(197,160,89,0.05));
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i {
  font-size: 1.5rem;
  color: var(--brand-gold);
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   4. PRODUCT CARD HOVER GLOW ANIMATION
   ============================================================ */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(197, 160, 89, 0.15), 0 4px 12px var(--shadow-color) !important;
}
.product-img img {
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.03);
}

/* ============================================================
   5. WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9990;
  width: 54px;
  height: 54px;
  background: var(--brand-gold);
  color: var(--luxury-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waBounce 2.5s ease infinite;
}
#whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.7);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-gold);
  color: var(--luxury-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--brand-gold);
}
#whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-6px); }
  60%       { transform: translateY(-2px); }
}
@media (max-width: 600px) {
  #whatsapp-float { bottom: 20px; right: 16px; width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ============================================================
   6. SCROLL TO TOP BUTTON
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1.5px solid var(--brand-gold);
  color: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 14px var(--shadow-color);
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--brand-gold);
  color: var(--luxury-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197,160,89,0.35);
}
@media (max-width: 600px) {
  #scroll-top { bottom: 20px; left: 16px; width: 40px; height: 40px; }
}

