/* CSS Variables */
:root {
  --luxury-gold: #FFD363;
  --warm-yellow: #FFD363;
  --deep-black: #1a1a1a;
  --soft-gray: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --gray-400: #9ca3af;
  --gray-800: #1f2937;
  --slider-gold: #D4AF37;
  --slider-dark-gold: #B8941C;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  /* Enhanced smooth scrolling */
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  font-weight: 400;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Luxury Deep Scrolling */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 100px;
  /* Smooth momentum physics */
  overscroll-behavior: smooth;
}

/* Google-style smooth scrolling enhancements */
body.is-scrolling {
  /* Allow normal interactions while scrolling */
}

body.is-scrolling * {
  /* Smooth transitions for elements during scroll */
  transition: transform 0.1s ease;
}

/* Luxury scroll snapping for sections */
section, .section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  /* Enhanced section transitions */
  scroll-margin-top: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Luxury Deep Scrolling Enhancement */
body, html {
  /* Ultra smooth native scrolling */
  scroll-behavior: smooth;
  /* Enhanced momentum */
  -ms-scroll-chaining: chained;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Webkit momentum */
  -webkit-overflow-scrolling: touch;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .product-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

/* Google-style momentum scrolling */
/* Luxury Scrollbar Design */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 211, 99, 0.4), rgba(255, 211, 99, 0.6));
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 211, 99, 0.6), rgba(255, 211, 99, 0.8));
  width: 8px;
}

/* Viewport-based smooth animations */
@supports (scroll-behavior: smooth) {
  .container, .hero-section, .product-section, .promotional-banner {
    scroll-margin-top: 6rem;
  }
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* Container */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Background Classes */
.bg-soft-gray {
  background-color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

/* Top Header - ALWAYS VISIBLE */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--warm-yellow);
  color: var(--black);
  text-align: center;
  padding: 0.15rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700px;
  font-size: 0.70rem;
  letter-spacing: 1.0px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s ease-in-out;
  background-color: transparent;
}

.navbar.scrolled {
  top: 0.9rem;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  width: auto;
  height: 35px;
  justify-content: flex-start;
  margin-left: 20px;
  padding: 0 10px;
}

.menu-btn:hover {
  color: var(--luxury-gold);
  transform: scale(1.1);
}

/* Hamburger Icon Animation */
.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Active state - Transform to X */
.menu-btn.active .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-btn:hover .menu-text {
  color: var(--luxury-gold);
}

.logo {
  size: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.logo-text {
  color: var(--luxury-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-image {
    height: 90px; /* adjust as needed */
    object-fit: contain;
}

.nav-action-btn {
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-action-btn:hover {
  color: var(--luxury-gold);
}

/* Mobile Menu with Slide Animation */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 60;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.close-menu-btn {
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3rem;
}

.close-menu-btn:hover {
  color: var(--luxury-gold);
}

.mobile-menu-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-menu-item {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-30px);
  animation: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
}

.mobile-menu-item:hover {
  color: var(--luxury-gold);
  transform: translateX(10px) scale(1.05);
}

/* Menu items slide in animation */
.mobile-menu.active .mobile-menu-item {
  opacity: 1 !important;
  transform: translateX(0) !important;
  animation: slideInFromLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mobile-menu.active .mobile-menu-item:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-item:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-item:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-menu.active .mobile-menu-item:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu.active .mobile-menu-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  filter: blur(2px);
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  filter: blur(0);
}

/* Luxury fade transitions with scale and blur effects */
.hero-slide.fade-in {
  animation: luxuryFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-slide.fade-out {
  animation: luxuryFadeOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes luxuryFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes luxuryFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(2px);
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* No black/white space now */
  display: block;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 1rem;
}

/* Desktop only - content positioning with smooth transform */
.desktop-hero .hero-slide .hero-content {
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: none !important; /* Remove any transition effects */
}

.desktop-hero .hero-slide:nth-child(1) .hero-content {
  transform: translateX(-100px) !important;
}

.desktop-hero .hero-slide:nth-child(2) .hero-content {
  transform: translateX(100px) !important;
}

.desktop-hero .hero-slide:nth-child(3) .hero-content {
  transform: translateX(-100px) !important;
}

/* Mobile - reset transform to keep everything centered */
.mobile-hero .hero-slide .hero-content {
  transform: translateX(0) !important;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Mobile responsiveness - Reset desktop positioning for mobile */
@media (max-width: 768px) {
  .desktop-hero .hero-slide:nth-child(1) .hero-content,
  .desktop-hero .hero-slide:nth-child(2) .hero-content,
  .desktop-hero .hero-slide:nth-child(3) .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.hero-slide.active .hero-content {
  animation: smoothFadeIn 0.8s ease-out;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-20px) scale(0.8);
}

.hero-slide.active .hero-title {
  animation: smoothFadeIn 1.0s ease-out forwards;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;

}

.hero-btn {
  text-decoration: none;
  background-color: var(--luxury-gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;

}

.hero-btn:hover {
  background-color: var(--luxury-gold);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.hero-section:hover .hero-nav {
  opacity: 1;
  visibility: visible;
}

.hero-nav:hover {
  background-color: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--warm-yellow);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

/* Category Browse */
.category-browse {
  padding: 4rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-content {
  text-align: center;
  color: var(--white);
}

.category-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 5px;
}

.category-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 4px;
}

/* Product Sections */
.product-section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  gap: 2.5rem;
}

.section-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section-line-left {
  width: 220px;
  height: 1px;
  background-color: #ddd;
}

.section-line-right {
  width: 200px;
  height: 1px;
  background-color: #ddd;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--black);
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.view-all {
  color: var(--black);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}



.view-all span {
  margin-left: 0.3rem;
  font-size: 1rem;
}

/* Product Grid - 4 Products Per Row */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
}

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

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

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

.product-card {
  background-color: var(--white);
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: visible;
  padding: 0;
  min-height: 400px;
}

.product-image-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  margin-bottom: 0;
}

.product-image {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.out-of-stock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ef4444;
  color: var(--white);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
  z-index: 3;
  text-decoration: none;
  text-align: center;
  display: block;
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
  opacity: 1;
}

.quick-view-btn:hover {
  background-color: #000000;
}



.product-info {
  padding: 1.5rem;
  text-align: center;
  background-color: var(--white);
}

.product-category {
  color: var(--gray-400);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-price {
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Promotional Banner Slider */
.promotional-banner {
  position: relative;
  height: 24rem;
  overflow: hidden;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-slide.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-slide.slide-out {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* OR left center */

}
/* Both hidden by default to avoid flash */
.desktop-only,
.mobile-only {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show Desktop image on large screens */
@media (min-width: 769px) {
  .desktop-only {
    display: block;
  }
}

/* Show Mobile image on small screens */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.promo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  padding: 1.5rem 1.5rem 1.5rem 6rem;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-slide:not(.active) .promo-content {
  transform: translateY(30px);
  opacity: 0.8;
}

.promo-slide.active .promo-content {
  transform: translateY(0);
  opacity: 1;
}

/* Promotional Banner Navigation */
.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  font-size: 1.5rem;
  font-weight: bold;
}

.promotional-banner:hover .promo-nav {
  opacity: 1;
  visibility: visible;
}

.promo-prev-btn {
  left: 1rem;
}

.promo-next-btn {
  right: 1rem;
}

.promo-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-align: left;
}

.promo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: left;
}

.promo-btn {
  background-color: var(--warm-yellow);
  color: var(--black);
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-decoration: none;
}

.promo-btn:hover {
  background-color: var(--luxury-gold);
}

/* Product Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s ease;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: 1000px;
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.show .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
}

.modal-images {
  padding: 2rem;
  background-color: var(--soft-gray);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}

.modal-image-thumbnails {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.modal-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
  border-color: var(--luxury-gold);
  opacity: 1;
  transform: scale(1.05);
}

.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.modal-category {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.modal-price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--luxury-gold);
  letter-spacing: 0.5px;
}

.modal-original-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 1.25rem;
}

.modal-description h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.modal-description p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-features h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.modal-features ul {
  list-style: none;
  padding: 0;
}

.modal-features li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.modal-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: bold;
}

.modal-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.modal-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--luxury-gold);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-buy-btn:hover {
  background-color: var(--warm-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.modal-affiliate-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    height: auto;
    max-height: 95vh;
    margin: 2.5vh auto;
  }

  .modal-content {
    grid-template-columns: 1fr;
    height: auto;
  }

  .modal-images {
    padding: 1rem;
    order: 1;
  }

  .modal-info {
    padding: 1rem;
    order: 2;
    max-height: none;
    overflow-y: auto;
  }

  .modal-main-image {
    max-height: 200px;
  }

  .main-modal-image {
    max-height: 200px;
  }

  .modal-title {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .modal-price {
    font-size: 1.5rem;
  }

  .modal-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .modal-features {
    font-size: 0.85rem;
  }

  .modal-buy-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    position: sticky;
    bottom: 0;
    background-color: var(--luxury-gold);
    z-index: 10;
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    background-color: var(--white);
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
  }
}

/* Feature Boxes */
.feature-boxes {
  padding: 4rem 0;
  background-color: var(--soft-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background-color: var(--warm-yellow);
  padding: 2rem;
  text-align: center;
  border-radius: 0.60rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--black);
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--black);
  opacity: 0.8;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--luxury-gold);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  color: var(--luxury-gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-link {
  color: var(--luxury-gold);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--luxury-gold);
}

.footer-divider {
  border-top: 1px solid var(--luxury-gold);
  margin-bottom: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;

}

.footer-divider-small {
  border-top: 1px solid var(--luxury-gold);
  margin-bottom: 2rem;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo-text {
  color: var(#FFC233);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.copyright {
  color: var(--luxury-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Animations */
@keyframes backgroundZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes textZoomOut {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-15px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Clean fade animation for text */
@keyframes smoothFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Hero Section */
.mobile-hero {
  display: none;
}

.desktop-hero {
  display: block;
}

.mobile-hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.mobile-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.mobile-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-text-center {
  text-align: center;
  z-index: 5;
}

.mobile-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  animation: slideInUp 0.8s ease-out;
}

.mobile-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: slideInUp 1s ease-out;
}

.mobile-cta-btn {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-yellow) 100%);
  color: var(--black);
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideInUp 1.2s ease-out;
  position: relative;
  overflow: hidden;
}

.mobile-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

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

.mobile-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
}

.mobile-arrow-left, .mobile-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-arrow-left {
  left: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

.mobile-arrow-right {
  right: 1.5rem;
  animation: slideInRight 0.8s ease-out;
}

.mobile-arrow-left:hover, .mobile-arrow-right:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}

.mobile-indicators {
  bottom: 1rem;
}

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px) translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-hero {
        display: none;
    }

    .mobile-hero {
        display: block;
    }

    .mobile-title {
        font-size: 2.2rem;
    }

    .mobile-subtitle {
        font-size: 1rem;
    }

    .mobile-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .mobile-arrow-left, .mobile-arrow-right {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mobile-hero-content {
        padding: 1.5rem 1rem;
    }

    .mobile-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .mobile-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .mobile-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .mobile-arrow-left, .mobile-arrow-right {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mobile-arrow-left {
        left: 1rem;
    }

    .mobile-arrow-right {
        right: 1rem;
    }
}

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

  .hero-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .prev-btn {
    left: 1rem;
  }

  .next-btn {
    right: 1rem;
  }

  .section-header {
    max-width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .section-line-left {
    width: 80px;
  }

  .section-line-right {
    width: 70px;
  }

  .section-title {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .view-all {
    font-size: 0.8rem;
    right: 0.5rem;
  }

  .product-card {
    padding: 0;
    border-radius: 1rem 1rem 0 0;
    min-height: 300px;
  }

  .product-image {
    height: 16rem;
  }

  .product-image-container {
    border-radius: 1rem 1rem 0 0;
    margin-bottom: 0;
  }

  .product-grid {
    gap: 0.8rem;
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Product Card Mobile Optimizations */
@media (max-width: 768px) {
  .product-card {
    border-radius: 0.25rem;
  }

  .product-image {
    height: 12rem;
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .product-category {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }

  .product-price {
    font-size: 0.875rem;
  }

  .quick-view-btn {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 10rem;
  }

  .product-info {
    padding: 0.5rem;
  }

  .product-name {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .product-category {
    font-size: 0.5rem;
  }

  .product-price {
    font-size: 0.75rem;
  }

  .quick-view-btn {
    padding: 0.4rem;
    font-size: 0.625rem;
  }
}

/* General Mobile Responsiveness */
@media (max-width: 768px) {
  .brand-title {
    font-size: 2rem;
  }

  .section-title {
    margin: 0 1rem;
    font-size: 1.25rem;
  }

  .view-all {
    position: static;
    margin-top: 1rem;
  }

  .section-header {
    flex-direction: column;
  }

  .section-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .product-section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1rem;
  }
}

/* ===== LUXURY PRODUCT SLIDER ===== */

.luxury-slider-section {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.luxury-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.luxury-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.luxury-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 40px;
  padding: 0 80px;
}

.luxury-product-card {
  flex: 0 0 320px;
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: none;
  cursor: pointer;
}

.luxury-product-card::before {
  display: none;
}

.luxury-product-card:hover {
  /* No hover animation */
}

.luxury-product-card:hover::before {
  opacity: 1;
}

.luxury-product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
}

.luxury-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 20px;
}

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

.luxury-product-info {
  display: none;
}

/* Slider Navigation Buttons - Hidden */
.luxury-slider-btn {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .luxury-slider-track {
    padding: 0 60px;
    gap: 30px;
  }

  .luxury-product-card {
    flex: 0 0 280px;
  }

  .luxury-slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .luxury-slider-section {
    padding: 60px 0;
  }

  .luxury-slider-track {
    padding: 0 40px;
    gap: 20px;
  }

  .luxury-product-card {
    flex: 0 0 240px;
  }

  .luxury-product-image {
    height: 200px;
  }

  .luxury-product-info {
    padding: 20px;
  }

  .luxury-product-info h3 {
    font-size: 1.1rem;
  }

  .luxury-product-info p {
    font-size: 1.2rem;
  }

  .luxury-slider-btn {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  .prev-luxury-btn {
    left: 10px;
  }

  .next-luxury-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .luxury-slider-track {
    padding: 0 30px;
    gap: 15px;
  }

  .luxury-product-card {
    flex: 0 0 200px;
  }

  .luxury-product-image {
    height: 160px;
  }

  .luxury-product-info {
    padding: 15px;
  }

  .luxury-product-info h3 {
    font-size: 1rem;
  }

  .luxury-product-info p {
    font-size: 1.1rem;
  }
}

/* Animation for smooth sliding */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.luxury-product-card {
  animation: slideIn 0.6s ease forwards;
}

.luxury-product-card:nth-child(even) {
  animation-delay: 0.1s;
}

.luxury-product-card:nth-child(odd) {
  animation-delay: 0.2s;
}