:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #111111;
  --tertiary-bg: #1a1a1a;
  --card-bg: rgba(26, 26, 26, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  --gold-primary: #c4a160;
  --gold-light: #c4a160;
  --gold-dark: #c4a160;
  --gold-gradient: linear-gradient(
    135deg,
    #c4a160 0%,
    #c4a160 50%,
    #c4a160 100%
  );
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --gold-glow-strong: 0 0 40px rgba(212, 175, 55, 0.5);

  --silver-primary: #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-dark: #808080;
  --silver-gradient: linear-gradient(
    135deg,
    #c0c0c0 0%,
    #e8e8e8 50%,
    #c0c0c0 100%
  );
  --silver-glow: 0 0 20px rgba(192, 192, 192, 0.3);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #0a0a0a;

  --success: #00c853;
  --error: #ff1744;
  --warning: #ffab00;
  --info: #2979ff;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Poppins", system-ui, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.2s ease;
  --transition-slow: 0.5s ease;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 50%;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.2);

  --navbar-height: 80px;
  --container-max: 1280px;
  --container-padding: 20px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

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

button,
.btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-medium);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 80px 0 40px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  z-index: -1;
  transition: var(--transition-slow);
}

.btn-primary:hover {
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
  color: var(--text-dark);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-border {
  border: 2px solid var(--gold-primary);
}

.silver-text {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  transition: var(--transition-medium);
}

.card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 175, 0.1);
}

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

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  background: var(--gold-gradient);
  color: var(--text-dark);
}

.badge-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
}

.badge-silver {
  background: var(--silver-gradient);
  color: var(--text-dark);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}

.grid {
  display: grid;
  gap: 30px;
}

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

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
  :root {
    --navbar-height: 70px;
  }
}

.flex {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 50px;
}

.p-1 {
  padding: 10px;
}
.p-2 {
  padding: 20px;
}
.p-3 {
  padding: 30px;
}
.p-4 {
  padding: 40px;
}
.p-5 {
  padding: 50px;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
  margin: 40px 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-primary),
    transparent
  );
}

/* ===================== LOADER ===================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}

.loader-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  margin-top: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: var(--gold-glow-strong);
  }
}

.page-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-content.loaded {
  opacity: 1;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;        
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.navbar-logo {
  height: 60%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.navbar-logo img {
    height: 100%;
    width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.navbar-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-medium);
}

.navbar-menu a:hover {
  color: var(--gold-primary);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-actions {
  width: 236px;
  min-width: 236px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.navbar-icon {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  svg {
    width: 20px;
    height: 20px;
  }
}

.navbar-icon:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.searchbar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}

.searchbar {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 0.2s ease-in-out;
}

.searchbar.active {
    width: 236px;
    .search-input {
        display: block;
    }
}

.search-btn {
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;  
    background: none;
    outline: none;
    border: none;
}

.search-input {
    display: none; 
    height: 44px;
    width: 188px;
    outline: none;
    padding-inline: 8px;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    outline: none;
    border: none;
}

.search-results {
    position: absolute;
    top: 115%;
    width: 90dvw;
    max-width: 400px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
}

.profile-btn span {
    width:30px;
    height:30px;
    border-radius:50%;
    background:#007bff;
    color: #ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.profile-btn:hover span {
    color: var(--gold-primary);
}

@media (max-width: 1280px) {
    .searchbar {
        right: unset;
        left: 0;
        flex-direction: row-reverse;
    }
    
    .search-input {
        border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
        width: 192px;
    }
    
    .search-results {
        right: 0;
    }
}

@media (max-width: 1024px) {
    .logout-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-actions {
        min-width: 200px;
        width: 200px;
        gap: 8px;
    }
    
    .searchbar.active {
        width: 200px;
    }
    
    .search-input {
        width: 156px;
    }
}

.no-search-results {
    width: 100%;
    color: #000000;
    text-align: center;
    font-weight: 700;
    padding: 40px 0;
    margin: 0 !important;
}

.search-result-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-bottom: 1px solid #000000;
    img {
        width: 50px;
        height: 60px;
        border-radius: 5px;
        border: 1px solid #000000;
    };
    p {
        color: #000000;
        font-size: 16px;
        font-weight: 700;
        margin: 0 !important;
    }
}

.search-result-item:last-child {
    border: none;
}

.search-result-item:hover {
    background-color: rgba(0,0,0,0.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: var(--gold-gradient);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* ===================== MOBILE MENU — FIXED ===================== */
/*
 * FIX: Content was bleeding through the mobile menu because:
 * 1. z-index was missing → added z-index: 999 (just below navbar at 1000)
 * 2. Page hero/sections had stacking contexts that floated above the menu
 * 3. body overflow was not locked when menu was open
 */

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--navbar-height));

  /* FIX 1: z-index must sit below navbar (1000) but above ALL page content */
  z-index: 999;

  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  overflow-y: auto;

  /* FIX 2: Smooth open/close with opacity + pointer-events instead of display toggle */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  font-size: 1.25rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

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

/*
 * FIX 3: Lock body scroll when mobile menu is open.
 * Add this class to <body> via JS when menu opens:
 *   document.body.classList.add('menu-open')
 * Remove it when menu closes.
 */
body.menu-open {
  overflow: hidden;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: -1;
}

.hero-content {
  position: absolute; /*added for display above corousel*/
  z-index: 3; /*added for display above corousel*/
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

.trust-section {
  background: var(--secondary-bg);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: var(--border-radius-md);
  color: var(--text-dark);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════════════
   CHAKRA SECTION — Vibrant Mystical Premium
   ═══════════════════════════════════════════════ */

:root {
  --chakra-1-color: #ff4455;
  --chakra-2-color: #ff8833;
  --chakra-3-color: #f5d020;
  --chakra-4-color: #22dd66;
  --chakra-5-color: #22ccee;
  --chakra-6-color: #8855ff;
  --chakra-7-color: #ccccee;
}

.categories-section {
  padding: 100px 0;
}

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

.category-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-medium);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover {
  box-shadow: var(--gold-glow);
}

.category-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.category-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.products-section {
  background: var(--secondary-bg);
  padding: 100px 0;
}

.products-grid {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  width: 250px;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  margin: auto;
  background: var(--tertiary-bg);
  transition: var(--transition-medium);
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--secondary-bg);
  width: 250px;
  height: 297px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
} */

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  background: rgba(30, 30, 30, 0.85);
  color: goldenrod;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--glass-border);
  letter-spacing: 0.03em;
  z-index: 10; /* ← Yeh add karo */
  pointer-events: none; /* ← Yeh bhi add karo */
}
.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition-medium);
}

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

.product-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.product-info {
  padding: 24px 10px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
} */

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 6px;
  color: var(--text-primary);
}

/* .product-benefit {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
} */

.product-benefit {
  margin-bottom: 12px;
}

.product-benefit>* {
  display: none;
}

.product-benefit>*:first-child {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  height: 64px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.product-price {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.product-price .original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price .current {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2rem;
  color: var(--gold-primary);
}

/* .product-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
} */

/* Cart button mein icon add karo */
.product-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* .product-btn:hover {
    background: var(--gold-primary);
    color: var(--text-dark);
} */

.product-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li::before {
  content: "✓";
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bundles-section {
  padding: 100px 0;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bundle-card {
  background: var(--tertiary-bg);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}

.bundle-card.featured {
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.bundle-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.bundle-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.bundle-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.bundle-icon svg {
  width: 40px;
  height: 40px;
}

.bundle-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bundle-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bundle-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.bundle-product {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bundle-product svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

.bundle-price {
  margin-bottom: 24px;
}

.bundle-price .current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.bundle-price .original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
}

.bundle-save {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  margin-top: 8px;
}

@media (max-width: 992px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  .bundle-card.featured {
    transform: none;
  }
}

.science-section {
  background: var(--secondary-bg);
  padding: 100px 0;
}

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

.science-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition-medium);
}

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

.science-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.science-icon svg {
  width: 32px;
  height: 32px;
}

.science-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.science-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .science-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ════════════════════════════════════════
   VIDEO REEL SECTION
════════════════════════════════════════ */
.reel-section {
    background: #000;
    padding: 70px 0 60px;
    border-top: 1px solid rgba(196, 163, 72, 0.12);
    overflow: hidden;
}

.reel-section .section-head {
    text-align: center;
    margin-bottom: 50px;
}

.reel-section .section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.reel-section .section-head h2 span {
    color: #c4a348;
}

.reel-section .section-head .reel-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.reel-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    position: relative;
}

.reel-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(196, 163, 72, 0.1);
    border: 1px solid rgba(196, 163, 72, 0.35);
    color: #c4a348;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 20;
    transition: background 0.25s, transform 0.2s;
    margin: 0 10px;
    line-height: 1;
}

.reel-arrow:hover {
    background: rgba(196, 163, 72, 0.25);
    transform: scale(1.08);
}

.reel-track-outer {
    flex: 1;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin: auto;
}

.reel-card {
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid rgba(196, 163, 72, 0.15);
    background: #111;
    width: 130px;
    height: 190px;
    opacity: 0.12;
    transition: width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), height 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.45s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.reel-card.pd-center {
    width: 280px;
    height: 390px;
    opacity: 1;
    border-color: rgba(196, 163, 72, 0.6);
    box-shadow: 0 0 0 1px rgba(196, 163, 72, 0.2), 0 20px 60px rgba(196, 163, 72, 0.2), 0 8px 30px rgba(0, 0, 0, 0.8);
    cursor: default;
    order: 3;
}

.reel-card.pd-side1-r {
    width: 215px;
    height: 310px;
    opacity: 0.72;
    order: 4;
}

.reel-card.pd-side1-l {
    width: 215px;
    height: 310px;
    opacity: 0.72;
    order: 2;
}

.reel-card.pd-side2-r {
    width: 168px;
    height: 245px;
    opacity: 0.42;
    order: 5;
}

.reel-card.pd-side2-l {
    width: 168px;
    height: 245px;
    opacity: 0.42;
    order: 1;
}


.reel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-inner iframe,
.reel-inner video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    pointer-events: none;
    border: none;
}
    
.reel-inner iframe {
    pointer-events: auto;
}

.reel-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(196 163 72);
    border: 1px solid rgba(196, 163, 72, 0.4);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    pointer-events: none;
    border-radius: 50px;
    white-space: nowrap;
    display: none;
    z-index: 5;
}

.reel-card.pd-center .reel-badge {
    display: block;
}

.reel-mute {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.reel-card.pd-center .reel-mute {
    opacity: 1;
}

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

.reel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(196, 163, 72, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
    outline: none;
}

.reel-dot.active {
    background: #c4a348;
    transform: scale(1.45);
}

.reel-dot:hover:not(.active) {
    background: rgba(196, 163, 72, 0.6);
}

@media(max-width: 992px) {
    .reel-carousel-wrap {
        height: 340px;
    }

    .reel-card.pd-center {
        width: 210px;
        height: 310px;
    }

    .reel-card.pd-side1-r,
    .reel-card.pd-side1-l {
        width: 155px;
        height: 225px;
    }

    .reel-card.pd-side2-r,
    .reel-card.pd-side2-l {
        width: 115px;
        height: 170px;
    }
}

@media(max-width: 576px) {
    .reel-carousel-wrap {
        height: 290px;
    }

    .reel-card.pd-center {
        width: 170px;
        height: 260px;
    }

    .reel-card.pd-side1-r,
    .reel-card.pd-side1-l {
        width: 120px;
        height: 185px;
    }

    .reel-card.pd-side2-r,
    .reel-card.pd-side2-l {
        width: 85px;
        height: 135px;
    }

    .reel-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 4px;
    }
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  margin-bottom: 16px;
}

.newsletter-content p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.newsletter-form button {
  padding: 16px 30px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.footer {
  background: var(--secondary-bg);
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--gold-primary);
  border-radius: var(--border-radius-md);
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--glass-border);
  color: var(--text-secondary);
}

.footer-column h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold-primary);
}

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

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

.footer-payments {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-payments img {
  height: 30px;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.footer-payments img:hover {
  opacity: 1;
}

.razorpay {
    width: 40px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #17253e;
    border-radius: 3px
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 955;
  display: none;
}

.floating-whatsapp {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.mobile-cta {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100dvw;
  padding: 15px 20px;
  background: var(--secondary-bg);
  border-top: 1px solid var(--glass-border);
  z-index: 955;
}

.mobile-cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .floating-cta {
    /*display: block;*/
  }
  .mobile-cta {
    display: block;
  }
}

.breadcrumb {
  padding: 20px 0;
  background: var(--secondary-bg);
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .breadcrumb {
      margin-bottom: 30px;
    }

    .breadcrumb-list a {
        font-size: 0.6rem;
    }
    
    .dashboard-section {
        padding: 60px 0 30px;
        min-height: 100vh;
    }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb-list a:hover {
  color: var(--gold-primary);
}

.breadcrumb-list span {
  color: var(--text-muted);
}

.breadcrumb-list .current {
  color: var(--text-primary);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

.page-header {
  padding: 150px 0 80px;
  background: var(--secondary-bg);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.product-detail-section {
  padding: 80px 0 60px 0;
}

.product-detail-container { 
  position: relative;
  width: 100%;
  display: flex;
  gap: 5%; 
}

.product-gallery {
  width: 40%;
  display: flex;
  gap: 5%;
  overflow: hidden;
}

.product-thumbnails {
    width: 15%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    flex-shrink: 0;
}

.product-thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--border-radius-md);
  background: var(--tertiary-bg);
  transition: var(--transition-fast);
  cursor: pointer;
  overflow: hidden;
}

.product-thumbnail:not(.active):hover {
    border-color: rgba(196,163,72,0.5);
    transform: translateX(3px);
}

.product-thumbnail.active {
    box-shadow: 0 0 0 2px rgba(196,163,72,0.3);
}

.product-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.layer-stack-area {
    width: 80%;
    height: 60vh;
    max-height: 420px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    order: 1;
    overflow: visible;
    z-index: 1;
}

.layer-card {
    position: absolute;
    width: 85%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #0d0d0d;
    transform-origin: top left;
    will-change: transform, left, top, opacity;
    transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1),
                left 0.55s cubic-bezier(0.34,1.56,0.64,1),
                top 0.55s cubic-bezier(0.34,1.56,0.64,1),
                opacity 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.layer-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    display: block;
}

.layer-card .card-tap-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.layer-card:not(.active):hover .card-tap-hint { opacity: 1; }
.layer-card.active {
    box-shadow: 0 20px 60px rgba(196,163,72,0.18), 0 4px 20px rgba(0,0,0,0.8);
    cursor: none;
}

.swipe-hint {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(196,163,72,0.25);
    color: rgba(255,255,255,0.55);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 5px 14px 5px 10px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 20;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.swipe-hint svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    animation: swipeAnim 1.4s ease-in-out infinite;
}

.swipe-hint.hidden { opacity: 0; }

@keyframes swipeAnim {
    0%,100% { transform: translateX(0); }
    40%      { transform: translateX(-6px); }
    70%      { transform: translateX(4px); }
}

.layer-dots {
    position: absolute;
    bottom: -25px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 9999;
    pointer-events: all;
    left: 40%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.layer-dots.ready {
    opacity: 1;
}

.layer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(196, 161, 96, 0.7);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.layer-dot.active {
    background: #ffffff;
    transform: scale(1.4);
}

.layer-dot:hover:not(.active) {
    background: rgba(196, 161, 96, 0.9);
}

.zoom-lenses {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  border: 2px solid #c4a348;
  border-radius: 4px;
  visibility: hidden; 
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 99;
}

.bigZoomWindow {
  width: 58%;
  height: 400px;
  position: absolute;
  top: 0px;
  right: 10px;
  border: 2px solid #c4a348;
  border-radius: 10px;
  visibility: hidden; 
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 220%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 99;
}

.product-detail-info {
    display: block;
    position: static;
    width: 55%;
    padding: 0;
    z-index: auto;
    transform: none;
}

@media (min-width: 1280) {
    .bigZoomWindow {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .product-detail-section {
        padding: 80px 0 20px 0;
    }
    
    .product-detail-container {
        flex-direction: column;
        gap: 0;
        row-gap: 32px;
    }
    
    .product-gallery {
        width: 100%;
        flex-direction: column-reverse;
        gap: 0;
        row-gap: 40px;
    }
    
    .layer-dots {
        left: 50%;    
    }
    
    .product-thumbnails {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        row-gap: 0;
    }
    
    .product-thumbnail {
        width: 50px;
    }
    
    .layer-stack-area {
        width: 100%;
        margin: auto;
        max-width: 300px;
        min-height: 303px;
        height: 303px;
    }
    
    .product-detail-info {
        width: 100%;
    }
    
    .bigZoomWindow, .zoom-lenses {
        display: none !important;
    }
}

.product-detail-info h1 {
    font-family: serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.product-detail-category {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.product-detail-price .current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.product-detail-price .original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-detail-price .discount {
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.product-short-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.product-benefits-list {
  margin-bottom: 30px;
}

.product-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.product-benefits-list li:last-child {
  border-bottom: none;
}

.product-benefits-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary-bg);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quantity-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.quantity-value {
  width: 60px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product-actions .btn {
  flex: 1;
}

.product-meta {
  padding: 20px;
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-md);
}

.product-meta-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.product-meta-item span:first-child {
  color: var(--text-muted);
  min-width: 120px;
}

.product-overview-box {
  max-width: 900px;
  margin: auto;
  font-family: 'DM Sans',sans-serif; 
  font-size: 15px; 
  color: rgba(255,255,255,0.6); 
  line-height: 1.9;
}

.product-overview-box>p {
    text-align: justify;
}

.product-tabs {
  padding: 5px 0;
}

.tabs-nav {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 40px;
  /*overflow-x: auto;*/
}

.tab-btn {
  padding: 16px 30px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--gold-primary);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.ingredients-table {
  width: 100%;
  border-collapse: collapse;
}

.ingredients-table th,
.ingredients-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.ingredients-table th {
  background: var(--tertiary-bg);
  color: var(--gold-primary);
  font-weight: 600;
}

.ingredients-table tr:hover {
  background: var(--glass-bg);
}

.usage-steps {
  display: grid;
  gap: 20px;
}

.usage-step {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-md);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  margin: 0;
}

.faq-item {
  margin-bottom: 20px;
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 0.95rem;
  margin: 0;
}

.cart-section {
  padding: 120px 0 60px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-items {
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-lg);
  padding: 30px;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.cart-header span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.cart-product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-product-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--secondary-bg);
}

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

.cart-product-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.cart-price {
  font-weight: 600;
}

.cart-quantity .quantity-control {
  width: fit-content;
}

.cart-total {
  font-weight: 700;
  color: var(--gold-primary);
}

.cart-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-remove:hover {
  color: var(--error);
}

.cart-summary {
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.summary-row span:first-child {
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.summary-row.total span:last-child {
  color: var(--gold-primary);
}

.coupon-form {
  display: flex;
  gap: 10px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.coupon-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--secondary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
}

.coupon-form button {
  padding: 12px 20px;
}

@media (max-width: 992px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
  .cart-header {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.checkout-section {
  padding: 120px 0 60px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-section {
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin-bottom: 24px;
}

.form-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.form-row {
  grid-template-columns: repeat;
  display: grid(2, 1fr);
  gap: 20px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.checkout-summary {
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.order-items {
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--secondary-bg);
}

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

.order-item-info {
  flex: 1;
}

.order-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.order-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.order-item-price {
  font-weight: 600;
}

.payment-methods {
  margin-top: 24px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: var(--secondary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--gold-primary);
}

.payment-option input {
  accent-color: var(--gold-primary);
}

.payment-option label {
  flex: 1;
  cursor: pointer;
}

.payment-icon {
  width: 40px;
  height: 25px;
  background: var(--silver-gradient);
  border-radius: 4px;
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: var(--primary-bg);
  position: relative;
}

.auth-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 50%
  );
}

.auth-container {
  width: 100%;
  max-width: 450px;
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}
.auth-logo img {
  margin-left: 6.8rem;
}
.auth-logo a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: 0.95rem;
  margin: 0;
}

.auth-form .btn {
  width: 100%;
  margin-top: 10px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.auth-divider span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-login {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--secondary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--gold-primary);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--gold-primary);
  font-weight: 500;
}

.dashboard-section {
  padding: 120px 0 60px;
  min-height: 100vh;
  overflow: hidden;
}

.dashboard-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.dashboard-sidebar {
  background: var(--tertiary-bg);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.user-profile {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}

.user-avatar {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.user-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.user-email {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dashboard-nav {
  list-style: none;
}

.dashboard-nav li {
  margin-bottom: 8px;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-secondary);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: var(--glass-bg);
  color: var(--gold-primary);
}

.dashboard-nav svg {
  width: 20px;
  height: 20px;
}

.dashboard-content {
    width: 100%;    
}

.dashboard-content h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.stat-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  transition: var(--transition-medium);
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.dashboard-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin: 0 auto 30px;
  overflow: auto;
}

.dashboard-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.orders-table th {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.order-status {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
}

.order-status.pending {
  background: rgba(255, 171, 0, 0.2);
  color: var(--warning);
}

.order-status.processing {
  background: rgba(41, 121, 255, 0.2);
  color: var(--info);
}

.order-status.shipped {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
}

.order-status.delivered {
  background: rgba(0, 200, 83, 0.2);
  color: var(--success);
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    width: 100%;
    max-width: calc(100dvw - 40px);
    position: static;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-card {
    max-width: calc(100dvw - 40px);
  }
}

.admin-section {
  min-height: 100vh;
  background: var(--primary-bg);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--glass-border);
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-notification {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border-radius: var(--border-radius-md);
  color: var(--text-secondary);
  cursor: pointer;
}

.admin-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: var(--error);
  border-radius: 50%;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 600;
}

.admin-user-info {
  display: flex;
  flex-direction: column;
}

.admin-user-name {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.admin-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 81px);
}

.admin-sidebar {
  background: var(--secondary-bg);
  border-right: 1px solid var(--glass-border);
  padding: 30px 20px;
}

.admin-nav-section {
  margin-bottom: 30px;
}

.admin-nav-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  padding: 0 15px;
}

.admin-nav {
  list-style: none;
}

.admin-nav li {
  margin-bottom: 5px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-secondary);
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: var(--glass-bg);
  color: var(--gold-primary);
}

.admin-nav svg {
  width: 20px;
  height: 20px;
}

.admin-content {
  padding: 30px 40px;
  overflow-y: auto;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-page-header h1 {
  font-size: 1.75rem;
}

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

.admin-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-card-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.admin-card-icon {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.admin-card-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.admin-card-change {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.admin-card-change.positive {
  color: var(--success);
}

.admin-card-change.negative {
  color: var(--error);
}

.admin-table-container {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.admin-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
}

.admin-table-header h3 {
  font-size: 1.1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 24px;
  text-align: left;
}

.admin-table th {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: var(--secondary-bg);
}

.admin-table tr {
  border-bottom: 1px solid var(--glass-border);
}

.admin-table tr:last-child {
  border-bottom: none;
}

.admin-table tr:hover {
  background: var(--glass-bg);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
}

.status-badge.active {
  background: rgba(0, 200, 83, 0.2);
  color: var(--success);
}

.status-badge.inactive {
  background: rgba(255, 23, 68, 0.2);
  color: var(--error);
}

.status-badge.pending {
  background: rgba(255, 171, 0, 0.2);
  color: var(--warning);
}

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

.admin-action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.admin-action-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.admin-action-btn.danger:hover {
  border-color: var(--error);
  color: var(--error);
}

@media (max-width: 1200px) {
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .admin-body {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
  }
}

.consultation-section {
  padding: 17px 0 60px;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.doctor-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: var(--transition-medium);
}

.doctor-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
  transform: translateY(-5px);
}

.doctor-image {
  aspect-ratio: 1;
  background: var(--secondary-bg);
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  padding: 24px;
  text-align: center;
}

.doctor-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.doctor-specialization {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.doctor-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.doctor-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctor-fee {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.doctor-fee span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.assessment-section {
  padding: 120px 0 60px;
}

.assessment-progress {
  max-width: 600px;
  margin: 0 auto 40px;
}

.progress-bar {
  height: 6px;
  background: var(--tertiary-bg);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 0.1s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.assessment-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--tertiary-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 50px;
}

.assessment-question {
  text-align: center;
  margin-bottom: 40px;
}

.assessment-question h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.assessment-question p {
  font-size: 0.95rem;
  margin: 0;
}

.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.assessment-option {
  padding: 18px 24px;
  background: var(--secondary-bg);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 15px;
}

.assessment-option:hover {
  border-color: var(--gold-primary);
}

.assessment-option.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.assessment-option input {
  display: none;
}

.option-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.assessment-option.selected .option-indicator {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
}

.assessment-option.selected .option-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 50%;
}

.option-text {
  font-size: 1rem;
  color: var(--text-primary);
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.recommendation-result {
  text-align: center;
  padding: 40px;
}

.recommendation-result h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.recommended-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .assessment-card {
    padding: 30px;
  }
  .recommended-products {
    grid-template-columns: 1fr;
  }
}

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.error-404 h1 {
  font-size: 8rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.error-404 h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.error-404 p {
  margin-bottom: 30px;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 10;
  width: 100%;
  height: 100%;
  background: var(--primary-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.page-loader-bar {
  width: 200px;
  height: 4px;
  background: var(--tertiary-bg);
  border-radius: 2px;
  overflow: hidden;
}

.page-loader-progress {
  height: 100%;
  background: var(--gold-gradient);
  width: 0;
  transition: width 0.3s ease;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.animated-bg::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 50%
  );
  animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-border {
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9em;
}

.price-discount {
  color: var(--success);
  font-size: 0.85em;
  margin-left: 8px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.empty-state-icon svg {
  width: 50px;
  height: 50px;
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.empty-state p {
  margin-bottom: 24px;
}
