/* ================= ROOT & BASE ================= */
:root {
  --primary: #928bf1;
  --white: #ffffff;
  --dark: #1a1a1a;
  --glass: rgba(255, 255, 255, 0.85);
  --gold-accent: #c9a23f;
  --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
}
/* ================= PREMIUM MARQUEE ANNOUNCEMENT ================= */
.premium-marquee {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1f0c 100%);
  color: white;
  height: 48px;
  overflow: hidden;
  z-index: 50;
  isolation: isolate;
}

/* Desktop height */
@media (min-width: 768px) {
  .premium-marquee {
    height: 52px;
  }
}

/* Animated gold border */
.marquee-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    #c0a662, 
    #ffd700, 
    #c0a662, 
    transparent);
  background-size: 200% 100%;
  animation: borderShimmer 3s infinite linear;
  z-index: 2;
}

@keyframes borderShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Marquee track */
.marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}

/* Pause animation on hover */
.premium-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Marquee scroll animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Faster animation for mobile */
@media (max-width: 767px) {
  .marquee-track {
    animation: marqueeScrollMobile 30s linear infinite;
  }
  
  @keyframes marqueeScrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* Marquee content container */
.marquee-content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

/* Individual marquee items */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.marquee-item:hover {
  transform: translateY(-2px);
}

/* Icon */
.marquee-icon {
  font-size: 1.125rem;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(192, 166, 98, 0.3));
  flex-shrink: 0;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-3px) rotate(5deg); }
  75% { transform: translateY(2px) rotate(-5deg); }
}

/* Text styling */
.marquee-text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.marquee-text strong {
  font-weight: 600;
  color: #ffd700;
  position: relative;
  margin-right: 0.25rem;
}

.marquee-text strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #c0a662, transparent);
  opacity: 0.7;
}

/* Badge */
.marquee-badge {
  background: linear-gradient(45deg, #c0a662, #ffd700);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.25rem;
  animation: badgePulse 2s infinite;
  flex-shrink: 0;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 rgba(192, 166, 98, 0);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 8px rgba(192, 166, 98, 0.4);
  }
}

/* Separator */
.marquee-separator {
  color: rgba(255, 215, 0, 0.4);
  font-size: 0.875rem;
  margin: 0 1rem;
  animation: separatorSpin 4s linear infinite;
  flex-shrink: 0;
}

@keyframes separatorSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Gradient overlay edges */
.marquee-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

.marquee-overlay.left {
  left: 0;
  background: linear-gradient(to right, #1a1a1a, transparent);
}

.marquee-overlay.right {
  right: 0;
  background: linear-gradient(to left, #1a1a1a, transparent);
}

/* Control button (desktop only) */
.marquee-control {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.premium-marquee:hover .marquee-control {
  opacity: 1;
}

.marquee-control:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.control-icon {
  font-size: 0.875rem;
}

/* Pause state */
.premium-marquee.paused .marquee-track {
  animation-play-state: paused;
}

.premium-marquee.paused .marquee-control .control-icon {
  content: '▶';
}

/* Desktop specific styles */
@media (min-width: 768px) {
  .marquee-content {
    padding: 0 3rem;
  }
  
  .marquee-item {
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .marquee-icon {
    font-size: 1.25rem;
  }
  
  .marquee-text {
    font-size: 1rem;
  }
  
  .marquee-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    margin-left: 0.5rem;
  }
  
  .marquee-separator {
    margin: 0 1.5rem;
    font-size: 1rem;
  }
  
  .marquee-overlay {
    width: 150px;
  }
}

/* Mobile specific styles */
@media (max-width: 767px) {
  .premium-marquee {
    height: 44px;
  }
  
  .marquee-content {
    padding: 0 1.5rem;
  }
  
  .marquee-item {
    gap: 0.375rem;
    padding: 0 0.375rem;
  }
  
  .marquee-icon {
    font-size: 1rem;
  }
  
  .marquee-text {
    font-size: 0.8rem;
  }
  
  .marquee-badge {
    font-size: 0.65rem;
    padding: 0.125rem 0.375rem;
    margin-left: 0.125rem;
  }
  
  .marquee-separator {
    margin: 0 0.75rem;
    font-size: 0.75rem;
  }
  
  .marquee-overlay {
    width: 60px;
  }
  
  /* Hide control on mobile */
  .marquee-control {
    display: none;
  }
  
  /* Hide badges on very small screens */
  @media (max-width: 360px) {
    .marquee-badge {
      display: none;
    }
  }
}

/* Slow down animation on desktop for better readability */
@media (min-width: 1024px) {
  .marquee-track {
    animation-duration: 50s;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-icon,
  .marquee-badge,
  .marquee-separator,
  .marquee-border {
    animation: none !important;
  }
  
  .marquee-track {
    animation: marqueeScrollAccessible 120s linear infinite;
  }
  
  @keyframes marqueeScrollAccessible {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .premium-marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

/* Performance optimization */
.marquee-track {
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}



/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: var(--glass);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.35s var(--ease-luxury),
              box-shadow 0.35s var(--ease-luxury);
}

.navbar:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  max-width: 180px;
  height: auto;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s var(--ease-luxury);
  letter-spacing: 0.02em;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #c9a23f);
  transition: width 0.35s var(--ease-luxury);
  transform-origin: left;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease-luxury);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.icon-btn:hover {
  background: rgba(146, 139, 241, 0.1);
  transform: translateY(-2px);
}

.icon-btn .wishlist-icon,
.icon-btn .cart-icon {
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.wishlist-btn.added .wishlist-icon {
  color: #ff4757;
  animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--glass);
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(146, 139, 241, 0.1);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: all 0.3s var(--ease-luxury);
  transform-origin: center;
}

/* Active/Hover state for hamburger */
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(146, 139, 241, 0.1), 
    rgba(201, 162, 63, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
  opacity: 1;
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.mobile-nav-icon {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
  transform: scale(1.1);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(146, 139, 241, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-cart-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-cart-count {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.mobile-view-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mobile-view-cart:hover {
  background: #7c74e8;
  transform: translateX(5px);
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 2rem;
  }
  
  .nav-menu a {
    font-size: 0.9rem;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }
  
  .nav-logo img {
    max-width: 140px;
  }
  
  /* Hide desktop menu on mobile */
  .nav-menu {
    display: none;
  }
  
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Adjust icon buttons on mobile */
  .nav-icons {
    gap: 0.75rem;
  }
  
  .icon-btn {
    width: 40px;
    height: 40px;
  }
  
  .icon-btn .wishlist-icon,
  .icon-btn .cart-icon {
    font-size: 1.1rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
  }
  
  .nav-logo img {
    max-width: 120px;
  }
  
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  
  .cart-count {
    top: 0;
    right: 0;
    font-size: 0.65rem;
    min-width: 16px;
    height: 16px;
  }
  
  .mobile-menu {
    max-width: 100%;
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-nav {
    padding: 4rem 1.5rem 1.5rem;
  }
  
  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  .mobile-menu-footer {
    padding: 1rem 1.5rem;
  }
}

/* ================= BODY SCROLL LOCK ================= */
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 997;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.mobile-menu:not(.active) {
  animation: slideOutRight 0.3s ease forwards;
}
/* ================= PREMIUM HERO ================= */
.premium-hero {
  position: relative;
  min-height: 85vh;
  padding: 2rem 1rem;
  background: #fefefe;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .premium-hero {
    min-height: 75vh;
    padding: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .premium-hero {
    padding: 4rem 3rem;
    min-height: 80vh;
  }
}

/* Background Effects */
.premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(192, 166, 98, 0.08) 0%, transparent 70%);
  animation: glowFloat 15s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, -5%) scale(1.1); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(192, 166, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 166, 98, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Main Container */
.premium-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .premium-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left Content */
.premium-content {
  text-align: center;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .premium-content {
    text-align: left;
    padding: 2rem 0;
  }
}

/* Premium Tag */
.premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tag-line {
  width: 40px;
  height: 1px;
  background: #c0a662;
  opacity: 0.6;
}

.premium-tag span:not(.tag-line) {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #c0a662;
  text-transform: uppercase;
  font-weight: 500;
}

/* Headline */
.premium-headline {
  margin-bottom: 1.5rem;
}

.premium-headline h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

.headline-line {
  display: block;
  position: relative;
}

.headline-line.accent {
  color: #c0a662;
  position: relative;
}

.headline-line.accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c0a662, transparent);
  opacity: 0.3;
}

/* Typing Text */
.premium-subtitle {
  margin-bottom: 2rem;
  min-height: 60px;
}

.typing-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .typing-text {
    margin: 0;
  }
}

.typing-cursor {
  color: #c0a662;
  animation: cursorBlink 1s infinite;
  font-weight: 300;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Features */
.premium-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 1024px) {
  .premium-features {
    justify-content: flex-start;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.feature-icon {
  color: #c0a662;
  font-size: 0.875rem;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.feature-text {
  font-size: 0.875rem;
  color: #555;
  font-weight: 400;
}

/* CTA Buttons */
.premium-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .premium-cta {
    flex-direction: row;
    align-items: center;
  }
}

.cta-primary {
  background: #c0a662;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 166, 98, 0.2);
}

.cta-primary:hover {
  background: #b3964e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 166, 98, 0.3);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(5px);
}

.cta-secondary {
  color: #c0a662;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 2rem;
  border: 1px solid rgba(192, 166, 98, 0.3);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(192, 166, 98, 0.05);
  border-color: #c0a662;
}

.play-icon {
  font-size: 0.875rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

.badge span:first-child {
  color: #c0a662;
  font-weight: 600;
}

/* Right Slider */
.premium-slider {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background: white;
}

@media (min-width: 768px) {
  .premium-slider {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .premium-slider {
    height: 450px;
  }
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 300px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(192, 166, 98, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.slide-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.slide-category {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #c0a662;
  text-transform: uppercase;
  font-weight: 600;
}

.slide-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 2rem;
  z-index: 3;
}

.control-btn {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.control-btn:hover {
  background: #f8f8f8;
  border-color: #c0a662;
  color: #c0a662;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #c0a662;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(192, 166, 98, 0.5);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
}

.progress-bar {
  height: 100%;
  width: 25%;
  background: #c0a662;
  transition: width 0.3s ease;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #666;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #c0a662, transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, #c0a662, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -20px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ================= SHOP BY CATEGORY ================= */
.shop-category {
  padding: 80px 5%;
  background: #f7efe1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.shop-category-header {
  text-align: center;
  margin-bottom: 48px;
}

.shop-category-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--dark);
  margin: 0;
}

/* SLIDER */
.shop-category-slider {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shop-category-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.shop-category-card {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  cursor: pointer;
}

/* CIRCLE */
.shop-category-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid #c19649;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.shop-category-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* HOVER */
.shop-category-card:hover .shop-category-circle {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(146,139,241,0.35);
}

.shop-category-card:hover .shop-category-circle img {
  transform: scale(1.05);
}

/* TEXT */
.shop-category-card span {
  display: block;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.4px;
}

/* ================= NEW ARRIVALS ================= */
.new-arrivals-slider {
  padding: 40px 5% 80px;
  background: #ffffff;
  width: 100%;
}

/* HEADER */
.new-arrivals-header {
  text-align: center;
  margin-bottom: 48px;
}

.new-arrivals-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 8px;
  color: var(--dark);
}

.new-arrivals-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* TRACK */
.new-arrivals-track {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 10px 10px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.new-arrivals-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.na-card {
  flex: 0 0 auto;
  width: 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.na-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

/* IMAGE */
.na-image {
  position: relative;
  background: #f7f7f7;
  height: 260px;
  overflow: hidden;
}

.na-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.na-card:hover .na-image img {
  transform: scale(1.05);
}

/* ADD TO CART */
.na-cart-btn {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(146,139,241,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  z-index: 2;
}

.na-cart-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 30px rgba(146,139,241,0.45);
}

.na-cart-btn.added {
  background-color: #7c74e8;
  animation: cartSuccess 0.5s var(--ease-luxury);
}

@keyframes cartSuccess {
  0%   { transform: translateX(-50%) scale(1); }
  45%  { transform: translateX(-50%) scale(1.035); }
  100% { transform: translateX(-50%) scale(1); }
}

/* INFO */
.na-info {
  padding: 16px 16px 20px;
  text-align: center;
}

.na-info h3 {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.na-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
/* ================= PREMIUM GENDER COLLECTIONS ================= */
.premium-gender-collections {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #fefefe 0%, #fafafa 100%);
}

@media (min-width: 768px) {
  .premium-gender-collections {
    padding: 5rem 2rem;
  }
}

/* Header */
.premium-collection-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.collection-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: #c0a662;
  opacity: 0.5;
}

.collection-eyebrow span:not(.eyebrow-line) {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #c0a662;
  text-transform: uppercase;
  font-weight: 500;
}

.premium-collection-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.premium-collection-header p {
  color: #666;
  font-size: 1.125rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Grid Layout */
.premium-gender-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .premium-gender-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .premium-gender-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Gender Cards */
.gender-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .gender-card {
    height: 450px;
  }
}

.gender-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gender-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gender-card:hover img {
  transform: scale(1.05);
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

/* Badge */
.gender-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #c0a662;
  border-radius: 50%;
}

.gender-badge span:not(.badge-dot) {
  font-size: 0.875rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
}

/* Title & Description */
.gender-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gender-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Stats */
.gender-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c0a662;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* CTA Button */
.gender-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gender-cta:hover {
  background: white;
  transform: translateX(5px);
}

.gender-cta svg {
  transition: transform 0.3s ease;
}

.gender-cta:hover svg {
  transform: translateX(3px);
}

/* Featured Card */
.featured-card {
  background: linear-gradient(135deg, #f9f5f0 0%, #fff 100%);
  border: 1px solid rgba(192, 166, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .featured-card {
    grid-column: span 2;
  }
}

.featured-content {
  text-align: center;
  max-width: 300px;
}

.featured-tag {
  display: inline-block;
  background: rgba(192, 166, 98, 0.1);
  color: #c0a662;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.featured-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.featured-content p {
  color: #666;
  margin-bottom: 2rem;
}

.featured-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.featured-images img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-cta {
  display: inline-block;
  background: #c0a662;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-cta:hover {
  background: #b3964e;
  transform: translateY(-2px);
}
/* ================= PREMIUM LIMITED OFFER ================= */
.premium-limited-offer {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1f0c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .premium-limited-offer {
    padding: 5rem 2rem;
  }
}

/* Background Effects */
.premium-limited-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(192, 166, 98, 0.1) 0%, transparent 70%);
  animation: glowMove 20s infinite alternate;
}

@keyframes glowMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5%, -5%) rotate(5deg); }
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .offer-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Content */
.offer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(192, 166, 98, 0.2);
  border: 1px solid rgba(192, 166, 98, 0.3);
  color: #c0a662;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #c0a662;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0.5rem 0;
}

.offer-subtitle {
  display: block;
  font-size: 1.5rem;
  color: #c0a662;
  font-weight: 300;
  margin-top: 0.5rem;
}

.offer-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

/* Premium Timer */
.premium-timer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.timer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.timer-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timer-dots {
  display: flex;
  gap: 0.25rem;
}

.timer-dots span {
  width: 4px;
  height: 4px;
  background: #c0a662;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.timer-dots span:nth-child(2) { animation-delay: 0.5s; }
.timer-dots span:nth-child(3) { animation-delay: 1s; }

@keyframes blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.timer-units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .timer-units {
    grid-template-columns: repeat(8, auto);
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .timer-separator {
    display: block;
  }
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  font-family: monospace;
  background: linear-gradient(45deg, #c0a662, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  padding: 0.5rem;
  min-width: 60px;
  text-align: center;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

.timer-unit .timer-label {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.timer-separator {
  display: none;
  font-size: 1.5rem;
  color: #c0a662;
  font-weight: 300;
}

.timer-progress {
  margin-top: 2rem;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #c0a662, #ffd700);
  border-radius: 2px;
  animation: progressPulse 2s infinite alternate;
}

@keyframes progressPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Features */
.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  color: #c0a662;
  font-weight: 600;
}

/* CTA */
.offer-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .offer-cta {
    flex-direction: row;
    align-items: center;
  }
}

.primary-cta {
  background: linear-gradient(45deg, #c0a662, #e6c878);
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-align: center;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(192, 166, 98, 0.3);
}

.secondary-cta {
  color: #c0a662;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 2rem;
  border: 1px solid rgba(192, 166, 98, 0.3);
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  background: rgba(192, 166, 98, 0.1);
  border-color: #c0a662;
}

/* Visual */
.offer-visual {
  position: relative;
  height: 350px;
}

@media (min-width: 1024px) {
  .offer-visual {
    height: 400px;
  }
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product {
  position: relative;
  width: 200px;
  height: 200px;
}

@media (min-width: 768px) {
  .main-product {
    width: 250px;
    height: 250px;
  }
}

.main-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: floatRotate 8s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.product-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(192, 166, 98, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatTag 6s ease-in-out infinite;
}

.floating-tag:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-tag:nth-child(2) {
  bottom: 30%;
  right: 15%;
  animation-delay: 1s;
}

.floating-tag span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c0a662;
}

.floating-tag small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c0a662;
  border-radius: 50%;
  animation: sparkleFloat 4s infinite linear;
}

.floating-sparkle:nth-child(3) {
  top: 40%;
  right: 25%;
  animation-delay: 0.5s;
}

.floating-sparkle:nth-child(4) {
  bottom: 40%;
  left: 20%;
  animation-delay: 1.5s;
}

@keyframes sparkleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
  100% { transform: translateY(-40px) scale(0); opacity: 0; }
}

.product-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.label-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.label-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c0a662;
}

.original-price {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.label-discount {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc2626;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}

/* ================= PREMIUM TABBED COLLECTIONS ================= */
.premium-collections {
  padding: 4rem 1rem;
  background: #fefefe;
}

@media (min-width: 768px) {
  .premium-collections {
    padding: 5rem 2rem;
  }
}

.collections-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.collections-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .collections-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.header-left {
  flex: 1;
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #c0a662;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.section-description {
  color: #666;
  font-size: 1.125rem;
  max-width: 500px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c0a662;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(192, 166, 98, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all:hover {
  background: rgba(192, 166, 98, 0.1);
  border-color: #c0a662;
}

/* Tabs */
.collections-tabs {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.collections-tabs::-webkit-scrollbar {
  display: none;
}

.tabs-scroll {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  min-width: max-content;
}

.collection-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: max-content;
}

.collection-tab:hover {
  border-color: rgba(192, 166, 98, 0.3);
  transform: translateY(-2px);
}

.collection-tab.active {
  background: #c0a662;
  border-color: #c0a662;
  color: white;
}

.tab-icon {
  font-size: 1.25rem;
}

.tab-text {
  font-weight: 500;
}

.tab-count {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.collection-tab.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
}

/* Content */
.collections-content {
  position: relative;
  min-height: 500px;
}

.collection-content {
  display: none;
  grid-template-columns: 1fr;
  gap: 3rem;
  animation: fadeIn 0.5s ease;
}

@media (min-width: 1024px) {
  .collection-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.collection-content.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Visual */
.collection-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .collection-visual {
    grid-template-columns: 2fr 1fr;
  }
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-item:hover .item-name {
  transform: translateY(0);
}

/* Info */
.collection-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
}

.collection-description {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.6;
}

.collection-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c0a662;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

.collection-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .collection-cta {
    flex-direction: row;
  }
}

.cta-primary {
  background: #c0a662;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #b3964e;
  transform: translateY(-2px);
}

.cta-secondary {
  color: #c0a662;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 2rem;
  border: 1px solid rgba(192, 166, 98, 0.3);
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(192, 166, 98, 0.1);
  border-color: #c0a662;
}

/* Navigation */
.collections-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-arrow {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.nav-arrow:hover {
  border-color: #c0a662;
  color: #c0a662;
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #c0a662;
  transform: scale(1.2);
}

.nav-dot:hover {
  background: rgba(192, 166, 98, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .premium-limited-offer,
  .premium-collections {
    padding: 3rem 1rem;
  }
  
  .offer-title {
    font-size: 2rem;
  }
  
  .timer-units {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .main-product {
    width: 180px;
    height: 180px;
  }
  
  .collection-title {
    font-size: 2rem;
  }
  
  .collection-visual {
    grid-template-columns: 1fr;
  }
  
  .collection-grid {
    order: -1;
  }
  
  .tabs-scroll {
    padding: 0.25rem;
  }
  
  .collection-tab {
    padding: 0.75rem 1rem;
  }
  
  .tab-text {
    font-size: 0.875rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ================= PREMIUM INSTAGRAM GALLERY ================= */
.premium-insta-gallery {
  padding: 4rem 1rem;
  background: #fefefe;
}

@media (min-width: 768px) {
  .premium-insta-gallery {
    padding: 5rem 2rem;
  }
}

.premium-insta-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Instagram Header */
.insta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .insta-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.insta-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(192, 166, 98, 0.15);
}

.insta-header-content {
  flex: 1;
}

.insta-subtitle {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #c0a662;
  text-transform: uppercase;
  font-weight: 500;
}

.insta-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0.5rem 0;
}

.insta-header p {
  color: #666;
  font-size: 1.125rem;
}

.insta-handle {
  color: #c0a662;
  font-weight: 600;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #c0a662;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.insta-follow-btn:hover {
  background: #b3964e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(192, 166, 98, 0.2);
}

/* Instagram Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .insta-grid .featured-post {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.insta-post {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.insta-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-post:hover img {
  transform: scale(1.05);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: white;
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.post-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.post-user, .post-caption {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Instagram Stories */
.insta-stories {
  overflow: hidden;
}

.story-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.story-scroll::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}

.story-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4);
  position: relative;
}

.story-circle::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.story-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.story-item span {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .premium-gender-collections,
  .premium-insta-gallery {
    padding: 3rem 1rem;
  }
  
  .premium-collection-header h2,
  .insta-header h2 {
    font-size: 2rem;
  }
  
  .gender-card {
    height: 350px;
  }
  
  .gender-title {
    font-size: 1.75rem;
  }
  
  .insta-grid {
    gap: 0.75rem;
  }
  
  .insta-icon-wrapper {
    width: 50px;
    height: 50px;
  }
}

/* Smooth animations */
.gender-card,
.insta-post,
.gender-cta,
.featured-cta,
.insta-follow-btn {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.gender-card:nth-child(1) { animation-delay: 0.1s; }
.gender-card:nth-child(2) { animation-delay: 0.2s; }
.gender-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ================= PREMIUM TESTIMONIALS CSS ================= */

/* Section Base */
.premium-testimonials {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fdfcfb 0%, #faf8f5 100%);
  position: relative;
  overflow: hidden;
}

.premium-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(146, 139, 241, 0.2), 
    transparent);
}

/* Container */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(146, 139, 241, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  opacity: 0.6;
  transform: scale(0.95);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 
    0 30px 60px rgba(146, 139, 241, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(146, 139, 241, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star {
  color: #FFC107;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  margin-left: 0.5rem;
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(146, 139, 241, 0.15);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
  font-weight: 400;
  position: relative;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(146, 139, 241, 0.1);
}

.customer-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 4px 8px rgba(146, 139, 241, 0.3);
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
}

.customer-location {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customer-location::before {
  content: "📍";
  font-size: 0.75rem;
}

.customer-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(146, 139, 241, 0.1);
  color: var(--primary);
  border-radius: 1rem;
  border: 1px solid rgba(146, 139, 241, 0.2);
}

/* Card Decoration */
.card-decoration {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.decoration-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(146, 139, 241, 0.3));
  border-radius: 1px;
}

.decoration-dot {
  width: 6px;
  height: 6px;
  background: rgba(146, 139, 241, 0.3);
  border-radius: 50%;
}

/* Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(146, 139, 241, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.nav-dot.active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(146, 139, 241, 0.4);
}

.nav-dot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  pointer-events: none;
}

.nav-dot:active::after {
  background: rgba(146, 139, 241, 0.1);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(146, 139, 241, 0.2);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.premium-testimonials:hover .nav-arrow {
  opacity: 1;
  visibility: visible;
}

.nav-prev {
  left: -28px;
}

.nav-next {
  right: -28px;
}

.nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(146, 139, 241, 0.3);
}

.nav-arrow:hover svg {
  stroke: white;
}

.nav-arrow svg {
  stroke: var(--primary);
  transition: stroke 0.3s ease;
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .premium-testimonials {
    padding: 4rem 1.5rem;
  }
  
  .testimonials-wrapper {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .quote-icon {
    font-size: 3rem;
    top: 1rem;
    right: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .nav-arrow {
    display: none;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .premium-testimonials {
    padding: 3rem 1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  
  .testimonial-card {
    opacity: 1;
    transform: scale(1);
    margin: 0.5rem 0;
  }
  
  .testimonial-card.active {
    transform: scale(1);
  }
  
  .customer-avatar {
    width: 56px;
    height: 56px;
  }
  
  .customer-name {
    font-size: 1rem;
  }
  
  .testimonial-nav {
    margin-top: 1.5rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .premium-testimonials {
    padding: 2.5rem 0.75rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.75rem 1.25rem;
  }
  
  .quote-icon {
    font-size: 2.5rem;
    top: 1rem;
    right: 1.25rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonial-footer {
    gap: 0.75rem;
  }
  
  .customer-avatar {
    width: 48px;
    height: 48px;
  }
  
  .verified-badge {
    width: 20px;
    height: 20px;
  }
  
  .verified-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .premium-testimonials {
    padding: 8rem 2rem;
  }
  
  .testimonials-wrapper {
    gap: 3rem;
  }
  
  .testimonial-card {
    padding: 3rem 2.5rem;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-testimonials {
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-card {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
  opacity: 0;
}

/* Card hover effect */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(146, 139, 241, 0.03) 0%,
    rgba(201, 162, 63, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1.5rem;
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Star animation */
.star {
  animation: starPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--star-index, 0) * 0.2s);
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Decoration animation */
.decoration-dot {
  animation: dotFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--dot-index, 0) * 0.5s);
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ================= FOOTER ================= */
.lux-footer {
  background: #2b2f32;
  color: #e6e6e6;
  padding: 80px 5% 0;
  width: 100%;
}

.lux-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-logo span {
  color: var(--primary);
  font-weight: 500;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 22px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

/* HEADINGS */
.footer-col h4 {
  font-size: 14px;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 500;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #d5d5d5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

/* PAYMENTS */
.payment-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.payment-icons span {
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 12px;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cfcfcf;
}

.secure-note span {
  color: var(--primary);
  font-size: 16px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 70px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #bdbdbd;
}

.footer-note {
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .nav-logo img {
    max-width: 150px;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  .his-her-wrapper {
    gap: 20px;
  }
  
  .his-her-card {
    height: 350px;
  }
  
  .lux-offer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lux-offer-visual {
    height: 400px;
    order: -1;
  }
  
  .insta-lux-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .lux-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    height: 85vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .shop-category-circle {
    width: 120px;
    height: 120px;
  }
  
  .shop-category-card {
    width: 120px;
  }
  
  .shop-category-slider {
    gap: 20px;
  }
  
  .na-card {
    width: 200px;
  }
  
  .na-image {
    height: 220px;
  }
  
  .his-her-wrapper {
    grid-template-columns: 1fr;
  }
  
  .his-her-card {
    height: 300px;
  }
  
  .his-her-overlay {
    padding: 24px;
  }
  
  .his-her-overlay h3 {
    font-size: 24px;
  }
  
  .pj-collection-tabs {
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .pj-slides {
    height: 300px;
  }
  
  .pj-overlay {
    padding: 30px;
    max-width: 100%;
  }
  
  .pj-overlay h3 {
    font-size: 24px;
  }
  
  .pj-arrow {
    display: none;
  }
  
  .insta-lux-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tj-testimonial {
    padding: 32px 24px;
  }
}

/* Small Mobile (up to 576px) */
@media (max-width: 576px) {
  .nav-container {
    padding: 12px 16px;
  }
  
  .hero {
    height: 80vh;
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .shop-category, .new-arrivals-slider, .his-her-section,
  .lux-offer, .pj-collections, .insta-lux, .tj-testimonials {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .shop-category-circle {
    width: 100px;
    height: 100px;
  }
  
  .shop-category-card {
    width: 100px;
  }
  
  .shop-category-card span {
    font-size: 12px;
  }
  
  .na-card {
    width: 170px;
  }
  
  .na-image {
    height: 200px;
  }
  
  .na-cart-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  
  .lux-timer {
    justify-content: center;
  }
  
  .lux-time {
    min-width: 70px;
    padding: 16px;
  }
  
  .lux-time span {
    font-size: 24px;
  }
  
  .pj-collection-tabs {
    margin-bottom: 24px;
  }
  
  .pj-tab {
    padding: 12px 18px;
    font-size: 12px;
  }
  
  .pj-slides {
    height: 250px;
  }
  
  .pj-overlay {
    padding: 20px;
  }
  
  .pj-overlay h3 {
    font-size: 20px;
  }
  
  .pj-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .insta-lux-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .lux-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    margin-top: 50px;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }
}

/* Show hamburger on mobile */
@media (max-width: 1023px) {
  .hamburger {
    display: flex !important;
  }
  
  /* Hide desktop menu on mobile */
  .nav-menu {
    display: none !important;
  }
}

/* Ensure mobile menu is only visible when active */
.mobile-menu:not(.active) {
  display: none !important;
}

/* Desktop styles - ensure desktop menu is visible */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* ================= INSTAGRAM VIDEO POST ================= */

.insta-post {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Hover zoom for premium feel */
.insta-post:hover .insta-video {
  transform: scale(1.08);
}

/* Overlay */
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

/* Show overlay on hover */
.insta-post:hover .insta-overlay {
  opacity: 1;
}

/* Stats */
.post-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

/* Username */
.post-user {
  font-size: 15px;
  font-weight: 500;
  color: #d4af37; /* luxury gold */
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .insta-overlay {
    opacity: 1; /* Always visible on mobile */
  }
}

/* ================= CART SIDEBAR ================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
    padding: 8px;
}

.cart-close:hover {
    color: #111827;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    margin-bottom: 8px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border-radius: 6px;
    padding: 4px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #374151;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
    color: #111827;
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.remove-item:hover {
    background: #fee2e2;
}

.cart-item-total {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    white-space: nowrap;
}

.cart-summary {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #374151;
}

.cart-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 12px;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-empty h4 {
    font-size: 1.25rem;
    color: #111827;
    margin: 0 0 8px 0;
}

.cart-empty p {
    color: #6b7280;
    margin: 0 0 24px 0;
}

.continue-shopping {
    padding: 12px 24px;
    background: #111827;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}

.continue-shopping:hover {
    background: #374151;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-items {
        padding: 16px;
    }
    
    .cart-item {
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
}

/* Animation for cart count */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Wishlist button */
.wishlist-btn.active .wishlist-icon {
    color: #ef4444;
}

/* ================= UNIVERSAL MOBILE MENU STYLES ================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    display: flex;
}

.mobile-nav {
    padding: 120px 30px 40px;
    flex: 1;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #D4AF37;
    padding-left: 15px;
}

.mobile-nav-icon {
    font-size: 20px;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-footer {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-cart-info {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-cart-count {
    font-size: 16px;
    font-weight: 600;
    color: #D4AF37;
}

.mobile-view-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #C19B2E 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-view-cart:hover {
    background: linear-gradient(135deg, #C19B2E 0%, #A88424 100%);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu open state */
body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
        width: 85%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
    }
}



/* ================= GLOBAL SEARCH BAR ================= */
.search-container {
    max-width: 800px;
    margin: 15px auto 25px;
    padding: 0 20px;
    position: relative;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.search-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 18px;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    outline: none;
    box-sizing: border-box;
    height: 56px;
}

.search-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    display: none;
    padding: 5px;
    z-index: 2;
}

.search-clear:hover {
    color: #ef4444;
}

.search-btn {
    padding: 0 28px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 56px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.search-btn:active {
    transform: translateY(0);
}

/* ================= SEARCH SUGGESTIONS ================= */
.search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    z-index: 1000;
    display: none;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestions-header {
    padding: 15px 20px;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.suggestions-list {
    max-height: 350px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #fff9f0;
}

.suggestion-item:hover .suggestion-name {
    color: #d4af37;
}

.suggestion-icon {
    font-size: 20px;
    min-width: 30px;
    text-align: center;
}

.suggestion-info {
    flex: 1;
}

.suggestion-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.suggestion-category {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888;
}

.suggestion-badge {
    background: #d4af37;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* ================= SEARCH RESULTS MODAL ================= */
.search-results-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: none;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.search-results-modal.active {
    display: flex;
    flex-direction: column;
}

.search-results-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.search-results-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.search-results-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.search-results-close:hover {
    opacity: 1;
}

.search-results-content {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 120px);
}

.search-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.search-result-item:hover {
    background: #fff9f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-result-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-details {
    flex: 1;
}

.search-result-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.search-result-category {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.search-result-price {
    font-weight: 700;
    color: #d4af37;
    font-size: 15px;
}

.search-results-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.search-results-empty .empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.search-results-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.view-all-results {
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-all-results:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.search-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.search-results-overlay.active {
    display: block;
}

/* ================= RESPONSIVE SEARCH ================= */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .search-container {
        max-width: 900px;
        margin: 20px auto 30px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 18px 20px 18px 50px;
    }
    
    .suggestion-name {
        font-size: 15px;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .search-container {
        max-width: 800px;
        margin: 15px auto 25px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .search-container {
        max-width: 700px;
        padding: 0 20px;
    }
    
    .search-input {
        padding: 15px 20px 15px 45px;
        font-size: 15px;
    }
    
    .search-btn {
        padding: 0 25px;
        font-size: 15px;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .search-container {
        padding: 0 15px;
        margin: 10px auto 20px;
    }
    
    .search-wrapper {
        gap: 8px;
    }
    
    .search-input {
        padding: 14px 16px 14px 42px;
        font-size: 14px;
        height: 48px;
    }
    
    .search-icon {
        left: 12px;
        font-size: 16px;
    }
    
    .search-btn {
        padding: 0 16px;
        font-size: 14px;
        height: 48px;
        min-width: 70px;
    }
    
    .search-clear {
        font-size: 16px;
        right: 12px;
    }
    
    .suggestion-item {
        padding: 10px 15px;
    }
    
    .suggestion-icon {
        font-size: 18px;
        min-width: 25px;
    }
    
    .suggestion-name {
        font-size: 13px;
    }
    
    .search-results-modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .search-results-header {
        padding: 15px 20px;
    }
    
    .search-results-header h3 {
        font-size: 18px;
    }
    
    .search-result-item {
        padding: 12px;
        gap: 12px;
    }
    
    .search-result-image {
        width: 60px;
        height: 60px;
    }
    
    .search-result-name {
        font-size: 14px;
    }
}

/* Small Mobile (425px - 575px) */
@media (max-width: 575px) {
    .search-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px;
        height: auto;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-suggestions {
        left: 15px;
        right: 15px;
        max-height: 350px;
    }
}

/* Extra Small Mobile (under 375px) */
@media (max-width: 374px) {
    .search-container {
        padding: 0 10px;
    }
    
    .search-input {
        padding: 12px 12px 12px 38px;
        font-size: 13px;
        height: 44px;
    }
    
    .search-icon {
        left: 10px;
        font-size: 15px;
    }
    
    .suggestion-icon {
        font-size: 16px;
        min-width: 22px;
    }
    
    .suggestion-name {
        font-size: 12px;
    }
    
    .suggestion-category {
        font-size: 10px;
    }
    
    .search-results-content {
        padding: 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .search-btn {
        min-height: 48px;
    }
    
    .search-input {
        min-height: 48px;
    }
    
    .suggestion-item:active {
        background: #fff9f0;
    }
}

/* ================= EXISTING RESPONSIVE CODE PRESERVED ================= */
/* All your existing responsive styles remain untouched */

