@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --bg-color: #050505;
  --surface-color: rgba(25, 25, 25, 0.6);
  --primary-color: #d4af37;
  /* Gold */
  --primary-hover: #f1c40f;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M4 2v14.5l4-4 2.5 5.5 2.5-1-2.5-5.5h5L4 2z%22 fill=%22black%22 stroke=%22white%22 stroke-width=%221.2%22 stroke-linejoin=%22miter%22/%3E%3C/svg%3E"), auto;
}

a, button, .btn, .wishlist-btn, .custom-dropdown, .dropdown-header, .menu-toggle, [onclick], input[type="submit"], input[type="button"], a *, button * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M10 2a1.5 1.5 0 0 0-1.5 1.5v6.2l-1.1-.9a1.5 1.5 0 0 0-2.1.2 1.5 1.5 0 0 0 .2 2.1l4.8 3.9v3c0 .8.7 1.5 1.5 1.5h6c.8 0 1.5-.7 1.5-1.5v-7a1.5 1.5 0 0 0-1.5-1.5h-.5v-1a1.5 1.5 0 0 0-3 0v1h-.5v-1.5a1.5 1.5 0 0 0-3 0v1.5h-.5V3.5A1.5 1.5 0 0 0 10 2z%22 fill=%22black%22 stroke=%22white%22 stroke-width=%221.2%22 stroke-linejoin=%22miter%22/%3E%3C/svg%3E") 6 2, pointer !important;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
.brand {
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

/* Glassmorphism Utilities */
.glass {
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Top Announcement Bar */
.top-announcement {
  background: #111;
  color: var(--primary-color);
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.top-announcement:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
}

.marquee-track span i {
  margin-right: 10px;
  color: #fff;
  font-size: 1.1rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Navigation */
header {
  position: relative;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: row; /* Inline row layout on desktop */
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: linear-gradient(to bottom, #151515, #050505); /* Premium dark charcoal gradient */
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 20px 5%;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px; /* Optimized height for elegant single-row display */
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo a:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

nav {
  flex: 2;
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
}

.mobile-nav-icons {
  display: none; /* Hidden on desktop */
}

.nav-icons {
  flex: 1;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
  position: static; /* Flows naturally in the inline row */
}

.nav-icons a {
  font-size: 1.2rem;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.nav-icons a:hover {
  color: var(--primary-color);
}

nav a,
.nav-icons a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color var(--transition-fast);
}

nav a:hover,
nav a.active,
.nav-icons a:hover {
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Logout Button styling */
nav a.logout-btn {
  color: #ff4d4d !important;
  border: 1px solid rgba(255, 77, 77, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 5px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

nav a.logout-btn::after {
  display: none;
  /* Hide default underline */
}

nav a.logout-btn:hover {
  background: rgba(255, 77, 77, 0.15);
  color: #ff4d4d !important;
  border-color: #ff4d4d;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--primary-color);
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wishlist-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  transition: var(--transition-fast);
}

.wishlist-icon:hover {
  color: var(--primary-color);
}

.wishlist-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--primary-color);
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn:hover::before {
  width: 100%;
}

.btn:active {
  transform: translateY(0);
}

.btn-solid {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-solid::before {
  background: #fff;
}

.btn-glow {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-whatsapp {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-danger {
  background: rgba(255, 77, 77, 0.1) !important;
  border-color: rgba(255, 77, 77, 0.5) !important;
  color: #ff4d4d !important;
}

.btn-danger:hover {
  background: #ff4d4d !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(255, 77, 77, 0.3);
}

.btn-success {
  background: rgba(74, 222, 128, 0.1) !important;
  border-color: rgba(74, 222, 128, 0.5) !important;
  color: #4ade80 !important;
}

.btn-success:hover {
  background: #4ade80 !important;
  color: #000 !important;
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: #000 !important;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.10);
  }
}

.hero-bg-blur {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.5);
  z-index: -3;
  animation: slowZoom 30s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-side-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
}

.hero-side-content.left {
  left: 2%;
}

.hero-side-content.right {
  right: 2%;
}

.hero-side-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: -10px;
  opacity: 0.9;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: rotate(-5deg);
}

.hero-side-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulseStroke 3s infinite alternate;
}

@keyframes pulseStroke {
  0% {
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0);
  }
  100% {
    -webkit-text-stroke: 1px rgba(212, 175, 55, 1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    color: rgba(212, 175, 55, 0.1);
  }
}

@media (max-width: 1300px) {
  .hero-side-content {
    display: none;
  }
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Above blur and overlay */
  perspective: 1000px;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  max-width: 1400px; /* Prevent it from getting too large on ultrawide */
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
  animation: floatBanner 6s ease-in-out infinite;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes floatBanner {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 40px 70px rgba(212, 175, 55, 0.15));
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.3) 50%, rgba(5, 5, 5, 0.9) 100%);
  z-index: -2;
  transition: background 0.8s ease;
}

.hero:hover .hero-overlay {
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.1) 50%, rgba(5, 5, 5, 0.8) 100%);
}

.hero-tagline {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 30px;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* Trust Section */
.trust-section {
  padding: 60px 5%;
  background: rgba(15, 15, 15, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  flex: 1;
  transition: transform 0.3s ease;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge:hover {
  transform: translateY(-5px);
}

.trust-badge i {
  font-size: 2.2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@media (max-width: 1024px) {
  .trust-container {
    flex-direction: column;
  }
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px 20px;
  }
  .trust-badge:last-child {
    border-bottom: none;
  }
}

.trust-text h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.trust-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-content {
  text-align: left;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content>* {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, subtitleGlow 2.5s ease-in-out infinite alternate;
  animation-delay: 0.2s, 1.2s;
}

@keyframes subtitleGlow {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
  }

  100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 35px rgba(212, 175, 55, 0.4);
    color: #fff;
  }
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(to right, #d4af37 0%, #fff 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, shineText 6s linear infinite;
  animation-delay: 0.4s, 0s;
}

.hero .btn {
  animation-delay: 0.6s;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  flex: 1;
  padding: 40px 5% 60px; /* Reduced padding since header is now sticky/in-flow */
  /* Account for fixed header */
}

.page-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(to right, #d4af37 0%, #fff 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineText 6s linear infinite;
  position: relative;
  display: inline-block;
  width: 100%;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-main);
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

/* Shop Controls (Search + Dropdown) */
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px auto;
  justify-content: center;
}

.search-box,
.custom-dropdown {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.2rem;
}

#searchInput {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(25, 25, 25, 0.6);
  color: var(--text-main);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

#searchInput:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Custom Dropdown */
.dropdown-header {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(25, 25, 25, 0.6);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-header:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.custom-dropdown .select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .select-icon {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.custom-dropdown.active .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-options li {
  padding: 12px 20px;
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-options li:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  gap: 30px;
}

.product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-slow);
  cursor: pointer;
  animation: cardFadeUp 0.6s ease-out forwards;
  flex: 0 0 330px;
  width: 330px;
  max-width: 100%;
}

#featuredGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

#featuredGrid .product-card {
  flex: 0 0 350px;
  width: 350px;
}

/* Coming Soon Effect */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  background: rgba(25, 25, 25, 0.4);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  margin-bottom: 50px;
}

.coming-soon-text {
  font-size: 3.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 1) 50%, rgba(212, 175, 55, 0) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes cardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 120%;
  /* Aspect ratio */
  overflow: hidden;
  background: #111;
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.wishlist-btn.active i {
  font-weight: 900;
  color: var(--primary-color);
}

.wishlist-btn.active:hover i {
  color: #000;
}

.product-info {
  padding: 20px 0;
  text-align: center;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.product-price {
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

.detail-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.detail-img-wrapper img,
.detail-img-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-info h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.detail-price {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.detail-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.detail-actions {
  display: flex;
  gap: 20px;
}

/* Cart Page */
.cart-container {
  max-width: 800px;
  margin: 0 auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info h3 {
  margin-bottom: 10px;
}

.cart-item-price {
  color: var(--primary-color);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-btn {
  background: var(--surface-color);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--primary-color);
  color: #000;
}

.remove-btn {
  background: transparent;
  color: #ff4d4d;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.remove-btn:hover {
  transform: scale(1.2);
}

.cart-summary {
  margin-top: 40px;
  padding: 30px;
  border-radius: 8px;
  text-align: right;
}

.cart-total {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cart-total span {
  color: var(--primary-color);
  font-weight: bold;
}

.promo-container {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  justify-content: flex-end;
}

.promo-container input {
  width: 60%;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  background: rgba(25, 25, 25, 0.6);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.promo-container input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.promo-container button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.promo-container button:hover {
  background: var(--primary-color);
  color: #000;
}

.empty-cart {
  text-align: center;
  padding: 50px 0;
  color: var(--text-muted);
}

.empty-cart i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Footer */
footer {
  padding: 60px 5% 30px;
  background: #000;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  margin-top: auto;
}

.footer-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  color: #555;
  font-size: 0.9rem;
}

/* Toast Notification */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-color);
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 20px 5%;
  }

  header.scrolled {
    padding: 15px 5%;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex !important;
    /* Override any display: none */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .qty-control {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .remove-btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

/* About Page */
.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-subtitle {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 10px;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 60px;
}

.about-grid.reverse .about-text {
  order: 2;
}

.about-grid.reverse .about-img {
  order: 1;
}

.about-text {
  padding: 40px;
  border-radius: 12px;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-img {
  display: flex;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.contact-info,
.contact-form {
  padding: 40px;
  border-radius: 12px;
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
  width: 20px;
  text-align: center;
}

.mt-4 {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {

  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .about-grid.reverse .about-text,
  .about-grid.reverse .about-img {
    order: unset;
  }

  .about-img img {
    height: auto;
  }
}

/* Advanced Animations */
.floating-img {
  /* Removed float animation to keep image static */
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-img img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--surface-color);
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.close-modal:hover {
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  background: rgba(25, 25, 25, 0.6);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Premium Auth Split Layout */
.auth-layout {
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: var(--bg-color);
}

.auth-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .auth-image {
    display: none;
  }
}

.auth-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.auth-image-overlay {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 600px;
}

.auth-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow-y: auto;
  min-height: 100vh;
}

.auth-form-container {
  width: 100%;
  max-width: 420px;
}

.auth-back-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 420px;
}

.auth-back-btn:hover {
  color: var(--primary-color);
}

/* Floating Input Group */
.premium-form {
  width: 100%;
}

.floating-group {
  position: relative;
  width: 100%;
}

.floating-group input {
  width: 100%;
  padding: 15px 15px 15px 40px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.floating-group input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.floating-group label {
  position: absolute;
  top: 15px;
  left: 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-group .input-icon {
  position: absolute;
  top: 18px;
  left: 10px;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label {
  top: -12px;
  left: 10px;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.floating-group input:focus~.input-icon,
.floating-group input:not(:placeholder-shown)~.input-icon {
  color: var(--primary-color);
}

/* Glow Button */
.glow-btn {
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  color: #000;
  border: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 2px;
}

.glow-btn:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: translateY(-2px);
  color: #000;
}

/* Fix Chrome Autofill White Box Issue */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--bg-color) inset !important;
  -webkit-text-fill-color: white !important;
  caret-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Password Toggle Icon */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 27px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password svg {
  transition: all 0.3s ease;
}

.toggle-password:hover {
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* Profile Modal */
.profile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.profile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.profile-card {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.profile-overlay.show .profile-card {
  transform: scale(1);
}

.profile-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.profile-close:hover {
  color: #ff4d4d;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), #f1c40f);
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.profile-name {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.profile-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.profile-info {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
  margin-bottom: 15px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 500;
}

/* --- Premium Form System --- */
.premium-form {
  margin-top: 20px;
}

.floating-group {
  position: relative;
  margin-bottom: 25px;
}

.floating-group input,
.floating-group textarea,
.floating-group select {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: #0a0a0a !important;
  /* Force dark bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff !important;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

/* Fix White Box Issue (Chrome Autofill & Background) */
.floating-group input:-webkit-autofill,
.floating-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.floating-group input:focus,
.floating-group textarea:focus,
.floating-group select:focus {
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.05) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.floating-group label {
  position: absolute;
  left: 45px;
  top: 27px;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.floating-group textarea~label {
  top: 25px;
  transform: none;
}

.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label,
.floating-group input:-webkit-autofill~label,
.floating-group input.has-content~label,
.floating-group textarea:focus~label,
.floating-group textarea:not(:placeholder-shown)~label,
.floating-group textarea.has-content~label {
  top: -12px;
  left: 15px;
  font-size: 0.75rem;
  color: var(--primary-color);
  background: #0a0a0a;
  padding: 0 10px;
  border-radius: 5px;
  z-index: 10;
}

.floating-group .input-icon {
  position: absolute;
  left: 15px;
  top: 27px;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 5;
}

.floating-group input:focus~.input-icon,
.floating-group textarea:focus~.input-icon {
  color: #fff;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Premium Select Styling */
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* Modal Specific Adjustments */
.modal-content.glass {
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Auth Protection */
/* Auth Protection - Only Admin is restricted via JS now */
.auth-only,
.restricted {
  /* Removed display: none to allow guest access */
}

/* --- RESPONSIVE DESIGN --- */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-fast);
    position: absolute;
    left: 5%;
    top: 85px; /* Aligned with icons and larger logo */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }

  .detail-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .detail-info {
    text-align: center;
  }

  .detail-actions {
    justify-content: center;
  }
}

/* Large Phones / Tablets (Max 768px) */
@media (max-width: 768px) {
  header {
    flex-direction: row !important; /* Row on mobile for 1-line display */
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 5% !important;
    gap: 0 !important;
  }

  .logo-img {
    height: 60px !important; /* Smaller logo for mobile row */
  }

  .menu-toggle {
    display: flex !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    order: 2; /* Right side */
  }

  .logo {
    order: 1; /* Left side */
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
  }

  .mobile-nav-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    width: 100%;
    align-items: center;
  }

  .mobile-nav-icons a {
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-icons {
    display: none !important; /* Hide header icons on mobile, now inside hamburger! */
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
    border-left: 1px solid var(--glass-border);
    padding: 40px 20px;
  }

  nav.active {
    right: 0;
  }

  .hero {
    height: auto !important;
    aspect-ratio: 1.5 / 1 !important; /* Forces the landscape banner to scale perfectly without cropping */
    min-height: unset !important;
  }

  .hero h1 {
    font-size: 2.2rem !important; /* Scaled down heading size */
  }

  .hero-subtitle {
    font-size: 0.8rem !important;
    letter-spacing: 3px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .about-grid,
  .contact-container,
  .shop-controls {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 10px;
  }

  .trust-badge i {
    font-size: 1.8rem;
  }

  .trust-text h4 {
    font-size: 0.95rem;
  }

  .trust-text p {
    font-size: 0.75rem;
  }

  .shop-controls {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  .search-box, .custom-dropdown {
    width: 100% !important;
    min-width: unset !important;
  }

  .about-img {
    order: -1;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img remove";
    gap: 15px;
    padding: 15px;
  }

  .cart-item img {
    grid-area: img;
    width: 100px;
    height: 100px;
  }

  .cart-item-info {
    grid-area: info;
  }

  .qty-control {
    grid-area: qty;
  }

  .remove-btn {
    grid-area: remove;
    justify-self: end;
  }

  .cart-summary {
    text-align: center;
    padding: 20px;
  }

  .footer-content {
    padding: 0 20px;
  }

  /* Auth Pages */
  .auth-layout {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
  }

  .auth-image {
    display: none !important;
  }

  .auth-content {
    padding: 60px 20px;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    flex: none;
  }

  .auth-form-container {
    padding: 0;
    max-width: 100%;
  }

  /* Force stack grids in auth forms */
  .premium-form .form-row,
  .premium-form [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* Mobile (Max 480px) */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    width: 100%;
  }

  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .product-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-bottom: 5px !important;
  }

  .product-info {
    padding: 12px 5px !important;
    text-align: center !important;
  }

  .product-info h3, .product-name {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .product-info .price, .product-price {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .detail-info h1 {
    font-size: 2.2rem;
  }

  .detail-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile Menu Animation Classes */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Smooth Native Golden Cursor */
@media (min-width: 1025px) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.5 3.5L19 12L5.5 20.5V3.5Z' fill='%23d4af37' stroke='white' stroke-width='1'/%3E%3C/svg%3E"), auto;
  }

  a,
  button,
  .product-card,
  .dropdown-header,
  .qty-btn,
  .remove-btn,
  .btn {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.5 3.5L19 12L5.5 20.5V3.5Z' fill='%23f1c40f' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E"), pointer !important;
  }
}

/* Hide the old JS cursor divs if they still exist */
.cursor-dot,
.cursor-outline {
  display: none !important;
}

/* Mobile Optimizations for Hero */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    aspect-ratio: 1.5 / 1 !important;
    min-height: unset !important;
    justify-content: center !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    text-align: center !important;
  }

  .hero-image-bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero h1 {
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
  }

  .hero-tagline {
    font-size: 1.6rem !important;
    margin-bottom: 25px !important;
    max-width: 100% !important;
  }

  .hero-btns {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }
}

/* Fix for shop dropdown scroll issue */
.custom-dropdown {
  user-select: none;
}

.dropdown-options {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.dropdown-options::-webkit-scrollbar {
  width: 5px;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Product Gallery */
.detail-gallery { display: flex; flex-direction: column; gap: 20px; align-items: center; width: 100%; }
.gallery-thumbnails { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; width: 100%; }
.thumbnail { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); width: 75px; height: 75px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; overflow: hidden; opacity: 0.7; transition: all 0.3s ease; }
.thumbnail img, .thumbnail video { width: 100%; height: 100%; object-fit: cover; }
.thumbnail:hover, .thumbnail.active { opacity: 1; border-color: var(--primary-color); background: rgba(212, 175, 55, 0.15); }

@keyframes mediaFadeIn {
  0% { opacity: 0.3; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.detail-img-wrapper img, .detail-img-wrapper video {
  animation: mediaFadeIn 0.4s ease-out forwards;
}

/* Gallery navigation arrows */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--primary-color, #d4af37);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: auto;
}
.detail-img-wrapper:hover .gallery-nav-btn {
  opacity: 1;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.gallery-nav-btn:hover {
  background: rgba(212, 175, 55, 0.8);
  color: #000;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) { 
  html, body { overflow-x: hidden !important; max-width: 100vw !important; width: 100% !important; }
  .product-detail { display: block !important; padding: 10px 15px 40px 15px !important; width: 100% !important; box-sizing: border-box !important; overflow-x: hidden !important; margin: 0 auto !important; }
  .detail-gallery { display: flex !important; flex-direction: column !important; gap: 15px; width: 100% !important; align-items: center; box-sizing: border-box !important; } 
  .gallery-thumbnails { display: flex !important; flex-direction: row !important; justify-content: center !important; flex-wrap: wrap !important; gap: 8px !important; width: 100% !important; } 
  .detail-img-wrapper { max-width: 420px !important; width: 100% !important; flex: none !important; margin: 0 auto !important; aspect-ratio: 1/1; overflow: hidden; position: relative; box-sizing: border-box !important; }
  .gallery-nav-btn { opacity: 1 !important; display: flex !important; }
  .detail-info { text-align: left; width: 100% !important; box-sizing: border-box !important; overflow-x: hidden !important; }
  .detail-actions { display: flex !important; flex-direction: column !important; gap: 12px !important; width: 100% !important; }
  .detail-actions .btn { width: 100% !important; flex: none !important; box-sizing: border-box !important; }

  /* Scale down about / features section main image on mobile */
  .about-img {
    max-width: 280px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .about-img img {
    width: 100% !important;
    height: auto !important;
  }



  /* Center the 5th Trust Badge on Mobile */
  .trust-container .trust-badge:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
  }

  /* Shop Search Box Mobile */
  #searchInput {
    font-size: 0.95rem !important;
    padding: 12px 15px 12px 40px !important;
  }

  /* Contact Page Mobile Fixes */
  .contact-page {
    overflow-x: hidden;
    width: 100%;
  }
  .info-item {
    font-size: 0.9rem;
  }
  .info-item span {
    word-break: break-all;
    overflow-wrap: break-word;
  }
}

/* Fix for button inner elements cursor */
@media (min-width: 1025px) {
  a *, button *, .btn *, .wishlist-btn *, .menu-toggle *, .product-card * {
    cursor: inherit !important;
  }
  
  a, button, .btn, .wishlist-btn, .menu-toggle, .product-card, .dropdown-header, .qty-btn, .remove-btn {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.5 3.5L19 12L5.5 20.5V3.5Z' fill='%23f1c40f' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E"), pointer !important;
  }
}

/* Mobile fixes for Coming Soon text */
@media (max-width: 768px) {
  .coming-soon-text {
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-align: center;
  }
}

/* Bundle Options */
.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bundle-option:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}
.bundle-option.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.bundle-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bundle-qty {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}
.bundle-old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.bundle-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.bundle-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.bundle-option:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
}
.bundle-option.active {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid var(--primary-color) !important;
}
.promo-banner-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.promo-banner-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Force trust badges to single column on mobile screens */
@media (max-width: 576px) {
  .trust-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Reset any special rules for the last badge so they all follow the single column layout */
  .trust-container .trust-badge:last-child:nth-child(odd) {
    grid-column: auto !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

