/* LUXURY NAVBAR STYLES - VENUS SCENTS */

/* Global Reset & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111111;
}

/* Navbar Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 3px solid rgba(189, 140, 125, 0.2);
}

.navbar.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styling */
.navbar-left .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #a56c6c;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-left .logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #bd8c7d;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-left .logo:hover {
  color: black;
}

.navbar-left .logo:hover::after {
  width: 100%;
}

/* Main Navigation */
.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a:hover {
  color: #bd8c7d;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #bd8c7d;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #B76E79; /* Rose gold shade */
  border-bottom: 2px solid #B76E79;
  font-weight: bold;
}


/* Dropdown Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  padding: 1rem 0;
  border-top: 2px solid #bd8c7d;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #bd8c7d transparent;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  padding: 0.7rem 1.5rem;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.5px;
  display: block;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: rgba(189, 140, 125, 0.08);
  padding-left: 1.8rem;
}

/* Icon Navigation */
.navbar-right {
  display: flex;
  align-items: center;
}

.nav-icons {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  align-items: center;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #111111;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-button:hover, .nav-icons a:hover {
  color: #bd8c7d;
}

.nav-icons a {
  color: #111111;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  padding: 8px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #bd8c7d;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* User Dropdown Menu */
.user-dropdown {
  position: relative;
}

.user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  padding: 1rem 0;
  margin-top: 10px;
  border-top: 2px solid #bd8c7d;
}

.user-dropdown:hover .user-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.user-menu li {
  padding: 0;
}

.user-menu a {
  padding: 0.7rem 1.5rem;
  display: block;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.user-menu a:hover {
  background-color: rgba(189, 140, 125, 0.08);
  color: #bd8c7d;
  padding-left: 1.8rem;
}

/* Mini Cart */
.cart-icon {
  position: relative;
}

.mini-cart {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 1.5rem;
  margin-top: 10px;
  border-top: 2px solid #bd8c7d;
  text-align: center;
}

.cart-icon:hover .mini-cart {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/* Hamburger Menu (Mobile) */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hamburger-menu:hover {
  color: #bd8c7d;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }
  
  .pulse {
    animation: pulse 0.3s ease-in-out;
  }
  
  /* Smooth hover transitions */
  .main-nav a, .dropdown-menu a, .user-menu a, .nav-icons a, .icon-button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  /* Elegant glow effect for rose gold elements */
  .cart-count, .dropdown-menu::before, .user-menu, .mini-cart {
    box-shadow: 0 2px 8px rgba(189, 140, 125, 0.3);
  }

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .main-nav {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .navbar-center {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .container {
    justify-content: space-between;
  }
  
  /* Mobile Nav */
  .navbar.mobile-open {
    height: 100vh;
    overflow-y: auto;
  }
  
  .navbar.mobile-open .container {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
  }
  
  .navbar.mobile-open .navbar-left {
    position: absolute;
    top: 0;
    left: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
  }
  
  .navbar.mobile-open .hamburger-menu {
    position: absolute;
    top: 0;
    right: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
  }
  
  .navbar.mobile-open .navbar-center {
    display: block;
    width: 100%;
    margin: 1rem 0;
  }
  
  .navbar.mobile-open .main-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .navbar.mobile-open .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(189, 140, 125, 0.1);
  }
  
  .navbar.mobile-open .main-nav a {
    padding: 1rem 0;
    display: block;
  }
  
  .navbar.mobile-open .main-nav a::after {
    display: none;
  }
  
  .navbar.mobile-open .dropdown {
    position: static;
  }
  
  .navbar.mobile-open .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 1rem;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .navbar.mobile-open .dropdown-menu.open {
    max-height: 500px;
    margin-bottom: 1rem;
  }
  
  .navbar.mobile-open .dropdown-menu::before {
    display: none;
  }
  
  .navbar.mobile-open .dropdown-menu a {
    padding: 0.7rem 0;
    border-bottom: none;
  }
  
  .navbar.mobile-open .dropdown-menu a:hover {
    background: none;
    padding-left: 0.5rem;
  }
  
  .navbar.mobile-open .navbar-right {
    width: 100%;
    justify-content: space-between;
    margin: 1rem 0;
  }
  
  .navbar.mobile-open .nav-icons {
    width: 100%;
    justify-content: space-between;
  }
  
  .navbar.mobile-open .user-dropdown .user-menu,
  .navbar.mobile-open .cart-icon .mini-cart {
    position: static;
    box-shadow: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    border: none;
    padding: 0 0 0 1rem;
    transition: max-height 0.3s ease;
    margin-top: 0;
  }
  
  .navbar.mobile-open .user-dropdown .user-menu.open,
  .navbar.mobile-open .cart-icon .mini-cart.open {
    max-height: 500px;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    height: 70px;
  }
  
  .navbar-left .logo {
    font-size: 24px;
  }
  
  .navbar.mobile-open .navbar-left {
    left: 1rem;
    height: 70px;
  }
  
  .navbar.mobile-open .hamburger-menu {
    right: 1rem;
    height: 70px;
  }
}

/* home section */
.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1563170351-be82bc888aa4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    z-index: -2;
    filter: grayscale(20%);
    animation: subtle-zoom 20s infinite alternate;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in 1.5s ease forwards 0.5s;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0b1a0, transparent);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #e0b1a0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 177, 160, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(224, 177, 160, 0.3);
    transform: translateY(-3px);
}

.cta-button:hover::before {
    animation: shine 1.5s infinite;
}

/* Animated Elements */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, #e0b1a0, rgba(224, 177, 160, 0.3));
    border-radius: 50%;
    opacity: 0;
}

/* Subtle Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(224, 177, 160, 0.1), transparent 60%);
    z-index: 0;
}

/* Scrolldown Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    z-index: 2;
    opacity: 0;
    animation: fade-in 1s ease forwards 2s;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #e0b1a0, transparent);
    animation: scroll-down 2s infinite;
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes scroll-down {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    50% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
/* Best Sellers Section Styling */
.best-sellers {
    padding: 80px 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.best-sellers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.best-sellers .section-header, 
.best-sellers .carousel-container {
    position: relative;
    z-index: 2;
}

.best-sellers .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.best-sellers .section-header h2 {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.best-sellers .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #e0bfb8; /* Rose gold */
}

.best-sellers .section-header p {
    font-size: 16px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
}

.perfume-card {
    min-width: calc(33.333% - 20px);
    scroll-snap-align: center;
    background-color: #0c0c0c;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.perfume-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0bfb8, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.perfume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(224, 191, 184, 0.3); /* Rose gold with transparency */
}

.perfume-card:hover::before {
    transform: scaleX(1);
}

.perfume-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
    border: 1px solid rgba(224, 191, 184, 0.2);
}

.perfume-card:nth-child(1) .perfume-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://via.placeholder.com/300');
}

.perfume-card:nth-child(2) .perfume-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://via.placeholder.com/300');
}

.perfume-card:nth-child(3) .perfume-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://via.placeholder.com/300');
}

.perfume-card:hover .perfume-image {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(224, 191, 184, 0.3);
}

.perfume-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.perfume-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.shop-link {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #e0bfb8;
    color: #e0bfb8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 191, 184, 0.1), transparent);
    transition: all 0.6s ease;
}

.shop-link:hover {
    background-color: #e0bfb8;
    color: #000;
    box-shadow: 0 0 20px rgba(224, 191, 184, 0.4);
}

.shop-link:hover::before {
    left: 100%;
}

.carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}

.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid #e0bfb8;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 18px;
}

.carousel-controls button:hover {
    background-color: #e0bfb8;
    color: #000;
    box-shadow: 0 0 15px rgba(224, 191, 184, 0.5);
}

.prev {
    margin-left: 10px;
}

.next {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .perfume-card {
        min-width: calc(50% - 15px);
    }
    
    .best-sellers .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .best-sellers .section-header h2 {
        font-size: 32px;
        letter-spacing: 6px;
    }
    
    .perfume-image {
        width: 150px;
        height: 150px;
    }
    
    .perfume-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .perfume-card {
        min-width: 100%;
    }
    
    .best-sellers {
        padding: 60px 15px;
    }
    
    .best-sellers .section-header {
        margin-bottom: 40px;
    }
    
    .best-sellers .section-header h2 {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .carousel-container {
        padding: 0 25px;
    }
}

/* Limited Editions Section Styling */
.limited-editions {
    padding: 120px 40px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.limited-editions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
    z-index: 1;
}

.limited-editions .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.limited-editions h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: #111;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.limited-editions h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0b6a9, transparent);
}

.limited-editions .section-header p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    border: 1px solid rgba(224, 182, 169, 0.2);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 182, 169, 0.25);
}

.collection-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.collection-item:nth-child(1) .collection-image {
    background-image: url('/api/placeholder/600/400');
}

.collection-item:nth-child(2) .collection-image {
    background-image: url('/api/placeholder/600/400');
}

.collection-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.collection-image::after {
    content: 'Limited Edition';
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #e0b6a9;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid #e0b6a9;
    font-weight: 500;
}

.collection-item h3 {
    font-size: 28px;
    color: #111;
    margin: 30px 0 16px;
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
    letter-spacing: 1px;
}

.collection-item p {
    color: #555;
    text-align: center;
    padding: 0 30px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.shop-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #111;
    text-decoration: none;
    border: 1px solid #e0b6a9;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 182, 169, 0.2), transparent);
    transition: left 0.7s ease;
}

.shop-link:hover {
    background-color: #e0b6a9;
    color: #fff;
}

.shop-link:hover::before {
    left: 100%;
}

/* Add subtle pattern for more sophistication */
.limited-editions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(224, 182, 169, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(224, 182, 169, 0.05) 0%, transparent 8%);
    background-size: 120px 120px;
    background-position: 0 0;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .limited-editions {
        padding: 80px 30px;
    }
    
    .limited-editions h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .limited-editions {
        padding: 60px 20px;
    }
    
    .limited-editions h2 {
        font-size: 32px;
    }
    
    .collection-image {
        height: 300px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .limited-editions h2 {
        font-size: 28px;
    }
    
    .collection-item h3 {
        font-size: 22px;
    }
    
    .collection-item p {
        font-size: 14px;
    }
    
    .shop-link {
        padding: 10px 20px;
    }
}

/* brand story */
.brand-story {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 120px 0 80px; /* Increased top padding to create space from previous section */
    overflow: hidden;
    position: relative;
    margin-top: 40px; /* Added margin-top to separate from previous section */
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.story-text-container {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #d4af7a; /* Rose gold */
    bottom: -10px;
    left: 0;
}

.story-paragraph {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

.story-link {
    display: inline-block;
    color: #d4af7a; /* Rose gold */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.story-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #d4af7a; /* Rose gold */
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.story-link:hover {
    color: #e5c995; /* Lighter rose gold */
}

.story-link:hover::after {
    width: 100%;
}

.story-images {
    flex: 1.2; /* Increased to give more space for images */
    position: relative;
}

.image-container {
    position: relative;
    display: flex;
    height: 600px;
    justify-content: center; /* Center the images */
}

.perfume {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    margin: 0 15px;
    width: 45%; /* Increased from 30% to 45% for wider images */
    max-width: 320px; /* Added max-width for better control */
}

.perfume img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.perfume:hover img {
    transform: scale(1.1);
}

.perfume-1 {
    transform: translateY(40px);
    z-index: 1;
}

.perfume-2 {
    transform: translateY(-20px);
    z-index: 2;
}

.perfume-3 {
    transform: translateY(60px);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.image-overlay span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: block;
}

.perfume:hover .image-overlay {
    padding-bottom: 30px;
}

.perfume:hover .image-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .story-container {
        max-width: 960px;
    }
    
    .story-title {
        font-size: 3rem;
    }
    
    .perfume {
        width: 40%;
        max-width: 280px;
    }
}

@media screen and (max-width: 992px) {
    .story-container {
        flex-direction: column;
    }
    
    .story-text-container {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .image-container {
        height: 500px;
    }
    
    .perfume {
        width: 45%;
        max-width: 260px;
    }
}

@media screen and (max-width: 768px) {
    .brand-story {
        padding: 100px 0 60px; /* Maintain extra space at top on mobile */
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .image-container {
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    
    .perfume {
        width: 80%;
        max-width: 320px; /* Increased from 300px */
        height: 450px; /* Increased from 400px */
        margin: 15px 0;
        transform: none !important;
    }
}

@media screen and (max-width: 576px) {
    .brand-story {
        padding: 80px 0 40px;
        margin-top: 30px;
    }
    
    .story-container {
        padding: 0 20px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .perfume {
        width: 85%;
        height: 500px; /* Increased height significantly on mobile */
    }
}

/* Testimonials Section Styling */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 1;
  }
  
  .testimonials-section > * {
    position: relative;
    z-index: 2;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 15px;
    color: #000;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
  }
  
  .section-header p {
    font-size: 18px;
    color: #B76E79; /* Rose gold shade */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 400;
  }
  
  .testimonials-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-slide {
    width: 100%;
    display: none;
    animation: fadeEffect 1s ease;
    padding: 0 20px;
  }
  
  @keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
  }
  
  .testimonial {
    background-color: #000;
    color: #fff;
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(183, 110, 121, 0.3); /* Subtle rose gold border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .testimonial::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 120px;
    color: #B76E79; /* Rose gold */
    font-family: Georgia, serif;
    opacity: 0.5;
    z-index: 0;
  }
  
  .testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #B76E79, #D9A6AD, #B76E79); /* Rose gold gradient */
    border-radius: 0 0 6px 6px;
  }
  
  .quote {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 300;
  }
  
  .author {
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
  }
  
  .author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #B76E79; /* Rose gold placeholder */
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(183, 110, 121, 0.3);
    border: 3px solid #fff;
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #B76E79; /* Rose gold */
    letter-spacing: 0.5px;
  }
  
  .author-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  
  .prev, .next {
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 18px;
  }
  
  .prev:hover, .next:hover {
    background-color: #B76E79; /* Rose gold */
    transform: scale(1.1);
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .dot.active, .dot:hover {
    background-color: #B76E79; /* Rose gold */
    transform: scale(1.2);
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 992px) {
    .testimonial {
      padding: 40px 30px;
    }
    
    .quote {
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .section-header h2 {
      font-size: 36px;
    }
    
    .testimonial {
      padding: 35px 25px;
    }
    
    .quote {
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .testimonials-section {
      padding: 60px 15px;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .section-header h2 {
      font-size: 30px;
    }
    
    .section-header p {
      font-size: 16px;
    }
    
    .testimonial {
      padding: 30px 20px;
    }
    
    .quote {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .author-image {
      width: 60px;
      height: 60px;
      margin-right: 15px;
    }
    
    .prev, .next {
      width: 40px;
      height: 40px;
      font-size: 16px;
      margin: 0 10px;
    }
  }

  /* Newsletter Section Styles */
.newsletter {
    background-color: #f8f8f8; /* Light grey background for contrast */
    padding: 60px 20px;
    text-align: center;
  }
  
  .newsletter-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .newsletter h2 {
    color: #000; /* Black heading */
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .newsletter p {
    color: #555; /* Dark grey paragraph */
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .form-group {
    display: flex;
    width: 100%;
    max-width: 450px;
    margin-bottom: 15px;
  }
  
  .form-group input[type="email"] {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 5px 0 0 5px;
    font-size: 1em;
    color: #333; /* Dark text */
  }
  
  .form-group button.subscribe-button {
    background-color: #b76e79; /* Rose gold button */
    color: #fff; /* White text on button */
    border: none;
    padding: 15px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .form-group button.subscribe-button:hover {
    background-color: #9e5a64; /* Darker rose gold on hover */
  }
  
  .form-consent {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  .form-consent input[type="checkbox"] {
    margin-right: 8px;
  }
  
  .form-consent label {
    color: #333; /* Dark text for label */
    font-size: 0.9em;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .newsletter h2 {
      font-size: 2em;
    }
  
    .newsletter p {
      font-size: 1em;
    }
  
    .form-group {
      flex-direction: column;
    }
  
    .form-group input[type="email"] {
      border-radius: 5px;
      margin-bottom: 10px;
    }
  
    .form-group button.subscribe-button {
      border-radius: 5px;
      width: 100%;
    }
  }

  /* Instagram Section Styles */
.instagram-section {
    background-color: #1a1a1a; /* Dark background for a dramatic contrast */
    padding: 80px 20px;
    text-align: center;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    color: #fff; /* White heading */
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  
  .section-header p {
    color: #ddd; /* Light grey paragraph */
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .instagram-link {
    display: inline-block;
    background-color: #b76e79; /* Rose gold button */
    color: #fff; /* White text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .instagram-link:hover {
    background-color: #9e5a64; /* Darker rose gold on hover */
  }
  
  .instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .instagram-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s ease-in-out;
  }
  
  .instagram-item:hover {
    transform: scale(1.05);
  }
  
  .instagram-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Ensure square images */
    object-fit: cover;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2.4em;
    }
  
    .section-header p {
      font-size: 1.1em;
    }
  
    .instagram-feed {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }
  
    .instagram-link {
      font-size: 1em;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .section-header h2 {
      font-size: 2em;
    }
  
    .section-header p {
      font-size: 0.95em;
    }
  
    .instagram-feed {
      grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
      gap: 10px;
    }
  }

  /* Footer Styles */
  footer {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 30px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #e0bfb3, #111111);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #e0bfb3; /* Rose gold */
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background-color: #e0bfb3;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a:hover {
    color: #e0bfb3;
    transform: translateX(3px);
}

.footer-column a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #e0bfb3;
    transition: width 0.3s ease;
}

.footer-column a:hover::after {
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
}

.social-links a::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links li:nth-child(1) a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e0bfb3"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>');
}

.social-links li:nth-child(2) a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e0bfb3"><path d="M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.128v-3.622h3.128v-2.671c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z"/></svg>');
}

.social-links li:nth-child(3) a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e0bfb3"><path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"/></svg>');
}

.social-links li:nth-child(4) a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e0bfb3"><path d="M17.498 14.382c-.301-.15-1.767-.867-2.04-.966-.273-.101-.473-.15-.673.15-.197.295-.771.964-.944 1.162-.175.195-.349.21-.646.075-.3-.15-1.263-.465-2.403-1.485-.888-.795-1.484-1.77-1.66-2.07-.174-.3-.019-.465.13-.615.136-.135.301-.345.451-.523.146-.181.194-.301.297-.496.1-.21.049-.375-.025-.524-.075-.15-.672-1.62-.922-2.206-.24-.584-.487-.51-.672-.51-.172-.015-.371-.015-.571-.015-.2 0-.523.074-.797.359-.273.3-1.045 1.02-1.045 2.475s1.07 2.865 1.219 3.075c.149.195 2.105 3.195 5.1 4.485.714.3 1.27.48 1.704.629.714.227 1.365.195 1.88.121.574-.091 1.767-.721 2.016-1.426.255-.705.255-1.29.18-1.425-.074-.135-.27-.21-.57-.345m-5.446 7.443h-.016c-1.77 0-3.524-.48-5.055-1.38l-.36-.214-3.75.975 1.005-3.645-.239-.375c-.99-1.576-1.516-3.391-1.516-5.26 0-5.445 4.436-9.884 9.939-9.884 2.652 0 5.145 1.035 7.021 2.91 1.875 1.859 2.909 4.35 2.909 6.99-.004 5.444-4.436 9.885-9.935 9.885M20.52 3.449C18.24 1.245 15.24 0 12.045 0 5.463 0 .104 5.334.101 11.893c0 2.096.549 4.14 1.595 5.945L0 24l6.335-1.652c1.746.943 3.71 1.444 5.71 1.447h.006c6.585 0 11.946-5.336 11.949-11.896 0-3.176-1.24-6.165-3.495-8.411"/></svg>');
}

.social-links li:nth-child(5) a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e0bfb3"><path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/></svg>');
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 3px solid rgba(224, 191, 179, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

.payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods span {
    font-size: 0.9rem;
    color: #999;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background-color: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.payment-icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Subtle animations */
@keyframes subtle-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.footer-column:hover h4 {
    animation: subtle-float 2s ease infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        gap: 40px;
    }
    
    .footer-column {
        flex-basis: calc(50% - 20px);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 20px 20px;
    }
    
    .footer-column {
        flex-basis: 100%;
    }
}

/*about section */
/* Venus Scents - Luxury Hero Section Styling */

.heero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a; /* Jet Black background */
}

.heero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1594035910387-fea47794261f?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: brightness(0.8) contrast(1.2);
  z-index: 1;
  animation: subtle-zoom 20s infinite alternate;
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  z-index: 2;
  opacity: 0;
  animation: fade-in 1.5s forwards 0.5s;
}

.hero-text {
  position: relative;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  pointer-events: none;
  opacity: 0;
  animation: border-glow 3s infinite alternate;
}

.hero-text h1 {
  margin: 0 0 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #f5f5f5; /* Soft Ivory */
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 1s forwards 1s;
}

.hero-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f9d4d8; /* Blush Pink */
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 1s forwards 1.5s;
}

.hero-text::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-in 1s forwards 2s;
}

/* Animations */
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide-up {
  0% { 
    opacity: 0;
    transform: translateY(20px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes border-glow {
  0% { 
    opacity: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  100% { 
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  }
}

@keyframes subtle-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-text {
    padding: 2.5rem 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 0 1rem;
  }
  
  .hero-text {
    padding: 2rem 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

/* Particle Effect for Luxury Feel */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: linear-gradient(180deg, #d4af37, #fbdecf);
  border-radius: 50%;
  opacity: 0;
}

/* Venus Scents - Brand Heritage Section Styles */
/* Modern, Elegant and Sensual Design */

.brand-heritage {
  padding: 6rem 3rem;
  position: relative;
  background: linear-gradient(135deg, #FFFDF6 0%, #FFF8F0 100%);
  overflow: hidden;
}

.brand-heritage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L55 45 L50 40 L45 45 Z' fill='%23D4AF37' fill-opacity='0.05'/%3E%3C/svg%3E");
  z-index: 0;
}

.brand-heritage h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #121212;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.brand-heritage h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,1) 50%, rgba(212,175,55,0.2) 100%);
  margin: 1rem auto 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.story-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.7s ease;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 2;
  pointer-events: none;
}

.story-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, rgba(188,143,143,0.2) 100%);
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.story-image:hover {
  transform: scale(1.02);
}

.story-image:hover::after {
  opacity: 0.5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.2s ease;
  filter: saturate(0.9);
}

.story-image:hover img {
  transform: scale(1.1);
  filter: saturate(1.1);
}

.story-text {
  flex: 1.2;
  padding: 2rem 0;
  position: relative;
}

.story-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.8rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-text p:first-of-type {
  font-size: 1.15rem;
  color: #333;
  font-weight: 300;
}

.story-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  margin-right: 10px;
  color: #D4AF37;
  font-weight: 400;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  color: rgba(212,175,55,0.05);
  line-height: 1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .brand-heritage {
    padding: 5rem 2.5rem;
  }
  
  .story-content {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .brand-heritage h2 {
    font-size: 3rem;
  }
  
  .story-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .story-image, .story-text {
    flex: none;
    width: 100%;
  }
  
  .story-image {
    height: 60vh;
    max-height: 550px;
  }
}

@media (max-width: 768px) {
  .brand-heritage {
    padding: 4rem 1.5rem;
  }
  
  .brand-heritage h2 {
    font-size: 2.5rem;
  }
  
  .story-image {
    height: 50vh;
  }
  
  .story-text::before {
    font-size: 8rem;
    top: -30px;
    left: -20px;
  }
}

@media (max-width: 576px) {
  .brand-heritage {
    padding: 3rem 1rem;
  }
  
  .brand-heritage h2 {
    font-size: 2rem;
  }
  
  .story-image {
    height: 40vh;
  }
  
  .story-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .story-text p:first-of-type {
    font-size: 1.05rem;
  }
  
  .story-text::before {
    font-size: 6rem;
    top: -20px;
    left: -10px;
  }
}

/* JavaScript-driven animations via CSS */
.brand-heritage.animated h2 {
  animation: fadeSlideDown 1s forwards;
}

.brand-heritage.animated .story-text p {
  opacity: 1;
  transform: translateY(0);
}

.brand-heritage.animated .story-text p:nth-child(1) {
  transition-delay: 0.3s;
}

.brand-heritage.animated .story-text p:nth-child(2) {
  transition-delay: 0.5s;
}

.brand-heritage.animated .story-text p:nth-child(3) {
  transition-delay: 0.7s;
}

.brand-heritage.animated .story-text p:nth-child(4) {
  transition-delay: 0.9s;
}

.brand-heritage.animated .story-image {
  animation: fadeSlideRight 1s forwards;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Venus Difference Section Styling */
.unique-difference {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #f5f5f0; /* Soft ivory text */
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

.unique-difference::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 0 80 0a40 40 0 1 0 -80 0' fill='none' stroke='rgba(212, 175, 55, 0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.8;
  z-index: 1;
}

.unique-difference h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
  color: #ffffff; /* White */
}

.unique-difference h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #e0bfb8); /* Gold to Rose Gold */
  margin: 0.8rem auto 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.highlight {
  background: rgba(10, 10, 10, 0.7); /* Transparent deep charcoal */
  border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 8px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #e0bfb8); /* Gold to Rose Gold */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
}

.highlight:hover::before {
  transform: scaleX(1);
}

.highlight img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
  transition: transform 0.5s ease;
}

.highlight:hover img {
  transform: rotate(10deg) scale(1.1);
}

.highlight h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 400;
  color: #d4af37; /* Gold */
  letter-spacing: 1px;
}

.highlight p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: #f7f2e9; /* Soft ivory */
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* Mouse follow effect */
.highlight::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight:hover::after {
  opacity: 1;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .unique-difference h2 {
    font-size: 3rem;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .unique-difference {
    padding: 4rem 1.5rem;
  }
  
  .unique-difference h2 {
    font-size: 2.5rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .unique-difference h2 {
    font-size: 2rem;
  }
  
  .highlight h3 {
    font-size: 1.4rem;
  }
}

/* Luxury Vision/Mission Section Styling */

.vision-mission {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

.vision, .mission {
  position: relative;
  padding: 4rem 3rem;
  margin-bottom: 3rem;
  background-color: #FFFCF7; /* Soft Ivory */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
  border-radius: 2px;
}

.vision::before, .mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #D4AF37, #E6BE8A, #FFC0CB); /* Gold to Rose Gold to Blush Pink */
  transition: width 0.3s ease;
}

.vision:hover, .mission:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision:hover::before, .mission:hover::before {
  width: 10px;
}

.vision h3, .mission h3 {
  margin: 0 0 1.5rem 0;
  font-size: 2.5rem;
  font-weight: 300;
  color: #111111; /* Deep Charcoal */
  position: relative;
  display: inline-block;
}

.vision h3::after, .mission h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, #D4AF37, transparent); /* Gold fade */
  transition: width 0.3s ease;
}

.vision:hover h3::after, .mission:hover h3::after {
  width: 100%;
}

.vision p, .mission p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333333;
  position: relative;
  z-index: 1;
}

/* Gold accent decorative elements */
.vision::after, .mission::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(212, 175, 55, 0.2); /* Gold with opacity */
  border-radius: 50%;
  z-index: 0;
}

/* Additional decorative elements */
.vision-mission::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 20px;
  font-size: 200px;
  color: rgba(212, 175, 55, 0.05); /* Gold with low opacity */
  font-family: 'Georgia', serif;
  z-index: -1;
}

/* Responsive Design */
@media (min-width: 768px) {
  .vision-mission {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  
  .vision, .mission {
    width: 48%;
    margin-bottom: 0;
    margin-right: 2%;
    height: auto;
  }
  
  .mission {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .vision, .mission {
    padding: 3rem 2rem;
  }
  
  .vision h3, .mission h3 {
    font-size: 2rem;
  }
  
  .vision p, .mission p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .vision-mission {
    margin: 3rem auto;
    padding: 0 1rem;
  }
  
  .vision, .mission {
    padding: 2rem 1.5rem;
  }
  
  .vision h3, .mission h3 {
    font-size: 1.8rem;
  }
  
  .vision p, .mission p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Values Section Styling */
.values {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
  max-width: 100%;
  margin: 0 auto;
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.5;
}

.values h2 {
  position: relative;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #1a1a1a;
  font-weight: 300;
  letter-spacing: 3px;
  z-index: 2;
}

.values h2::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  position: relative;
}

.value-item {
  flex: 1 1 200px;
  max-width: 300px;
  min-height: 250px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #d4af37, #e0bfb8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.2);
  color: #bd9b36;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.value-highlight {
  position: absolute;
  font-size: 6rem;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1a1a1a;
  z-index: -1;
  font-weight: 700;
}

/* Gold accent for hover effects */
.gold-accent {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.values p {
  display: none; /* Hide the original paragraph */
}

/* Responsive styles */
@media (max-width: 1200px) {
  .values {
    padding: 6rem 1.5rem;
  }
  
  .values h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .values {
    padding: 5rem 1rem;
  }
  
  .values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .value-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .values h2 {
    font-size: 2rem;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
  
  .value-description {
    font-size: 0.9rem;
  }
}

/* Venus Scents Signature Section Styles */

.philosophy {
  position: relative;
  max-width: 100%;
  padding: 5rem 3rem;
  margin: 4rem auto;
  background: linear-gradient(135deg, #f5f5f0 0%, #fff8f8 100%);
  border-left: 2px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 Q 55 35, 60 50 T 70 50 M30 50 Q 35 65, 40 50 T 50 50' stroke='rgba(212,175,55,0.07)' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #111111;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.philosophy h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #e8c496, #d4af37);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.philosophy p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.philosophy p:last-of-type {
  margin-bottom: 0;
}

/* Gold accent for highlighting key phrases */
.philosophy p em,
.philosophy p strong {
  font-style: normal;
  font-weight: normal;
  background: linear-gradient(to right, #d4af37, #f9e4b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .philosophy {
    padding: 3rem 1.5rem;
    margin: 2rem auto;
  }
  
  .philosophy h2 {
    font-size: 2.2rem;
  }
  
  .philosophy p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .philosophy {
    padding: 2rem 1rem;
  }
  
  .philosophy h2 {
    font-size: 1.8rem;
  }
  
  .philosophy p {
    font-size: 0.95rem;
  }
}

/* Elegant hover effect */
.philosophy {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.philosophy:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Signature flourish element */
.philosophy::after {
  content: "VS";
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-family: 'Tangerine', cursive;
  font-size: 2.5rem;
  font-weight: bolder;
  color: rgba(212,175,55,0.2);
  z-index: 0;
}

/* Venus Scents Luxury Gallery Styling */
.gallery {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Jet Black background */
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent); /* Gold accent line */
  opacity: 0.8;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #f7f6f0; /* Soft Ivory */
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 20px;
}

.gallery h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, #e0bfb8); /* Gold to Rose Gold gradient */
}

.gallery-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  padding: 0 15px;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s ease;
  position: relative;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
}

.gallery-slide:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-slide.active::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 15px 20px;
  color: #f7f6f0; /* Soft Ivory */
  font-family: 'Montserrat', sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  border-left: 2px solid #d4af37; /* Gold accent */
}

.gallery-slide:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.gallery-dot {
  width: 30px;
  height: 2px;
  background-color: rgba(224, 191, 184, 0.3); /* Muted Rose Gold */
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background-color: #d4af37; /* Gold */
  width: 50px;
}

.gallery-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  transform: translateY(-50%);
}

.gallery-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
}

.gallery-arrow:hover {
  background-color: rgba(212, 175, 55, 0.2); /* Gold with transparency */
  transform: scale(1.1);
}

.gallery-arrow svg {
  width: 20px;
  fill: none;
  stroke: #f7f6f0; /* Soft Ivory */
  stroke-width: 1.5;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .gallery-track {
    display: flex;
  }
  
  .gallery-slide {
    flex: 0 0 33.333%;
  }
  
  .gallery-slide.active {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 767px) {
  .gallery h2 {
    font-size: 2rem;
  }
  
  .gallery-slide img {
    height: 350px;
  }
  
  .gallery-arrows {
    padding: 0 15px;
  }
  
  .gallery-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 40px 15px;
  }
  
  .gallery h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .gallery-slide img {
    height: 280px;
  }
  
  .gallery-caption {
    padding: 10px 15px;
    left: 20px;
    right: 20px;
  }
}
/* Luxury CTA Section Styles */
.cta {
  background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 5rem auto;
  max-width: 1200px;
  transition: transform 0.3s ease-out;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(238, 213, 183, 0.08) 100%);
  z-index: 0;
}

.cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  z-index: 1;
  animation: shimmer 15s infinite linear;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  border: 1px solid #1a1a1a;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37 0%, #f9d9c0 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button:hover {
  color: #1a1a1a;
  border-color: #d4af37;
}

.cta-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta:hover {
  transform: translateY(-5px);
}

/* Animation for the shimmer effect */
@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .cta {
    padding: 3.5rem 2.5rem;
    margin: 4rem auto;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 3rem 2rem;
    margin: 3rem auto;
  }
  
  .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .cta {
    padding: 2.5rem 1.5rem;
    margin: 2.5rem auto;
    border-radius: 8px;
  }
  
  .cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }
}

/* shop page styling */
/* Luxury Fragrance Hero Section CSS - Updated with reliable background solution */

.hero-ban {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  background-color: #1a1a1a; /* Fallback dark background color */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

/* Gradient overlay background that looks luxurious without needing an image */
.hero-ban::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(20, 20, 20, 0.95) 0%,
    rgba(40, 40, 40, 0.85) 50%, 
    rgba(60, 60, 60, 0.75) 100%);
  z-index: 1;
}

/* Optional decorative elements to create visual interest */
.hero-ban::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(219, 184, 184, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: left;
  padding: 0 2rem;
  animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  color: #f9f9f9;
  letter-spacing: 1px;
}

.pill-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pill-filters button {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.pill-filters button:hover, .pill-filters button.active {
  background: rgba(212, 175, 55, 0.8);
  border-color: #d4af37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Decorative patterns for visual interest */
.hero-ban .pattern {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
}

.hero-ban .pattern-1 {
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, #d4af37 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero-ban .pattern-2 {
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(219, 184, 184, 0.5) 1px, transparent 1px);
  background-size: 15px 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-ban {
    height: 80vh;
    align-items: flex-start;
    padding-top: 20%;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .pill-filters {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (max-width: 480px) {
  .hero-ban {
    padding-top: 30%;
  }
  
  .pill-filters button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Section Styles */
/* Filter Section Styles */
.filter-section {
  background-color: #f9f7f2; /* Soft Ivory */
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
  overflow: visible; /* Changed from overflow: hidden to make dropdowns visible */
}

.filter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #e0b6b0); /* Gold to Blush Pink */
}

.filter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #111111; /* Deep Charcoal */
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.filter-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40%;
  height: 2px;
  background-color: #d4af37; /* Gold */
  transition: width 0.3s ease;
}

.filter-section h2:hover::after {
  width: 100%;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  position: relative;
}

.filter-controls label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-right: 10px;
  letter-spacing: 0.5px;
}

.filter-controls select {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 12px 45px 12px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #111111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.filter-controls select:hover {
  border-color: #d4af37; /* Gold */
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.1);
}

.filter-controls select:focus {
  outline: none;
  border-color: #d4af37; /* Gold */
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.filter-controls details {
  position: relative;
}

.filter-controls summary {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  list-style: none;
}

.filter-controls summary::-webkit-details-marker {
  display: none;
}

.filter-controls summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #d4af37; /* Gold */
  border-bottom: 2px solid #d4af37; /* Gold */
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.filter-controls details[open] summary::after {
  transform: rotate(-135deg);
}

.filter-controls summary:hover {
  border-color: #d4af37; /* Gold */
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.1);
}

.filter-sidebar {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 300px;
  z-index: 1000; /* Increased z-index to ensure visibility */
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Gold with opacity */
}

.filter-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #111111; /* Deep Charcoal */
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.filter-sidebar h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #d4af37; /* Gold */
}

.filter-sidebar label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  display: block;
}

.filter-sidebar select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 10px 35px 10px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #111111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition: all 0.3s ease;
}

.filter-sidebar select:hover,
.filter-sidebar select:focus {
  border-color: #d4af37; /* Gold */
  outline: none;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.1);
}

/* Custom range slider styling */
.filter-sidebar input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #e6e6e6;
  border-radius: 2px;
  margin: 15px 0;
  position: relative;
}

.filter-sidebar input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37; /* Gold */
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.filter-sidebar input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4af37; /* Gold */
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.filter-sidebar input[type="range"]::-webkit-slider-thumb:hover {
  background: #111111; /* Jet Black */
}

.filter-sidebar input[type="range"]::-moz-range-thumb:hover {
  background: #111111; /* Jet Black */
}

.filter-sidebar input[type="range"]:focus {
  outline: none;
}

.filter-sidebar input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.filter-sidebar input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Price range value display */
.price-range-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #333333;
  margin-top: 5px;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
  .filter-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .filter-controls select {
    min-width: 250px;
  }
  
  .filter-sidebar {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .filter-section {
    padding: 30px 15px;
    border-radius: 6px;
  }
  
  .filter-controls {
    width: 100%;
  }
  
  .filter-controls select,
  .filter-controls summary {
    width: 100%;
    min-width: unset;
  }
  
  .filter-sidebar {
    position: relative; /* Changed to relative for mobile to avoid being hidden */
    width: 100%;
    margin-top: 15px;
    box-shadow: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px;
    border-radius: 4px;
  }
}

@media (max-width: 576px) {
  .filter-section h2 {
    font-size: 24px;
  }
  
  .filter-controls label,
  .filter-sidebar label {
    font-size: 13px;
  }
  
  .filter-controls select,
  .filter-controls summary,
  .filter-sidebar select {
    font-size: 13px;
    padding: 10px 15px;
  }
}

/* Luxury Perfume Shop Grid Styling */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  background-color: #FFFCF7; /* Soft Ivory */
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background-color: #FFFFFF; /* White */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.product-image-container {
  position: relative;
  padding-top: 125%; /* Fixed aspect ratio */
  overflow: hidden;
  background-color: #F9F9F9;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,252,247,0.8) 100%);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1A1A1A; /* Jet Black */
  margin: 0 0 10px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #1A1A1A; /* Jet Black */
  margin: 0 0 20px 0;
  font-weight: 500;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.actions button {
  background-color: #1A1A1A; /* Jet Black */
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-grow: 1;
  text-transform: uppercase;
}

.actions button:hover {
  background-color: #D4AF37; /* Gold */
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #1A1A1A;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.actions a:hover {
  background-color: #F9E4E8; /* Blush Pink */
  color: #C9366F; /* Darker Pink */
  border-color: #F9E4E8;
  transform: translateY(-2px);
}

/* Overlay for "new" or "sale" tags */
.product-card::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(201, 54, 111, 0.85); /* Rose Gold with transparency */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-card.new::before {
  content: "NEW";
  opacity: 1;
  transform: scale(1);
}

.product-card.sale::before {
  content: "SALE";
  background-color: rgba(212, 175, 55, 0.85); /* Gold with transparency */
  opacity: 1;
  transform: scale(1);
}
.product-card.hot::before {
  content: "HOT";
  background-color: red; /* Gold with transparency */
  opacity: 1;
  transform: scale(1);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px;
  }
  
  .product-image-container {
    padding-top: 100%; /* Square aspect ratio on mobile */
  }
  
  .product-name {
    font-size: 16px;
  }
  
  .price {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .actions button {
    padding: 9px 15px;
    font-size: 12px;
  }
  
  .actions a {
    width: 32px;
    height: 32px;
  }
}

/* Luxury Highlight Section Styles */
.highlight-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  background-color: #f8f7f3; /* Soft ivory background */
  position: relative;
  overflow: hidden;
}

/* Add subtle pattern overlay */
.highlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#d4af37 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  z-index: 1;
}

.highlight-card {
  position: relative;
  flex: 1 1 300px;
  max-width: 400px;
  min-height: 320px;
  padding: 40px 30px;
  background-color: #ffffff; /* White */
  color: #1a1a1a; /* Deep charcoal text */
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 2;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #d4af37, #f9d9ca, #d4af37); /* Gold to blush to gold */
  opacity: 0.8;
  transition: height 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-card:hover::before {
  height: 8px;
}

.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
  color: #1a1a1a; /* Deep charcoal */
}

.highlight-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37; /* Gold underline */
  transition: width 0.3s ease;
}

.highlight-card:hover h3::after {
  width: 80px;
}

.highlight-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.highlight-card a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #d4af37; /* Gold text */
  position: relative;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.highlight-card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37; /* Gold underline */
  transition: width 0.3s ease;
}

.highlight-card a:hover {
  color: #b28a00; /* Darker gold on hover */
}

.highlight-card a:hover::after {
  width: 100%;
}

/* Card-specific styling */
.highlight-card.fragrance-month {
  background-color: #1a1a1a; /* Jet black background */
}

.highlight-card.fragrance-month h3,
.highlight-card.fragrance-month p {
  color: #ffffff; /* White text */
}

.highlight-card.fragrance-month a {
  color: #d4af37; /* Gold link */
}

.highlight-card.fragrance-month a:hover {
  color: #f9d9ca; /* Blush pink on hover */
}

.highlight-card.sustainable-scents {
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%); /* White to soft ivory gradient */
  border-left: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
}

.highlight-card.gift-sets {
  background-color: #fefefe;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* Add subtle motion effect */
@keyframes subtleFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.highlight-card {
  animation: subtleFloat 6s ease-in-out infinite;
}

.highlight-card:nth-child(2) {
  animation-delay: 2s;
}

.highlight-card:nth-child(3) {
  animation-delay: 4s;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .highlight-section {
    padding: 50px 30px;
  }
  
  .highlight-card {
    flex: 1 1 280px;
  }
}

@media screen and (max-width: 768px) {
  .highlight-section {
    padding: 40px 20px;
    gap: 20px;
  }
  
  .highlight-card {
    flex: 1 1 100%;
    min-height: 280px;
    padding: 30px 25px;
  }
  
  .highlight-card h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .highlight-section {
    padding: 30px 15px;
  }
  
  .highlight-card {
    padding: 25px 20px;
    min-height: 250px;
  }
  
  .highlight-card h3 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  
  .highlight-card p {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* Venus Scents Brand Story Section Styles */
.brand-story-section {
  position: relative;
  padding: 120px 60px;
  background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50C55.5228 50 60 45.5228 60 40C60 34.4772 55.5228 30 50 30C44.4772 30 40 34.4772 40 40C40 45.5228 44.4772 50 50 50Z' fill='%23c9b18f' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 1;
}

.brand-story-section h2 {
  position: relative;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #1a1a1a;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.brand-story-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9b18f, transparent);
  margin: 20px auto 0;
}

.brand-story-section p {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 300;
  color: #444;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.brand-story-section a {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #d4af37;
  color: #1a1a1a;
  font-size: 1rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s, background-color 0.3s ease, color 0.3s ease;
}

.brand-story-section a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #e2c17f);
  transition: left 0.3s ease;
  z-index: -1;
}

.brand-story-section a:hover {
  color: #ffffff;
}

.brand-story-section a:hover::before {
  left: 0;
}

.brand-story-section .golden-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(226, 193, 127, 0.05) 100%);
  z-index: 1;
}

.brand-story-section .golden-accent:nth-child(1) {
  top: -100px;
  left: -100px;
}

.brand-story-section .golden-accent:nth-child(2) {
  bottom: -80px;
  right: -50px;
  width: 200px;
  height: 200px;
}

.brand-story-section.visible h2,
.brand-story-section.visible p,
.brand-story-section.visible a {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 992px) {
  .brand-story-section {
    padding: 100px 40px;
  }
  
  .brand-story-section h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .brand-story-section {
    padding: 80px 30px;
  }
  
  .brand-story-section h2 {
    font-size: 3rem;
  }
  
  .brand-story-section p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .brand-story-section {
    padding: 60px 25px;
  }
  
  .brand-story-section h2 {
    font-size: 2.5rem;
  }
  
  .brand-story-section p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .brand-story-section a {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Sexy, Modern Footer CTA Styles */
.footer-cta {
  position: relative;
  background: linear-gradient(135deg, #dbd0d0 0%, #857070 100%);
  color: #fff;
  padding: 60px 40px;
  margin-top: 100px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Gold accent border */
.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, #f9f3e5, #d4af37, transparent);
  z-index: 2;
}

/* Rose gold accent line */
.footer-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0bfb8, #d4a59a, transparent);
  z-index: 2;
}

/* Subtle animated background */
.footer-cta .bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(233, 150, 122, 0.03) 0%, transparent 70%);
  z-index: -1;
}

.footer-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 35px;
  max-width: 800px;
  color: #f9f3e5; /* Soft Ivory */
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-cta a {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  color: #f9f3e5; /* Soft Ivory */
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #d4af37; /* Gold */
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.footer-cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.footer-cta a:hover {
  background: rgba(212, 175, 55, 0.9); /* Gold with opacity */
  color: #121212; /* Jet Black */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.footer-cta a:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-cta {
    padding: 40px 25px;
    margin-top: 60px;
  }
  
  .footer-cta p {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .footer-cta a {
    padding: 14px 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 30px 15px;
    margin-top: 40px;
  }
  
  .footer-cta p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-cta a {
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

/* Luxury Hero Banner CSS */
.hero-banna {
  position: relative;
  height: 100vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease forwards 0.5s;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FCC200, #D4AF37);
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #F5F5F5;
  line-height: 1.6;
  margin-top: 30px;
  font-weight: 300;
}

/* Animated background effect */
.hero-banna::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 223, 211, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulse 8s infinite alternate;
}

/* Gold accent border */
.hero-banna::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-banna {
    height: 80vh;
    min-height: 400px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-content h1::after {
    width: 80px;
  }
}

/* Optional mousemove parallax effect - remove if not needed */
.parallax-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.parallax-element.gold-accent {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #D4AF37, transparent 70%);
  filter: blur(5px);
}

.parallax-element.rose-accent {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 157, 157, 0.5), transparent 70%);
  filter: blur(8px);
}

/* Perfume Product Grid - Luxury Edition */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  position: relative;
  background: linear-gradient(135deg, #f9f7f4 0%, #fff8f8 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

/* Elegant background pattern */
.product-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

.product-cad {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 420px;
}

.product-cad:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.product-cad::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(212, 175, 55, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-cad:hover::after {
  opacity: 1;
}

.product-cad img {
  width: 100%;
  height: 750px;
  object-fit: contain;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.6s ease;
}

.product-cad:hover img {
  transform: scale(1.05);
}

.product-cad h4 {
  margin: 20px 20px 5px;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.product-cad h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.product-cad:hover h4::after {
  width: 60px;
}

.product-cad .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(26, 26, 26, 0.7);
  color: #ffffff;
  padding: 5px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.product-cad .price {
  margin: 0 20px;
  font-size: 20px;
  color: #d4af37;
  font-weight: 600;
}

.product-cad button {
  margin: 15px 20px;
  padding: 10px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-cad button:hover {
  background-color: #d4af37;
  letter-spacing: 1.5px;
}

.product-cad .wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #f1b3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
  z-index: 2;
}

.product-cad .wishlist:hover {
  background-color: #ffffff;
  transform: scale(1.1);
  color: #ff6b6b;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 30px 20px;
  }
  
  .product-cad {
    height: 380px;
  }
  
  .product-cad img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 25px 15px;
  }
  
  .product-cad {
    height: 320px;
  }
  
  .product-cad img {
    height: 180px;
  }
  
  .product-cad h4 {
    margin: 15px 15px 5px;
    font-size: 16px;
  }
  
  .product-cad .price {
    margin: 0 15px;
    font-size: 18px;
  }
  
  .product-cad button {
    margin: 10px 15px;
    padding: 8px 0;
  }
}

/* Story Highlight Section Styles */
.story-highlight {
  position: relative;
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 900px;
  background: linear-gradient(135deg, #f8f8f5 0%, #ffffff 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.story-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #e6be8a 50%, #f8d6d6 100%);
}

.quote-box {
  position: relative;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-left: 3px solid #d4af37;
  overflow: hidden;
  transition: transform 0.4s ease-out;
}

.quote-box:hover {
  transform: translateY(-5px);
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: 'Georgia', serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.1);
  z-index: 0;
}

.quote-box p {
  position: relative;
  margin: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 26px;
  line-height: 1.5;
  color: #222222;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  z-index: 1;
}

.controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.controls:hover {
  opacity: 1;
}

.control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.control-btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .story-highlight {
    margin: 40px auto;
    padding: 30px 15px;
  }
  
  .quote-box {
    padding: 25px 20px;
  }
  
  .quote-box p {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .story-highlight {
    margin: 30px auto;
    padding: 25px 12px;
  }
  
  .quote-box {
    padding: 20px 15px;
  }
  
  .quote-box p {
    font-size: 20px;
  }
  
  .quote-box::before {
    font-size: 80px;
    top: -10px;
    left: 5px;
  }
}

/* Subtle animation */
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.story-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  pointer-events: none;
  animation: shimmer 6s infinite linear;
}

/* Luxury Perfume Lazy Loading Section */

.lazy-load-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  position: relative;
  margin: 40px 0;
  min-height: 180px;
  text-align: center;
  background: linear-gradient(135deg, #f9f7f4 0%, #fff8f8 100%);
  border-radius: 12px;
  overflow: hidden;
}

.lazy-load-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.lazy-load-placeholder p {
  font-size: 18px;
  letter-spacing: 1px;
  color: #1a1a1a;
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: center;
}

.lazy-load-placeholder p::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #d4af37;
  animation: pulse 1.5s infinite ease-in-out;
}

.lazy-load-placeholder.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
  z-index: 1;
}

.lazy-load-placeholder .loading-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

/* Animation for dot after text */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Animation for shimmer effect */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Animation for loading circle */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* For the transition effect when new products appear */
.product-cad.lazy-loaded {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: calc(var(--order) * 0.15s);
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lazy-load-placeholder {
    padding: 40px 15px;
    min-height: 150px;
    margin: 30px 0;
  }
  
  .lazy-load-placeholder p {
    font-size: 16px;
  }
  
  .lazy-load-placeholder .loading-circle {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .lazy-load-placeholder {
    padding: 30px 10px;
    min-height: 120px;
    margin: 20px 0;
  }
  
  .lazy-load-placeholder p {
    font-size: 14px;
  }
  
  .lazy-load-placeholder .loading-circle {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}

/* Women's Perfume Collection Styles */
.women-perfume-container {
  padding: 60px 40px;
  margin: 60px 0;
  background-color: #fff8f8;
  position: relative;
  overflow: hidden;
}

.women-perfume-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.05) 0%, rgba(255, 192, 203, 0) 70%);
  z-index: 0;
}

.women-title-container {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.women-section-title {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px; 
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}


.women-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #f1b3b3;
}

.women-section-subtitle {
  font-size: 16px;
  color: #767676;
  font-weight: 300;
  margin: 20px 0 0;
  letter-spacing: 1px;
}

.women-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.women-product {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.women-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(241, 179, 179, 0.2);
}

.women-product-image {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.women-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.women-product:hover .women-product-image img {
  transform: scale(1.05);
}

.women-product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(241, 179, 179, 0.8);
  color: #ffffff;
  padding: 5px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.women-product-details {
  padding: 20px;
  position: relative;
}

.women-product-details h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 500;
}

.women-product-description {
  color: #767676;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.women-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.women-product-price {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
}

.women-add-to-cart {
  background-color: #f1b3b3;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.women-add-to-cart:hover {
  background-color: #e49b9b;
  transform: translateY(-2px);
}

.women-product-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #f1b3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.women-product-wishlist:hover {
  transform: scale(1.1);
  color: #e49b9b;
}

.women-product-wishlist.active {
  color: #ff6b6b;
}

/* Lazy Loading Styles */
.women-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  margin-top: 20px;
}

.women-loading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.women-loading-icon span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #f1b3b3;
  border-radius: 50%;
  animation: womendot 1.4s infinite ease-in-out both;
}

.women-loading-icon span:nth-child(1) {
  animation-delay: -0.32s;
}

.women-loading-icon span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes womendot {
  0%, 80%, 100% { 
    transform: scale(0);
  } 
  40% { 
    transform: scale(1.0);
  }
}

.women-lazy-loader p {
  color: #767676;
  font-size: 14px;
  margin: 0;
  letter-spacing: 1px;
}

/* Entrance animations for lazy loaded products */
.women-product.lazy-loaded {
  animation: womenfadeIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.women-product.lazy-loaded:nth-child(3n+1) {
  animation-delay: 0.1s;
}

.women-product.lazy-loaded:nth-child(3n+2) {
  animation-delay: 0.3s;
}

.women-product.lazy-loaded:nth-child(3n+3) {
  animation-delay: 0.5s;
}

@keyframes womenfadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .women-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .women-perfume-container {
    padding: 50px 30px;
    margin: 50px 0;
  }
}

@media (max-width: 768px) {
  .women-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
  }
  
  .women-perfume-container {
    padding: 40px 25px;
    margin: 40px 0;
  }
  
  .women-section-title {
    font-size: 30px;
  }
  
  .women-product-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .women-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .women-perfume-container {
    padding: 30px 20px;
    margin: 30px 0;
  }
  
  .women-section-title {
    font-size: 24px;
  }
  
  .women-section-subtitle {
    font-size: 14px;
  }
  
  .women-product-image {
    height: 180px;
  }
  
  .women-product-details {
    padding: 15px;
  }
  
  .women-product-details h3 {
    font-size: 16px;
  }
  
  .women-product-description {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .women-product-price {
    font-size: 16px;
  }
  
  .women-add-to-cart {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Men's Perfume Collection Styles */

.men-perfume-container {
  padding: 60px 40px;
  margin: 60px 0;
  background-color: #f7f8fa;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.men-perfume-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0) 70%);
  z-index: 0;
}

.men-perfume-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.03) 0%, rgba(26, 26, 26, 0) 70%);
  z-index: 0;
}

.men-title-container {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.men-section-title {
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 40px;       
  margin-bottom: 10px;    
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.men-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #1a1a1a;
}

.men-section-subtitle {
  font-size: 16px;
  color: #5a5a5a;
  font-weight: 300;
  margin: 20px 0 0;
  letter-spacing: 1px;
}

.men-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.men-product {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.men-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.men-product-image {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.men-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.men-product:hover .men-product-image img {
  transform: scale(1.05);
}

.men-product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.men-product:hover .men-product-image::after {
  opacity: 1;
}

.men-product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(26, 26, 26, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

.men-product-details {
  padding: 25px;
  position: relative;
}

.men-product-details h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.men-product-description {
  color: #5a5a5a;
  font-size: 14px;
  margin: 0 0 22px;
  line-height: 1.5;
}

.men-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.men-product-price {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
}

.men-add-to-cart {
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.men-add-to-cart:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.men-product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #aaaaaa;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.men-product-wishlist:hover {
  transform: scale(1.1);
  color: #1a1a1a;
}

.men-product-wishlist.active {
  color: #1a1a1a;
}

/* Lazy Loading Styles */
.men-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  margin-top: 20px;
}

.men-loading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.men-spinner {
  width: 35px;
  height: 35px;
  border: 3px solid rgba(26, 26, 26, 0.1);
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: menspin 1s infinite linear;
}

@keyframes menspin {
  to {
    transform: rotate(360deg);
  }
}

.men-lazy-loader p {
  color: #5a5a5a;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* Entrance animations for lazy loaded products */
.men-product.lazy-loaded {
  animation: menfadeIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.men-product.lazy-loaded:nth-child(3n+1) {
  animation-delay: 0.1s;
}

.men-product.lazy-loaded:nth-child(3n+2) {
  animation-delay: 0.3s;
}

.men-product.lazy-loaded:nth-child(3n+3) {
  animation-delay: 0.5s;
}

@keyframes menfadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .men-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .men-perfume-container {
    padding: 50px 30px;
    margin: 50px 0;
  }
}

@media (max-width: 768px) {
  .men-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
  }
  
  .men-perfume-container {
    padding: 40px 25px;
    margin: 40px 0;
  }
  
  .men-section-title {
    font-size: 30px;
  }
  
  .men-product-image {
    height: 220px;
  }
  
  .men-product-details {
    padding: 20px;
  }
  
  .men-product-details h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .men-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .men-perfume-container {
    padding: 30px 20px;
    margin: 30px 0;
  }
  
  .men-section-title {
    font-size: 24px;
  }
  
  .men-section-subtitle {
    font-size: 14px;
  }
  
  .men-product-image {
    height: 180px;
  }
  
  .men-product-details {
    padding: 15px;
  }
  
  .men-product-details h3 {
    font-size: 16px;
  }
  
  .men-product-description {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .men-product-price {
    font-size: 16px;
  }
  
  .men-add-to-cart {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Unisex Perfume Section Styles */
.unisex-perfume-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.unisex-title-container {
  text-align: center;
  margin-bottom: 40px;
}

.unisex-section-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #000;
  margin-top: 60px;       
  margin-bottom: 10px;    
  position: relative;
  display: inline-block;
}

.unisex-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4a19b, #e8c3b9);
  margin: 15px auto 0;
}

.unisex-section-subtitle {
  color: #444;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.unisex-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.unisex-product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.unisex-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.unisex-product-image {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.unisex-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.unisex-product:hover .unisex-product-image img {
  transform: scale(1.05);
}

.unisex-product-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 3px;
}

.unisex-product-details {
  padding: 20px;
  position: relative;
}

.unisex-product-details h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #222;
}

.unisex-product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 38px;
}

.unisex-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.unisex-product-price {
  font-weight: 600;
  color: #222;
  font-size: 1.1rem;
}

.unisex-add-to-cart {
  background-color: #000;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.unisex-add-to-cart:hover {
  background-color: #333;
}

.unisex-product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #d4a19b;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.unisex-product-wishlist:hover {
  transform: scale(1.2);
  color: #c27b73;
}

.unisex-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  color: #666;
}

.unisex-loading-icon {
  margin-bottom: 15px;
}

.unisex-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 161, 155, 0.2);
  border-top: 3px solid #d4a19b;
  border-radius: 50%;
  animation: unisex-spin 1s linear infinite;
}

@keyframes unisex-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .unisex-section-title {
    font-size: 2rem;
  }
  
  .unisex-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .unisex-perfume-container {
    padding: 0 15px;
    margin: 30px auto;
  }

  .unisex-section-title {
    font-size: 1.5rem;
  }

  .unisex-perfume-grid {
    grid-template-columns: 1fr;
  }

  .unisex-product-image {
    height: 250px;
  }
}

/* Best Sellers Section Styles */
.bestsellers-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.bestsellers-title-container {
  text-align: center;
  margin-bottom: 40px;
}

.bestsellers-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #BF9B30; 
  margin: 0;
  margin-bottom: 30px;
  margin-top: 125px;
  letter-spacing: 2px;
}

.bestsellers-section-subtitle {
  font-size: 16px;
  color: #C9A06C; 
  margin-top: 8px;
}

.bestsellers-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.bestsellers-product {
  background-color: #FEF9F1; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestsellers-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bestsellers-product-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.bestsellers-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.bestsellers-product:hover .bestsellers-product-image img {
  transform: scale(1.05);
}

.bestsellers-product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #D4AF37; /* Gold color */
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
}

.bestsellers-product-details {
  padding: 20px;
  position: relative;
}

.bestsellers-product-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #3A3A3A; /* Dark charcoal */
}

.bestsellers-product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.bestsellers-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bestsellers-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #BF9B30; /* Gold color */
}

.bestsellers-add-to-cart {
  background-color: #D4AF37; /* Gold */
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bestsellers-add-to-cart:hover {
  background-color: #C9A06C; /* Lighter gold */
}

.bestsellers-product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #E6C2BB; /* Pink blush */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bestsellers-product-wishlist:hover {
  color: #D49A8F; /* Darker pink blush */
  transform: scale(1.2);
}

.bestsellers-product-wishlist.active {
  color: #D49A8F; /* Darker pink blush */
}

.bestsellers-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.bestsellers-loading-icon {
  margin-bottom: 10px;
}

.bestsellers-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(201, 160, 108, 0.2); /* Lighter gold with opacity */
  border-top: 4px solid #D4AF37; /* Gold */
  border-radius: 50%;
  animation: bestsellers-spin 1s linear infinite;
}

@keyframes bestsellers-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bestsellers-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .bestsellers-section-title {
    font-size: 28px;
  }
  
  .bestsellers-section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bestsellers-perfume-grid {
    grid-template-columns: 1fr;
  }
  
  .bestsellers-product-image {
    height: 200px;
  }
  
  .bestsellers-section-title {
    font-size: 24px;
  }
}

/* New Arrivals Section Styles */
.new-arrivals-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.new-arrivals-title-container {
  text-align: center;
  margin-bottom: 40px;
}

.new-arrivals-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #D4A6B5; 
  margin: 0;
  margin-top: 125px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.new-arrivals-section-subtitle {
  font-size: 16px;
  color: #E6B8C7; 
  margin-top: 8px;
}

.new-arrivals-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.new-arrivals-product {
  background-color: #FFFFFF; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-arrivals-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.new-arrivals-product-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.new-arrivals-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.new-arrivals-product:hover .new-arrivals-product-image img {
  transform: scale(1.05);
}

.new-arrivals-product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #D4A6B5; /* Pink blush */
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
}

.new-arrivals-product-details {
  padding: 20px;
  position: relative;
}

.new-arrivals-product-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #3A3A3A; /* Dark charcoal */
}

.new-arrivals-product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.new-arrivals-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-arrivals-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #D4A6B5; /* Pink blush color */
}

.new-arrivals-add-to-cart {
  background-color: #D8B6A2; /* Ivory rose gold blend */
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-arrivals-add-to-cart:hover {
  background-color: #D4A6B5; /* Pink blush */
}

.new-arrivals-product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #D8B6A2; /* Ivory rose gold blend */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.new-arrivals-product-wishlist:hover {
  color: #D4A6B5; /* Pink blush */
  transform: scale(1.2);
}

.new-arrivals-product-wishlist.active {
  color: #D4A6B5; /* Pink blush */
}

.new-arrivals-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.new-arrivals-loading-icon {
  margin-bottom: 10px;
}

.new-arrivals-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(212, 166, 181, 0.2); /* Pink blush with opacity */
  border-top: 4px solid #D4A6B5; /* Pink blush */
  border-radius: 50%;
  animation: new-arrivals-spin 1s linear infinite;
}

@keyframes new-arrivals-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .new-arrivals-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .new-arrivals-section-title {
    font-size: 28px;
  }
  
  .new-arrivals-section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .new-arrivals-perfume-grid {
    grid-template-columns: 1fr;
  }
  
  .new-arrivals-product-image {
    height: 200px;
  }
  
  .new-arrivals-section-title {
    font-size: 24px;
  }
}

/* Gift Sets Section Styles */
.gift-sets-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.gift-sets-title-container {
  text-align: center;
  margin-bottom: 40px;
}

.gift-sets-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #B8A990; 
  margin: 0;
  margin-top: 120px;
  letter-spacing: 2px;
}

.gift-sets-section-subtitle {
  font-size: 16px;
  color: #CEBFAB; 
  margin-top: 8px;
}

.gift-sets-perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.gift-sets-product {
  background-color: #FAF7F2; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(184, 169, 144, 0.2); /* Very light ivory gold border */
}

.gift-sets-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gift-sets-product-image {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.gift-sets-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gift-sets-product:hover .gift-sets-product-image img {
  transform: scale(1.05);
}

.gift-sets-product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #B8A990; /* Ivory gold blend */
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
}

.gift-sets-product-details {
  padding: 20px;
  position: relative;
}

.gift-sets-product-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #3A3A3A; /* Dark charcoal */
}

.gift-sets-product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.gift-sets-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gift-sets-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #B8A990; /* Ivory gold blend */
}

.gift-sets-add-to-cart {
  background-color: #B8A990; /* Ivory gold blend */
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gift-sets-add-to-cart:hover {
  background-color: #A39377; /* Darker ivory gold */
}

.gift-sets-product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #CEBFAB; /* Lighter ivory gold */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.gift-sets-product-wishlist:hover {
  color: #B8A990; /* Ivory gold blend */
  transform: scale(1.2);
}

.gift-sets-product-wishlist.active {
  color: #B8A990; /* Ivory gold blend */
}

.gift-sets-lazy-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.gift-sets-loading-icon {
  margin-bottom: 10px;
}

.gift-sets-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(184, 169, 144, 0.2); /* Ivory gold with opacity */
  border-top: 4px solid #B8A990; /* Ivory gold */
  border-radius: 50%;
  animation: gift-sets-spin 1s linear infinite;
}

@keyframes gift-sets-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gift-sets-perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gift-sets-section-title {
    font-size: 28px;
  }
  
  .gift-sets-section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gift-sets-perfume-grid {
    grid-template-columns: 1fr;
  }
  
  .gift-sets-product-image {
    height: 200px;
  }
  
  .gift-sets-section-title {
    font-size: 24px;
  }
}

/* Elegant Promo Offer Section Styling */
.promo-offer {
  background: linear-gradient(135deg, #121212 0%, #232323 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #fff9f0; /* Soft Ivory */
  margin: 2rem auto;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
}

.promo-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f8d7da 50%, #ffb6c1 100%); /* Gold to Rose Gold to Blush */
  z-index: 5;
}

.promo-offer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E") center center;
  opacity: 0.05;
  z-index: 1;
}

.promo-offer p {
  position: relative;
  z-index: 10;
  font-family: 'Montserrat', sans-serif; 
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8;
  padding: 2.5rem;
  margin: 0;
  text-align: center;
}

.promo-offer strong {
  color: #d4af37; /* Gold */
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.promo-offer strong::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Price highlight effect */
.promo-offer strong:nth-of-type(1) {
  color: #d4af37; /* Gold */
}

.promo-offer strong:nth-of-type(2) {
  color: #e0b8b8; /* Rose Gold */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .promo-offer {
    border-radius: 8px;
    margin: 1.5rem auto;
  }
  
  .promo-offer p {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .promo-offer p {
    padding: 1.75rem 1.25rem;
    font-size: 1rem;
  }
}

/* Special highlight animation */
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.promo-offer::before {
  background-size: 200% auto;
  animation: shimmer 4s infinite linear;
}

/* Hover effects */
.promo-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.promo-offer:hover strong {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Luxurious Perfume Hero Section Styles */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  overflow: hidden;
  background-color: #f8f5f2; /* Soft Ivory */
  background-image: url('https://images.unsplash.com/photo-1595425964277-5f0ae9a3288a?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  color: #f8f5f2; /* Soft Ivory */
}

/* Overlay for better text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

/* Content positioning */
.hero h1, 
.hero p, 
.hero button {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

/* Heading styles */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Paragraph styles */
.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s forwards 0.6s;
  font-weight: 300;
}

/* Button styles */
.hero button {
  font-family: 'Montserrat', sans-serif;
  background-color: transparent;
  border: 1px solid #D4AF37; /* Gold */
  color: #f8f5f2; /* Soft Ivory */
  padding: 0.8rem 3rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s forwards 0.9s;
}

.hero button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: all 0.8s;
}

.hero button:hover {
  background-color: #D4AF37; /* Gold */
  color: #000000; /* Jet Black */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero button:hover::before {
  left: 100%;
}

/* Gold accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent); /* Gold */
  z-index: 2;
}

/* Animation for content */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating perfume bottle elements */
.hero .perfume-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero .perfume-accent.bottle {
  right: 10%;
  top: 20%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="pink"><path d="M12 2a1 1 0 00-1 1v1h2V3a1 1 0 00-1-1zm-3 3v1.5a.5.5 0 00.5.5h5a.5.5 0 00.5-.5V5H9zm-1 3.75V19.5a1.5 1.5 0 001.5 1.5h5a1.5 1.5 0 001.5-1.5V8.75l-4-1.5-4 1.5z"/></svg>');
  animation: float 15s infinite ease-in-out;
}

.hero .perfume-accent.drop {
  left: 12%;
  bottom: 25%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="pink"><path d="M12 2.5c-3.8 4.8-7 9.1-7 13.1 0 3.6 3.1 6.4 7 6.4s7-2.8 7-6.4c0-4-3.2-8.3-7-13.1z"/></svg>');
  animation: float 18s infinite ease-in-out reverse;
  animation-delay: 3s;
  transform: scale(0.6);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-15px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(10px, 10px) rotate(-3deg);
  }
  75% {
    transform: translate(-5px, 15px) rotate(2deg);
  }
}

/* Golden particles */
.hero .particle {
  position: absolute;
  background-color: #D4AF37; /* Gold */
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  animation: particleAnimation var(--duration) infinite ease-out;
}

@keyframes particleAnimation {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-80px) rotate(360deg);
  }
}

/* Rose gold glow */
.hero .rose-gold-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, rgba(183, 110, 121, 0) 70%);
  z-index: 1;
  left: 60%;
  top: 30%;
  opacity: 0;
  animation: glowPulse 5s infinite alternate ease-in-out;
  animation-delay: 1.5s;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero .perfume-accent {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 2.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero .perfume-accent.bottle {
    right: 5%;
  }
  
  .hero .perfume-accent.drop {
    left: 7%;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero button {
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero .perfume-accent {
    opacity: 0.1;
    width: 60px;
    height: 60px;
  }
}

/* Luxury Perfume Promo Section Styles */
.articles {
  background-color: #FFFEF5; /* Soft Ivory */
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.articles::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,254,245,0) 0%, rgba(252,237,234,0.3) 100%); /* Subtle Blush gradient */
  z-index: 1;
  pointer-events: none;
}

.articles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #121212; /* Deep Charcoal */
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.articles h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #D4AF37; /* Luxe Gold */
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.articles article {
  background-color: #FFFFFF; /* White */
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.articles article:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.articles article img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.articles article:hover img {
  transform: scale(1.05);
}

.article-content {
  padding: 30px;
  position: relative;
}

.article-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D4AF37; /* Luxe Gold */
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.article-category::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #F8C3C1; /* Dusty Blush */
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.articles article:hover .article-category::after {
  transform: scaleX(1);
  transform-origin: left;
}

.articles h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #121212; /* Deep Charcoal */
  margin: 15px 0;
  line-height: 1.3;
  font-weight: 500;
}

.articles p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
}

.read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #121212; /* Deep Charcoal */
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #D4AF37; /* Luxe Gold */
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.read-more svg {
  margin-left: 8px;
  transition: transform 0.4s ease;
}

.articles article:hover .read-more::after {
  transform: translateX(0);
}

.articles article:hover .read-more svg {
  transform: translateX(5px);
}

/* Accents and decorations */
.gold-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #D4AF37; /* Luxe Gold */
  opacity: 0.5;
  z-index: 1;
}

.accent-1 {
  top: 10%;
  left: 5%;
  border-radius: 50%;
}

.accent-2 {
  bottom: 15%;
  right: 5%;
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .articles {
      padding: 60px 30px;
  }
  
  .articles h2 {
      font-size: 2.8rem;
  }
  
  .articles-container {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .articles {
      padding: 50px 20px;
  }
  
  .articles h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
  }
  
  .article-content {
      padding: 25px;
  }
  
  .articles h3 {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .articles {
      padding: 40px 15px;
  }
  
  .articles h2 {
      font-size: 1.8rem;
  }
  
  .articles article img {
      height: 250px;
  }
  
  .article-content {
      padding: 20px;
  }
}

/* Luxury Mood Section Styling */
.mood {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #FCFBF9; /* Soft Ivory */
  color: #222222; /* Deep Charcoal */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.mood::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,235,235,0.3) 0%, rgba(252,251,249,0.1) 50%, rgba(212,175,155,0.2) 100%);
  pointer-events: none;
}

.mood h2 {
  grid-column: 1 / -1;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #222222; /* Deep Charcoal */
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #D4B78F; /* Luxe Gold */
  padding-bottom: 0.8rem;
  position: relative;
}

.mood h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #D4B78F; /* Luxe Gold */
}

.mood > div {
  background-color: #FFFFFF; /* White */
  border-radius: 2px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03), 0 3px 10px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.mood > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.04);
}

.mood > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #D4B78F, #E7C8C0); /* Gold to Blush gradient */
  transition: height 0.5s ease;
}

.mood > div:hover::before {
  height: 100%;
}

.mood h3 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 1.5rem 2rem 0.5rem;
  margin: 0;
  position: relative;
  transition: color 0.3s ease;
}

.mood > div:nth-child(2) h3 { color: #E7C8C0; /* Dusty Blush */ }
.mood > div:nth-child(3) h3 { color: #222222; /* Deep Charcoal */ }
.mood > div:nth-child(4) h3 { color: #9C9A9A; /* Soft Silver */ }
.mood > div:nth-child(5) h3 { color: #D4B78F; /* Luxe Gold */ }

.mood article {
  padding: 0 2rem 2rem;
}

.mood h4 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 1rem 0;
  line-height: 1.4;
  font-style: italic;
  color: #111111; /* Jet Black */
}

.mood p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.mood > div:hover p {
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mood {
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .mood h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .mood h3 {
    font-size: 1.5rem;
    padding: 1.2rem 1.5rem 0.5rem;
  }
  
  .mood article {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .mood {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .mood h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .mood > div {
    border-radius: 0;
  }
  
  .mood h3 {
    font-size: 1.3rem;
    padding: 1rem 1.2rem 0.3rem;
  }
  
  .mood article {
    padding: 0 1.2rem 1.2rem;
  }
}

/* Luxury Perfume Blog Styling */

/* Main Blog Styling */
.blog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: #FFFCF8; /* Soft Ivory */
  color: #222222; /* Deep Charcoal */
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  line-height: 1.6;
}

.blog h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
  color: #222222; /* Deep Charcoal */
  position: relative;
}

.blog h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #D4AF37; /* Gold */
  margin: 0.8rem auto 0;
}

/* Article Styling */
.blog article {
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: #FFFFFF; /* White */
  border-left: 1px solid #F9E0E0; /* Subtle Blush Pink */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.blog article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.blog article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0));
  pointer-events: none;
}

.blog article h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #222222; /* Deep Charcoal */
  position: relative;
  display: inline-block;
}

.blog article h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 1px;
  background-color: #D4AF37; /* Gold */
  transition: width 0.3s ease;
}

.blog article:hover h3::after {
  width: 100%;
}

.blog article p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444444;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 300;
}

.blog article p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog h2 {
    grid-column: 1 / -1;
    font-size: 3.2rem;
  }
}

@media (min-width: 992px) {
  .blog {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog article {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .blog h2 {
    font-size: 2.2rem;
  }
  
  .blog article {
    padding: 1.5rem;
  }
  
  .blog article h3 {
    font-size: 1.5rem;
  }
  
  .blog article p {
    font-size: 1rem;
  }
}

/* Elegant Hover Effects */
.blog article h3 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.blog article h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #E0BFB8; /* Rose Gold */
  transition: all 0.3s ease;
  opacity: 0;
}

.blog article:hover h3::before {
  left: 0;
  opacity: 1;
}

/* Fancy First Letter */
.blog article p:first-of-type::first-letter {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  color: #D4AF37; /* Gold */
  float: left;
  line-height: 1;
  margin-right: 0.2rem;
  padding-top: 0.4rem;
}

/* Signature Section Styling */
.signature {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #fffef9 0%, #f9f5f0 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.signature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #e6be8a 50%, #f9d6c5 100%);
}

.signature::after {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 12rem;
  font-family: 'Playfair Display', serif;
  color: rgba(212, 175, 55, 0.08);
  line-height: 0;
}

.signature h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.signature h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #d4af37;
}

.signature article {
  margin-bottom: 3rem;
  position: relative;
  transition: transform 0.3s ease;
}

.signature article:hover {
  transform: translateX(5px);
}

.signature h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.signature p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.signature p:last-child {
  margin-bottom: 0;
}

/* Ambient background animation */
@keyframes ambientGlow {
  0% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08);
  }
  100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }
}

.signature {
  animation: ambientGlow 10s infinite ease-in-out;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .signature {
    padding: 2.5rem;
    margin: 4rem auto;
  }
  
  .signature h2 {
    font-size: 2.2rem;
  }
  
  .signature p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .signature {
    padding: 2rem;
    margin: 3rem auto;
  }
  
  .signature h2 {
    font-size: 2rem;
  }
  
  .signature h3 {
    font-size: 1.2rem;
  }
  
  .signature::after {
    font-size: 8rem;
    right: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .signature {
    padding: 1.5rem;
    margin: 2rem auto;
    border-radius: 8px;
  }
  
  .signature h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .signature h3 {
    font-size: 1.1rem;
  }
  
  .signature p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .signature::after {
    font-size: 6rem;
    right: 1rem;
    top: 1rem;
  }
}

/* Luxury Quiz Section Styling */
.quiz {
  background: linear-gradient(135deg, #fcfbf8 0%, #f5f1eb 100%);
  max-width: 800px;
  margin: 50px auto;
  padding: 60px 40px;
  border-radius: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
}

.quiz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(243, 192, 174, 0.05), rgba(217, 178, 152, 0.08));
  z-index: 0;
}

.quiz::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 80px;
  background: #d4af37;
  transform: translateY(40px);
}

.quiz h2 {
  color: #161616;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.5px;
}

.quiz h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 1px;
  background: #d4af37;
}

.quiz p {
  color: #444;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.quiz button {
  background: transparent;
  color: #161616;
  border: 1px solid #d4af37;
  padding: 16px 40px;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.quiz button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: all 0.6s ease;
}

.quiz button:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.quiz button:hover::before {
  left: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .quiz {
    padding: 40px 30px;
    margin: 30px auto;
  }
  
  .quiz h2 {
    font-size: 2.2rem;
  }
  
  .quiz p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .quiz {
    padding: 35px 25px;
    margin: 20px auto;
  }
  
  .quiz h2 {
    font-size: 1.8rem;
  }
  
  .quiz p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .quiz button {
    padding: 14px 30px;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* Luxury Inserts Section Styling */
.inserts {
  max-width: 100%;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #FFFBF7; /* Soft Ivory */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.inserts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #F8C3CB 50%, #D4AF37 100%); /* Gold to Blush Pink to Gold */
}

.inserts::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(248, 195, 203, 0.1) 0%, rgba(255, 251, 247, 0) 70%); /* Subtle Blush Pink accent */
  z-index: 1;
}

.inserts h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A1A1A; /* Deep Charcoal */
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.inserts h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #D4AF37; /* Gold */
  transition: width 0.3s ease;
}

.inserts h2:hover::after {
  width: 100%;
}

.inserts p {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  color: #4A4A4A; /* Soft Charcoal for readability */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Style for customer testimonials */
.inserts h2 + p {
  font-style: italic;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Gold border */
}

/* Style emphasized text */
.inserts em, 
.inserts i {
  color: #D4AF37; /* Gold */
  font-style: normal;
  font-weight: 500;
}

.inserts strong,
.inserts b {
  color: #1A1A1A; /* Deep Charcoal */
  font-weight: 600;
}

/* Add decorative quotes to testimonials */
.inserts h2:nth-of-type(2) + p::before {
  content: '"';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2); /* Subtle Gold */
  position: absolute;
  left: -0.5rem;
  top: -1rem;
}

/* Scent of the Month special styling */
.inserts h2:nth-of-type(3) {
  color: #1A1A1A; /* Deep Charcoal */
}

.inserts h2:nth-of-type(3) + p {
  padding-right: 1rem;
  border-right: 1px solid rgba(248, 195, 203, 0.3); /* Subtle Blush Pink border */
}

/* Animation for section entry */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.inserts {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive styles */
@media (max-width: 768px) {
  .inserts {
    padding: 1.5rem;
    margin: 2rem auto;
  }
  
  .inserts h2 {
    font-size: 1.5rem;
  }
  
  .inserts p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .inserts::after {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .inserts {
    padding: 1.2rem;
    margin: 1.5rem auto;
  }
  
  .inserts h2 {
    font-size: 1.3rem;
  }
  
  .inserts h2::after {
    width: 30px;
  }
  
  .inserts p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
}

/* Luxury Perfume Shop CTA Styling */
.shop-cta {
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  margin: 4rem auto;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  transition: all 0.4s ease;
}

.shop-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.shop-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(228, 191, 182, 0.05) 30%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  opacity: 0.8;
  transform: rotate(-10deg);
  pointer-events: none;
}

.shop-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 1.6rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.shop-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.5s ease 0.1s;
}

.shop-cta button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #d4af37;
  border-radius: 0;
  padding: 1.2rem 2.8rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s ease;
}

.shop-cta button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.4) 100%);
  transition: all 0.5s ease;
  z-index: -1;
}

/* Hover Effects */
.shop-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.shop-cta:hover h2 {
  transform: translateY(-3px);
}

.shop-cta:hover p {
  transform: translateY(-2px);
}

.shop-cta button:hover {
  color: #000000;
  border-color: #d4af37;
  letter-spacing: 2px;
}

.shop-cta button:hover::before {
  left: 0;
}

/* Perfume bottle decoration */
.shop-cta::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 40'%3E%3Cpath d='M12 0C10.895 0 10 0.895 10 2V8C10 9.105 10.895 10 12 10C13.105 10 14 9.105 14 8V2C14 0.895 13.105 0 12 0ZM7 12V38C7 39.105 7.895 40 9 40H15C16.105 40 17 39.105 17 38V12C17 10.895 16.105 10 15 10H9C7.895 10 7 10.895 7 12Z' fill='%23d4af37' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0.8;
  transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .shop-cta {
    padding: 3rem 2rem;
  }
  
  .shop-cta h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .shop-cta {
    padding: 2.5rem 1.8rem;
    margin: 3rem auto;
  }
  
  .shop-cta h2 {
    font-size: 2.4rem;
  }
  
  .shop-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .shop-cta button {
    padding: 1rem 2.2rem;
  }
}

@media (max-width: 576px) {
  .shop-cta {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  
  .shop-cta h2 {
    font-size: 2rem;
  }
  
  .shop-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
  
  .shop-cta button {
    width: 100%;
    padding: 0.9rem 1.8rem;
  }
}

/* Luxury Developer Contact Section */
.developer-contact {
  background: linear-gradient(135deg, #f9f7f2 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 3rem;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  margin: 2rem auto;
  border: 1px solid rgba(217, 179, 140, 0.3);
}

.developer-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d9b38c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.developer-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(217, 179, 140, 0.2) 0%, rgba(217, 179, 140, 0) 70%);
  z-index: 0;
}

.developer-contact h2 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.developer-contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d9b38c 0%, #f2d0a9 100%);
  margin-top: 0.7rem;
}

.developer-contact p {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
  max-width: 90%;
}

.developer-contact p:first-of-type {
  font-size: 1.15rem;
  font-weight: 300;
  color: #1a1a1a;
}

.developer-contact a {
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.developer-contact a:hover {
  color: #d9b38c;
}

.developer-contact button {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.developer-contact button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 179, 140, 0.3), transparent);
  transition: all 0.6s ease;
}

.developer-contact button:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.developer-contact button:hover::before {
  left: 100%;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(217, 179, 140, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(217, 179, 140, 0.2);
  border-color: rgba(217, 179, 140, 0.4);
}

.contact-method i {
  font-size: 1.2rem;
  color: #d9b38c;
}

.contact-method span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #333333;
}

.cta-container {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d9b38c;
  opacity: 0;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .developer-contact {
    padding: 2rem;
  }
  
  .developer-contact h2 {
    font-size: 2.2rem;
  }
  
  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }
  
  .developer-contact p {
    max-width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .developer-contact {
    padding: 1.5rem;
  }
  
  .developer-contact h2 {
    font-size: 1.8rem;
  }
  
  .developer-contact button {
    width: 100%;
    justify-content: center;
  }
}

/* Luxury Contact Hero Section Styling */
.contact-hero {
  position: relative;
  padding: 120px 40px;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  margin: 40px 0;
}

/* Create elegant gold border accents */
.contact-hero:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(205, 175, 125, 0.3);
  pointer-events: none;
  z-index: 1;
}

/* Subtle corner embellishments */
.contact-hero:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-top: 1px solid rgba(205, 175, 125, 0.5);
  border-left: 1px solid rgba(205, 175, 125, 0.5);
  top: 20px;
  left: 20px;
  z-index: 2;
}

.contact-hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid rgba(205, 175, 125, 0.5);
  border-right: 1px solid rgba(205, 175, 125, 0.5);
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.contact-hero h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #222222;
  margin-bottom: 30px;
  padding-bottom: 20px;
  display: inline-block;
}

/* Elegant underline for heading */
.contact-hero h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(205, 175, 125, 0), rgba(205, 175, 125, 1), rgba(205, 175, 125, 0));
}

.contact-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Subtle accent elements */
.contact-hero-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 219, 219, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  top: -40px;
  right: -40px;
  z-index: 0;
}

.contact-hero-accent-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 175, 125, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -30px;
  left: 10%;
  z-index: 0;
}

/* Animated subtle shimmer effect */
.contact-hero-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 25px;
  }
  
  .contact-hero h2 {
    font-size: 36px;
  }
  
  .contact-hero:before,
  .contact-hero:after,
  .contact-hero-corner {
    display: none;
  }
  
  .contact-hero-accent,
  .contact-hero-accent-2 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 60px 20px;
  }
  
  .contact-hero h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .contact-hero p {
    font-size: 14px;
  }
}

/* Luxury Contact Grid Styling */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 30px;
  background: linear-gradient(135deg, #f9f6f2 0%, #ffffff 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.contact-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f9d9d0 0%, #d4af37 50%, #f9d9d0 100%);
}

.contact-grid > div {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-grid > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transform: scaleX(0.3);
  opacity: 0;
  transition: all 0.5s ease;
}

.contact-grid > div:hover::after {
  transform: scaleX(0.8);
  opacity: 1;
}

.contact-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.contact-grid p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 16px;
}

.contact-grid p:last-child {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 5px;
}

.contact-grid a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.contact-grid a:not(button)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d4af37;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.contact-grid a:not(button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-grid a:not(button):hover {
  color: #d4af37;
}

.contact-grid button {
  background: linear-gradient(135deg, #d4af37 0%, #e6c672 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.contact-grid button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.contact-grid button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #cda832 0%, #d9ba5c 100%);
}

.contact-grid button:hover::before {
  left: 100%;
}

.contact-grid button:active {
  transform: translateY(1px);
}

/* Icon styling enhancement */
.contact-grid h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .contact-grid > div {
    padding: 25px 20px;
  }
  
  .contact-grid h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .contact-grid {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .contact-grid > div {
    padding: 20px 15px;
  }
  
  .contact-grid h3 {
    font-size: 20px;
  }
  
  .contact-grid p {
    font-size: 14px;
  }
}

/* Optional decorative elements for luxury feel */
.contact-grid > div::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(249, 217, 208, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

/* Luxury Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background: #fcfcfa; /* Soft Ivory */
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #e6be8a 100%); /* Gold gradient */
}

.contact-form form {
  position: relative;
  z-index: 2;
}

.contact-form h3 {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #222222; /* Deep Charcoal */
  position: relative;
  padding-bottom: 12px;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #d4af37; /* Gold */
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #555555;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333333;
  transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d4af37; /* Gold */
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form label[for="message"] {
  margin-top: 5px;
}

/* Custom checkbox styling */
.contact-form input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.contact-form input[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  text-transform: none;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 400;
  display: inline-block;
}

.contact-form input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #d4af37; /* Gold */
  border-radius: 3px;
  background: #ffffff;
}

.contact-form input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 2px;
  background: #d4af37;
  transform: rotate(45deg);
  box-shadow: 2px -2px 0 0 #d4af37;
  transform-origin: left;
}

.contact-form button[type="submit"] {
  display: inline-block;
  padding: 14px 30px;
  background: #222222; /* Deep Charcoal */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form button[type="submit"]::before {
  content: '';
  position: absolute;
  left: -5px;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: #d4af37; /* Gold */
  transition: width 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background: #1a1a1a;
}

.contact-form button[type="submit"]:hover::before {
  width: calc(100% + 10px);
}

/* Form validation styles */
.contact-form .input-error {
  border-color: #e57373 !important;
}

.contact-form .error-message {
  color: #e57373;
  font-size: 12px;
  margin-top: -15px;
  margin-bottom: 15px;
  display: none;
}

/* Success message */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-message h4 {
  color: #222222;
  font-size: 24px;
  margin-bottom: 15px;
}

.form-success-message p {
  color: #666666;
  font-size: 16px;
}

.success-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #f3e9d2;
  border-radius: 50%;
  position: relative;
}

.success-icon::before,
.success-icon::after {
  content: '';
  position: absolute;
  background: #d4af37;
}

.success-icon::before {
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  top: 35px;
  left: 20px;
}

.success-icon::after {
  width: 20px;
  height: 2px;
  transform: rotate(-45deg);
  top: 32px;
  left: 24px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 25px;
    margin: 40px 15px;
  }
  
  .contact-form h3 {
    font-size: 24px;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px;
  }
  
  .contact-form button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 25px 20px;
  }
  
  .contact-form h3 {
    font-size: 22px;
  }
  
  .contact-form label {
    font-size: 12px;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Focus within effects */
.contact-form .input-group {
  position: relative;
}

.contact-form .floating-label {
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 12px;
  transition: 0.2s ease all;
  color: #888888;
}

.contact-form input:focus ~ .floating-label,
.contact-form input:not(:placeholder-shown) ~ .floating-label,
.contact-form textarea:focus ~ .floating-label,
.contact-form textarea:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #d4af37;
  background: #fcfcfa;
  padding: 0 5px;
}

/* Elegant hover effect for inputs */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #e6be8a;
}

/* Instagram Feed Styling - Elevated Luxury Version */

.instagram-feed {
  padding: 4rem 2rem;
  background-color: #f8f7f3; /* Soft Ivory */
  position: relative;
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
}

.instagram-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 240, 235, 0.8) 0%, rgba(248, 247, 243, 0.6) 100%);
  z-index: 1;
}

.instagram-feed > * {
  position: relative;
  z-index: 2;
}

.instagram-feed h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #1a1a1a; /* Deep Charcoal */
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.instagram-feed h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: #d4af37; /* Luxe Gold */
  margin: 0.75rem auto;
}

.instagram-feed p {
  font-size: 1.1rem;
  text-align: center;
  color: #333333;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.instagram-feed p a {
  color: #1a1a1a;
  text-decoration: none;
  font-style: italic;
  position: relative;
  transition: all 0.3s ease;
}

.instagram-feed p a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #d4af37; /* Luxe Gold */
  transition: width 0.3s ease;
}

.instagram-feed p a:hover {
  color: #d4af37; /* Luxe Gold */
}

.instagram-feed p a:hover::after {
  width: 100%;
}

.instagram-feed > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.instagram-feed > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.9);
}

.instagram-feed > div img:hover {
  transform: translateY(-10px);
  filter: saturate(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Overlay effect on hover */
.instagram-feed > div img {
  position: relative;
}

.instagram-feed > div img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed > div img:hover::after {
  opacity: 1;
}

/* Gold accent divider */
.instagram-feed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .instagram-feed > div {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .instagram-feed > div {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .instagram-feed h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .instagram-feed {
    padding: 3rem 1.5rem;
  }
  
  .instagram-feed > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .instagram-feed h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .instagram-feed {
    padding: 2.5rem 1rem;
  }
  
  .instagram-feed > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .instagram-feed h2 {
    font-size: 1.8rem;
  }
  
  .instagram-feed p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Developer Credit Section */
.developer-credit {
  background: linear-gradient(to right, #f8f6f0, #ffffff);
  border-left: 3px solid #cfb283;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 500px;
  padding: 26px 36px;
  border-radius: 2px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.developer-credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #cfb283, #e2c9a6, #cfb283);
}

.developer-credit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.developer-credit p {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0;
  font-weight: 300;
}

.developer-credit strong {
  color: #111111;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.developer-credit strong::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cfb283;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.developer-credit:hover strong::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.developer-credit a {
  color: #111111;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
}

.developer-credit a:hover {
  color: #cfb283;
}

.developer-credit button {
  background-color: transparent;
  border: 1px solid #cfb283;
  color: #111111;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 16px;
  padding: 10px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.developer-credit button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #cfb283;
  transition: all 0.4s ease;
  z-index: -1;
}

.developer-credit button:hover {
  color: #ffffff;
}

.developer-credit button:hover::before {
  height: 100%;
}

/* Subtle animation for the entire section */
@keyframes subtle-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow: 0 10px 30px rgba(207, 178, 131, 0.1);
  }
}

.developer-credit:hover {
  animation: subtle-glow 3s infinite ease-in-out;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .developer-credit {
    margin: 30px 20px;
    padding: 22px 28px;
  }
  
  .developer-credit p {
    font-size: 15px;
  }
  
  .developer-credit button {
    padding: 8px 20px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .developer-credit {
    padding: 20px 24px;
  }
  
  .developer-credit p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Luxury Fragrance Collection Section Styles */

.home-shop-links {
  padding: 80px 20px;
  background: linear-gradient(135deg, #faf8f8 0%, #f7f3f4 50%, #f9f6f7 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.home-shop-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(231, 176, 176, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(218, 165, 165, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.home-shop-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #8b6b6b;
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.home-shop-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a5a5, transparent);
  opacity: 0.6;
}

.home-shop-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #a07878;
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 600px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.home-shop-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.shop-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 165, 165, 0.2);
  border-radius: 16px;
  text-decoration: none;
  color: #8b6b6b;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(139, 107, 107, 0.1);
  min-height: 70px;
}

.shop-link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.1), transparent);
  transition: left 0.6s ease;
}

.shop-link-button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.shop-link-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 165, 165, 0.4);
  color: #7a5a5a;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 107, 107, 0.2);
  padding-right: 45px;
}

.shop-link-button:hover::before {
  left: 100%;
}

.shop-link-button:hover::after {
  opacity: 1;
  right: 25px;
}

.shop-link-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(139, 107, 107, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-shop-links {
    padding: 60px 15px;
  }
  
  .home-shop-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }
  
  .shop-link-button {
    padding: 18px 25px;
    font-size: 1rem;
    min-height: 60px;
  }
  
  .home-shop-title {
    margin-bottom: 15px;
  }
  
  .home-shop-subtitle {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .home-shop-links {
    padding: 40px 10px;
  }
  
  .shop-link-button {
    padding: 16px 20px;
    font-size: 0.95rem;
    min-height: 55px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-shop-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1025px) {
  .home-shop-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .home-shop-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Enhanced accessibility and focus states */
.shop-link-button:focus {
  outline: none;
  border-color: #d4a5a5;
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.3);
}

.shop-link-button:focus:not(:focus-visible) {
  box-shadow: 0 8px 32px rgba(139, 107, 107, 0.1);
}

/* Smooth entrance animation */
.home-shop-links {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered button animation */
.shop-link-button {
  animation: slideInScale 0.6s ease-out both;
}

.shop-link-button:nth-child(1) { animation-delay: 0.1s; }
.shop-link-button:nth-child(2) { animation-delay: 0.2s; }
.shop-link-button:nth-child(3) { animation-delay: 0.3s; }
.shop-link-button:nth-child(4) { animation-delay: 0.4s; }
.shop-link-button:nth-child(5) { animation-delay: 0.5s; }
.shop-link-button:nth-child(6) { animation-delay: 0.6s; }
.shop-link-button:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Luxury Body Splash Section Styles */
.body-splash-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #fffef9 0%, #f8f4f0 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.body-splash-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(213, 162, 130, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 220, 220, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 215, 180, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.body-splash-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: #2a2a2a;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.body-splash-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #d5a282, #f0dcdc, #d5a282);
  border-radius: 2px;
}

.body-splash-intro {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.body-splash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.body-splash-product {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 35px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(213, 162, 130, 0.1);
  box-shadow: 
    0 8px 32px rgba(213, 162, 130, 0.08),
    0 4px 16px rgba(240, 220, 220, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  cursor: pointer;
}

.body-splash-product::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(213, 162, 130, 0.03), transparent);
  transform: rotate(-45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.body-splash-product:hover::before {
  opacity: 1;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.body-splash-product:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(213, 162, 130, 0.15),
    0 15px 35px rgba(240, 220, 220, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(213, 162, 130, 0.2);
}

.body-splash-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 500px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f8f4f0, #fff);
}

.body-splash-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(1.05) contrast(1.1);
  opacity: 0;
}

.body-splash-image img.loaded {
  opacity: 1;
}

.body-splash-image img.lazy-loading {
  background: linear-gradient(135deg, #f8f4f0, #fff);
  position: relative;
}

.body-splash-image img.lazy-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(213, 162, 130, 0.1), transparent);
  animation: shimmerLoad 1.5s infinite;
}

@keyframes shimmerLoad {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.body-splash-product:hover .body-splash-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.body-splash-tag {
  position: absolute;
  top: 15px;
  left: -10px;
  background: linear-gradient(135deg, rgba(213, 162, 130, 0.95), rgba(240, 220, 220, 0.95));
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 6px 20px rgba(213, 162, 130, 0.25),
    0 2px 8px rgba(240, 220, 220, 0.15);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.body-splash-product:hover .body-splash-tag {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(213, 162, 130, 0.35),
    0 4px 12px rgba(240, 220, 220, 0.2);
}

.body-splash-details h3 {
  font-size: 1.8rem;
  color: #2a2a2a;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-family: 'Playfair Display', serif;
}

.body-splash-description {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.body-splash-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.body-splash-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #d5a282;
  letter-spacing: 0.5px;
}

.body-splash-add-to-cart {
  background: linear-gradient(135deg, #d5a282, #c8956d);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(213, 162, 130, 0.3);
}

.body-splash-add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.body-splash-add-to-cart:hover::before {
  left: 100%;
}

.body-splash-add-to-cart:hover {
  background: linear-gradient(135deg, #c8956d, #b8845a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(213, 162, 130, 0.4);
}

.body-splash-add-to-cart:active {
  transform: translateY(0);
}

.body-splash-wishlist {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 1.5rem;
  color: #d5a282;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(213, 162, 130, 0.2);
}

.body-splash-wishlist:hover {
  color: #e74c3c;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(213, 162, 130, 0.2);
}

.body-splash-lazy-loader {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  opacity: 0.7;
}

.body-splash-loading-icon {
  margin-bottom: 20px;
}

.body-splash-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(213, 162, 130, 0.2);
  border-top: 3px solid #d5a282;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.body-splash-lazy-loader p {
  color: #999;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .body-splash-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .body-splash-section {
    padding: 80px 0;
  }
  
  .body-splash-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .body-splash-product {
    padding: 25px;
  }
  
  .body-splash-footer {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  
  .body-splash-add-to-cart {
    width: 100%;
    justify-self: stretch;
  }
  
  .body-splash-price {
    text-align: center;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .body-splash-section {
    padding: 60px 0;
  }
  
  .body-splash-intro {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  
  .body-splash-grid {
    padding: 0 15px;
    gap: 35px;
  }
  
  .body-splash-product {
    padding: 20px;
  }
  
  .body-splash-image {
    margin-bottom: 25px;
  }
}

/* High-end glow effects for premium feel */
.body-splash-product.premium-glow {
  box-shadow: 
    0 0 30px rgba(213, 162, 130, 0.1),
    0 8px 32px rgba(213, 162, 130, 0.08),
    0 4px 16px rgba(240, 220, 220, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Luxury animation for section entrance */
.body-splash-section.animate-in .body-splash-product {
  opacity: 0;
  transform: translateY(40px);
  animation: luxuryFadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.body-splash-section.animate-in .body-splash-product:nth-child(1) {
  animation-delay: 0.1s;
}

.body-splash-section.animate-in .body-splash-product:nth-child(2) {
  animation-delay: 0.2s;
}

.body-splash-section.animate-in .body-splash-product:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes luxuryFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}