/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Inter:wght@300;400;500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500&display=swap');

:root {
  --bg-black: #050505;
  --text-white: #ffffff;
  --text-gray: #d4d4d4;
  --accent-gold: #eebc61;
  --serif-font: 'Playfair Display', serif;
  --body-font: 'Playfair Display', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--body-font);
  overflow-x: hidden;
}
/*-- Preloader css start --*/
#preloader {
	background-color: #000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
	width: 100%;
	height: 100%;
}
#preloader_image{
	filter: brightness(1) invert(1);
}
#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
}
.logo { font-family: var(--body-font); font-size: 34px; letter-spacing: 2px; font-weight: 600; }
.logo-image{
    width: 100px;
    filter: invert(1);
}
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  z-index: 999;
}

.nav-menu.active { right: 0; }
.nav-links { list-style: none; text-align: center; }
.nav-links li { margin: 20px 0; }
.nav-links a { color: white; text-decoration: none; font-size: 18px; font-family: var(--body-font); }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.nav-icons { display: flex; gap: 15px; }
.icon-btn { background: none; border: none; color: white; cursor: pointer; }
.menu-toggle { background: none; border: none; color: white; cursor: pointer; }

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow: hidden;
}

.hero-title-wrapper {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  z-index: 1;
}

.hero-main-title {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--text-white);
  line-height: 0.8;
  letter-spacing: -2px;
  margin: 0;
  font-size: 2.3em;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  padding: 0 24px 40px;
  z-index: 2;
  margin-top: -5vw; /* Pull content up to overlap title slightly */
}
.hero-banner{
    position: absolute !important;
    top: 15%;
    right: 25%;
}
.hero-left { text-align: center; margin-top: 40px; }
.hero-desc { font-size: 18px; color: var(--text-gray); margin-bottom: 25px; max-width: 400px; margin-left: auto; margin-right: auto; }

.btn-primary {
  background: transparent;
    border: 1px solid #f7f7f7;
    color: white;
    padding: 12px 25px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 30px;
}

.hero-video-thumb { display: flex; align-items: center; justify-content: center; gap: 12px; }
.thumb-img { position: relative; 
    width: 125px;
    height: 125px;
    background: white;
    border-radius: 75px;
    padding: 10px; }
.thumb-img img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgb(0 0 0 / 100%);
    width: 25px;
    height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.play-badge { text-align: left; }
.badge-title { display: block; font-size: 15px; font-weight: 400; color: var(--text-gray);}
.badge-sub { display: block; font-size: 18px; color: white; }

.hero-center { display: flex; justify-content: center; position: relative; }
.main-bottle {
  width: 85%;
  max-width: 320px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  z-index: 3;
}

/* Marquee */
.marquee { padding: 20px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; overflow: hidden; background: #080808; }
.marquee-content { display: flex; animation: scroll 20s linear infinite; font-family: var(--body-font); font-size: 14px; gap: 40px; white-space: nowrap; }
.dot { color: var(--accent-gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section-padding { padding: 80px 150px; }
.shop-listing-section{
  margin-top: 3%;
}
.section-header { text-align: center; margin-bottom: 40px; }
.serif-title { font-family: var(--body-font); font-size: 32px;font-weight: 400;  margin-bottom: 15px;text-align: left; }
.section-subtitle { font-size: 18px; color: #e5e5e5; max-width: 600px; font-weight: 400; text-align: left; line-height: 1.5; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 15px; }
.product-card { background: #111; border-radius: 4px; overflow: hidden; }
.product-img-wrapper { background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.product-img-wrapper img { width: 100%; max-height: 395px; height: 100%; object-fit: cover; }
.product-info { padding: 15px 20px 15px 20px; }
.info-top { display: block; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.product-info h3 { font-size: 16px;font-weight: 400;color: white; font-family: var(--body-font); letter-spacing: 1px;margin-bottom: 10px; }
.price { color: #ffcc7e; font-weight: 400; font-family: auto; margin-right: 6%;}
.rating { color: #ffd700; font-size: 12px; }

/* Scent Types */
.scent-types { padding: 80px 24px; text-align: center; background: #080808; }
.scent-list { list-style: none; }
.scent-list li { font-family: var(--body-font); font-size: 28px; margin: 10px 0; color: #333; cursor: pointer; }
.scent-list li.active { color: white; }
.arrow { font-size: 20px; margin-left: 10px; }
.label { display: block; font-size: 16px; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 30px; }

.hero-cta {
    border: 1px solid #d4af37;
    padding: 10px 25px;
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: capitalize;
    border-radius: 40px;
    text-decoration: none;
}
.hero-cta:hover {
  background: #d4af37;
  color: #000;
}

/* Seasonal Offer */
.seasonal-offer { padding: 80px 24px; text-align: center; background: #1e1d1d; }
.oval-frame.large { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; }
.oval-frame img { width: 100%; height: auto; object-fit: contain; border-radius: 16px; }
.buy-now { display: inline-block; margin-top: 20px; color: white; text-decoration: none; font-family: var(--body-font); border-bottom: 1px solid white; padding-bottom: 5px; }

/* Footer */
.footer { padding:80px 80px 0px 80px; border-top: 1px solid #222; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; }
/* .footer-logo { font-family: var(--body-font); font-size: 24px; letter-spacing: 3px; margin-bottom: 15px; } */
.footer-branding { font-family: var(--body-font); opacity: 0.8; font-size: 26vw; color: #EE520E; text-align: center; margin: 0; line-height: 1; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 15px; font-size: 12px; color: var(--text-gray); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-gray); text-decoration: none; }
.footer-logo{
    width: 200px;
    filter: invert(1);
}
.nav-links { display: flex; gap: 40px; }
  .nav-links li { margin: 0; list-style: none;}
  .nav-links a { font-size: 18px; letter-spacing: 1px;  position: relative; font-weight: 400;       /* FIX */
  display: inline-block; }

  /* Glossy underline */
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;                  /* FIX */
    bottom: -5px;
    width: 0;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.3),
      #EE520E,
      #fff6c5,
      #EE520E,
      rgba(255,255,255,0.3)
    );
    transition: width 0.3s ease;
  }

  /* Active + hover */
  .nav-links a.active::after,
  .nav-links a:hover::after {
    width: 100%;
  }
/* Desktop Adjustments */
@media (min-width: 1024px) {
  .navbar { padding: 10px 60px; }
  .menu-toggle { display: none; }
  .nav-menu { position: static; width: auto; height: auto; background: none; flex-direction: row; }

/* Active + hover */
  .hero { padding: 80px 60px 0; }
  .hero-main-title { font-size: 26vw; opacity: 0.8;}
  .hero-content { flex-direction: row; align-items: center; padding: 0; margin-top: 1.5vw; margin-left: 7vw; }
  .hero-left { text-align: left; flex: 1; margin-top: 0; }
  .hero-desc { margin-left: 0; }
  .hero-center { flex: 1.2; }
  .main-bottle { max-width: 40vw; width: 100%; }
  .hero-video-thumb { justify-content: flex-start; }

  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
  .serif-title { font-size: 52px;font-weight: 400; }
  
  .scent-types { display: flex; justify-content: space-between; align-items: center; padding: 80px 120px; }
  .hide-mobile { display: block !important; }
  .hide-desktop { display: none !important; }

  .scent-visual { flex: 1; }
  .scent-center { flex: 1.5; }
  .oval-frame { width: 500px; height: 675px; margin: 0 auto; border-radius: 280px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 40px 80px rgba(0,0,0,.7);}
  .scent-list li { font-size: 48px; }
  
  .seasonal-offer { display: flex; align-items: center; gap: 80px; padding: 80px 80px; text-align: left; }
  .offer-visual { flex: 1; }
  .offer-content { flex: 1; }
  .oval-frame.large { aspect-ratio: 4/5; border-radius: 60%; align-content: center;}
  .footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.fragranceImage{
  padding: 5%;
}
.footer-col h4{
    font-size: 24px;
    margin-bottom: 15px;
    font-family: var(--body-font);
     position: relative;      /* REQUIRED */
  display: inline-block;   /* REQUIRED */
  padding-bottom: 8px;
  font-weight: 400;
      letter-spacing: 0.7px;
  }
  .footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.2),
      #EE520E,
      #fff6c5,
      #EE520E,
      rgba(255,255,255,0.2)
    );
    box-shadow:
      0 0 0px rgba(202,163,77,0.8),
      0 0 0px rgba(255,246,197,0.6);
  }

    .footer-col p{
         font-size: 16px;
         font-family: var(--body-font);
          margin-bottom: 5px;
            font-weight: 400;
                letter-spacing: 0.7px;

    }
    .footer-col a{
      text-decoration: none;
      color: white;
      font-family: var(--body-font);
        font-weight: 400;
    letter-spacing: 0.7px;
    }

  .footer-social-list{
    list-style: none;
  }
  .footer-social-list li{
        font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--body-font);
      font-weight: 400;
          letter-spacing: 0.7px;
  }

.marquee {
  width: 100%;
  overflow: hidden;
  background: #000; /* or transparent */
  padding: 20px 0;
  margin-top: 5%;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.marquee-content span {
  font-size: 24px;
  letter-spacing: 2px;
  color: #e6d8b5; /* champagne gold */
  font-weight: 400;
  text-transform: uppercase;
}

.marquee-content .dot {
  color: #EE520E;
  font-size: 18px;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-content span:nth-child(4n+1) {
  color: #fff6c5;
  text-shadow: 0 0 8px rgba(255,246,197,0.6);
}

.product-slider {
  padding: 95px 0 0 0;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #EE520E;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
}

.swiper-pagination {
  margin-top: 28px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 246, 197, 0.4);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #EE520E,
    #fff6c5,
    #EE520E
  );
  box-shadow: 0 0 10px rgba(202,163,77,0.6);
}

.luxury-footer::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 0%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
}

.luxury-footer {
  position: relative;
  background: #000;
  padding: 23vw 60px 0px; 
  overflow: hidden;
}

/* BIG BACKGROUND TEXT */
.footer-bg-text {
   position: absolute;
  left: 51%;
  bottom: -10%;                /* 🔥 KEY FIX */
  transform: translateX(-50%);
  font-size: clamp(160px, 24vw, 420px);
  letter-spacing: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #d4571a,
    rgba(212, 87, 26, 0.15)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}
/* CONTENT ABOVE TEXT */
.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  background: black;
  padding: 15px 35px;
}

/* LINKS */
.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #caa34d;
}

.d-none{
  display: none;
}
.shop-now-div{
  text-align: end;
    margin-top: -8%;
}
.shop-now-btn{
  text-decoration: none;
}
@media (max-width: 768px) {
  .shop-now-div {
    text-align: center;
    margin-top: 8%;
}
.oval-frame img {
    width: 100%;
            height: 275px;
        object-fit: contain;
        scale: 1.2;
}
.oval-frame.large {
    width: 100%;
    aspect-ratio: auto;
        border-radius: 0%;
}
.product-meta span{
    font-size: 16px !important;
    letter-spacing: 0px;
}
.seasonal-offer {
    padding: 30px 20px;
    text-align: center;
}
.footer {
    padding: 30px 30px 0px 30px !important;
}
    .footer-bg-text {
    font-size: 84px;
    letter-spacing: 5px;
    bottom: 45% !important;
  }
.luxury-footer {
    padding: 35vw 0px 0px !important;
}
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 10px 0px !important;
  }
  
  .hero-video-thumb{
    display: none;
  }
  .hero {
    min-height: 90vh !important;
  }
  .info-top {
    display: block !important;
     margin-bottom: 9px;
}
.product-info h3 {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 0px;
    margin-bottom: 5px;
    letter-spacing: 0.8px;
    font-weight: 400;
}
.variant-btn{
   font-size: 15px;
}
.price {
    color: #ffcc7e;
    font-weight: 400;
    font-size: 14px;
    margin-right: 20% !important;
}
.product-slider {
    padding: 40px 0 0 0 !important;
}
.scent-types {
    padding: 20px 15px !important;
}

.scent-list-container{
  margin-top: 5%;
}
.scent-visual{
    margin-top: 10%;
}
.hide-mobile{
  display: none !important;
}
.hide-desktop{
  display: block !important;
}

}

@media (max-width: 880px){
  .product-img-wrapper img{
    max-height: 400px;

  }
  .logo-image {
    width: 90px;
    position: absolute;
    left: 3%;
    top: 0;
    padding: 5px;
  }
  .nav-actions {
    right: 3%;
    position: absolute;
  }
.navbar {
    padding: 5px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  .hero-banner {
    position: absolute !important;
    top: 45%;
    align-self: center;
    right: auto;
}

.hero-title-wrapper {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    z-index: 1;
    font-size: 14vw !important;
}
.section-padding {
    padding: 15px 15px !important;
}
.shop-listing-section {
    margin-top: 8% !important;
}
.product-info {
    padding: 10px 4px 10px 10px !important;
}
.section-header {
    text-align: center;
    margin-bottom: 10px !important;
}
.scent-list li {
  font-size: 20px !important;
  letter-spacing: 1px !important;
  color: rgba(255,255,255,0.75) !important;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.35s ease;
}
.serif-title {
    font-family: var(--body-font);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}
}

.subtitle {
  font-size: 18px;
  letter-spacing: 1px;
  color: #eeb740;
  margin: 16px 0;
  font-weight: 400;
}

.description {
  max-width: 420px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.product-meta span{
  margin-top: 8px;
  color: rgba(255,255,255,1);
  font-size: 20px;
  letter-spacing: 1px;
}
.scents-list-container{
  text-align: left;
}
.product-meta{
  text-align: left;
  margin-top: 15px;
  margin-bottom: 30px;
}
.cta {
  display: inline-block;
  margin-top: 24px;
  letter-spacing: 2px;
    color: #eeb740;
}


.scent-list li {
  font-size: 22px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  transition: all 0.4s ease;
}


.scent-list li.active {
  color: #fff;
}

.scent-list li.active small {
  color: #ffaf00;
}
/* Base state */
.scent-list li {
  font-size: 28px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: color 0.35s ease, transform 0.35s ease;
}

/* Small subtitle */
.scent-list li small {
  display: block;
  font-size: 14px;
  letter-spacing: 1.2px;
  opacity: 0.6;
  margin-top: 6px;
  transition: color 0.35s ease, opacity 0.35s ease;
}

/* ACTIVE + HOVER (same look) */
.scent-list li.active,
.scent-list li:hover {
  color: #ffffff;
}

/* Subtitle highlight */
.scent-list li.active small,
.scent-list li:hover small {
  color: #EE520E;
  opacity: 1;
}

/* Arrow visibility */
.scent-list li .arrow {
  opacity: 0;
  margin-left: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show arrow on active & hover */
.scent-list li.active .arrow,
.scent-list li:hover .arrow {
  opacity: 1;
  transform: translateX(6px);
}
.scent-list li.active,
.scent-list li:hover {
  text-shadow: 0 0 12px rgba(202,163,77,0.25);
}
.scent-visual img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scent-visual img.fade {
  opacity: 0;
  transform: scale(0.96);
}

.menu-toggle svg line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open svg line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open svg line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open svg line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #000;
  }

  .nav-links.active {
    display: flex;
  }
  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: block;
    right: 0%;
    align-content: center;
  }
  .section-subtitle {
    line-height: 1.2 !important;
    font-size: 16px;
    color: #e5e5e5;
  }
}

.contact-section {
  background: radial-gradient(
    circle at top,
    #111,
    #000 70%
  );
  padding: 130px 165Px 55px 165px;
  color: #fff;
}

/* CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 4%;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.contact-card:hover {
  border-color: rgba(202,163,77,0.6);
  box-shadow: 0 0 30px rgba(202,163,77,0.15);
  transform: translateY(-4px);
}

.card-icon {
      font-size: 40px;
    color: #ee520e;
    min-width: 35px;
}

.contact-card h4 {
      font-size: 20px;
    margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 400;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

.contact-card a:hover {
  color: #ee520e;
}

/* MAP */
.contact-map {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0%) contrast(80%) brightness(100%);
}

.your_perfumes_div{
  margin: 5% 0%;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .product-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 10px;margin-top: 8%; }
.contact-section{
  padding-top: 100px !important;
}
  .contact-map {
    height: 320px;
  }
.footer-col h4 {
    font-size: 20px !important;
        font-weight: 400;
            letter-spacing: 0.7px;
}
.footer-col p {
    font-size: 14px !important;
    font-weight: 400 !important;
        letter-spacing: 0.7px;
}
.footer-col a {
    font-size: 14px !important;
    font-weight: 400 !important;
        letter-spacing: 0.7px;
}
  .contact-cards {
    display: block !important;
    margin: 30px 0px;
  }
  .contact-card {
    margin-bottom: 20px !important;
    padding: 15px 15px !important;
  }  
.card-icon {
    font-size: 30px;
    color: #ee520e;
    min-width: 35px;
}
.contact-card h4 {
      font-size: 18px;
    margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 400;
}

.contact-card p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}
.grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px !important;
}
.btn-primary {
    background: transparent;
    border: 1px solid #f7f7f7;
    color: white;
    padding: 10px 15px;
    font-weight: 400;
    letter-spacing: 1px;  
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 12px;
    border-radius: 30px;
}
}
.btn-primary:hover {
     background: #ffffff;
    color: #000000;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.3);
}

/* .cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 24px;
} */

.cart-drawer.open {
  right: 0;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background: radial-gradient(
    circle at top,
    #111 0%,
    #050505 70%
  );
    padding: 24px;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.8);
  font-family: var(--body-font);
}

/* Header */
.cart-header {
  padding: 5px 0px 25px 0px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
    flex-shrink: 0;
}

.cart-header h2 {
  font-family: var(--serif-font);
  letter-spacing: 1px;
  font-size: 20px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
}

/* Items */
.cart-items {
  padding: 0px 10px;
  flex: 1;
  overflow-y: auto;
    scroll-behavior: smooth;
     scrollbar-width: thin;
  scrollbar-color: #c5a059 transparent;

}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cart-variant {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  font-family: auto;
}

.cart-price {
  font-weight: 400;
  color: var(--accent-gold);
  font-size: 20px;
  font-family: auto !important;
}
.cart-total-price{
  font-family: auto;
   color: white;
  font-size: 24px;
}
/* Footer */
.cart-footer {
  padding: 20px 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
   flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: #050505;
  z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
}
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 22px;
}

.cart-loader {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.hidden {
  display: none;
}
.empty-cart {
  text-align: center;
  color: var(--text-gray);
  padding: 40px 0;
  font-size: 14px;
  position: absolute;
  top: 20%;
  left: 30%;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--accent-gold);
  color: #000;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 50%;
  font-weight: 400;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(
    135deg,
    #c5a059,
    #e6c87a
  );
  border: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197,160,89,0.4);
}
.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #c5a059,
    #8f733d
  );
  border-radius: 10px;
}

.clear-cart-btn {
  width: auto;
  margin-top: 0px;
  padding: 0px 0px 15px 0px;
  background: transparent;
  border: none;
  color: #ff0101;
  font-size: 13px;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-cart-btn:hover {
  color: rgb(248, 206, 206);
}

.cart-item {
  position: relative;
}
.cart-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--accent-gold),
    transparent
  );
}

.cart-drawer.active {
  transform: translateX(0);
}

@media (max-width: 780px) {

  .empty-cart {
    top: 8%;
  }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    display: none;
  }
  .cart-drawer.open {
    right: 0;
    display: block;
}
.cart-item h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cart-variant {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

.cart-price {
  font-weight: 400;
  color: var(--accent-gold);
      font-size: 20px;
}
}

.variant-selector {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 8px 14px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-btn:hover {
  border-color: #caa34d;
  color: #caa34d;
}

.variant-btn.active {
  background: #caa34d;
  color: #000;
  border-color: #caa34d;
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.product-img-wrapper img {
  transition: transform 0.4s ease;
}

.product-img-wrapper:hover img {
  transform: scale(1.05);
}
.product-img-wrapper {
  cursor: zoom-in;
}

.skeleton-box,
.skeleton-line,
.skeleton-btn {
  background: linear-gradient(
    90deg,
    #111 25%,
    #1c1c1c 37%,
    #111 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Skeleton shapes */
.skeleton .product-img-wrapper {
  height: 260px;
}

.skeleton-line {
  height: 14px;
  margin-bottom: 10px;
}

.skeleton-line.title {
  width: 70%;
  height: 18px;
}

.skeleton-line.small {
  width: 50%;
}

.skeleton-line.price {
  width: 40%;
}

.skeleton-btn {
  height: 38px;
  width: 120px;
  border-radius: 30px;
}
.product-img-wrapper {
  aspect-ratio: 5 / 5; /* perfume bottle ratio */
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 98%;
  max-width: 900px;
  background: #050505;
  color: #fff;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
  max-height: 90vh;           /* important */
  overflow: hidden;  
}

.product-modal.active,
.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal.active {
  /* transform: translate(-50%, -50%) scale(1); */
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  max-height: calc(90vh - 60px); /* minus close button area */
  overflow-y: auto;
}
.userModalDialog{
    top: 10% !important;
}
.userModal{
  display: block !important;
}
.userModal .modal-header {
    padding: 0px 10px 10px 15px !important;
    border-bottom: 1px solid #817c7c !important;
}
.modal-footer{
  text-align: right;
      padding: 15px 10px 0px 15px !important;
    border-top: 1px solid #817c7c !important;
}
.userModal .modal-header .close {
    position: absolute;
   right: 15px;
    top: 10px;
    color: white;
    font-size: 35px;
    opacity: 1;
}

.submitButton{
  font-family: auto;
    font-size: 16px;
}
.modal-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.modal-info h2 {
  font-family: var(--serif-font);
  margin-bottom: 15px;
  font-weight: 400;
    font-size: 24px;
    color: white;
}

.modal-price {
  font-size: 20px;
  color: var(--accent-gold);
  margin: 15px 0;
  font-family: auto;
    font-weight: 400;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  background: none;
  border: none;
  color: #fff;
  z-index: 99999999999;
  cursor: pointer;
}
.modal-description {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-gray);
}

.modal-description p {
  margin-bottom: 10px;
  font-size: 15px;
  color: white;
}
.modal-description strong {
    color: #fcf5e9;
    font-size: 15px;
    font-weight: 400;
}
.modal-section-title {
  font-family: var(--serif-font);
  letter-spacing: 1px;
  font-size: 16px;
  color: #fcf5e9;
  margin-bottom: 10px;
}
.modal-variant-select{
  font-family: var(--serif-font);
  letter-spacing: 1px;
  margin-top: 5px;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}
  .modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}
/* Mobile */
@media (max-width: 768px) {
  .userModal .modal-header h3{
  font-size: 20px;
}
  .modal-content {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 0px 20px 20px 20px;
    margin-top: 25px;
  }
   .product-modal {
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    margin-top: 5vh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
  }

  .modal-close {
    position: absolute;
    top: -6px;
    right: 7px;
    font-size: 35px;
  }
   .modal-info{
        padding: 0px 0px 40px 0px;
  }
  .modal-info h2 {
    font-family: var(--serif-font);
    margin-bottom: 5px;
    font-weight: 400;
   font-size: 20px;
}
.modal-description {
    margin-top: 0px;
}
.modal-section-title {
  margin-bottom: 0px;
}
.modal-description p {
  margin-bottom: 5px;
}
}

.scent-signature {
  background: radial-gradient(circle at 30% 40%, #151515, #000);
  padding: 120px 8%;
}

.signature-container {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 80px;
}
.signature-visual {
  position: relative;
}

.visual-frame {
  border-radius: 280px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 40px 80px rgba(0,0,0,.7);
}

.essence-tabs {
  background: radial-gradient(circle at 30% 40%, #121212, #000);
  /* padding: 120px 8%; */
}

.essence-wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.essence-display {
  position: relative;
}
.hero-eyebrow{
  line-height: 45px;
}
.display-visual img {
  width: 100%;
  border-radius: 100px;
  box-shadow: 0 50px 100px rgba(0,0,0,.7);
}
.display-visual .leftImage{
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.display-content {
  margin-top: 40px;
  max-width: 420px;
}

.essence-number {
  font-size: 48px;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.display-content h2 {
  font-size: 38px;
  margin: 10px 0;
  font-family: 'Cormorant Garamond', serif;
}

.display-content p {
  color: #aaa;
}

/* RIGHT */
.essence-nav {
  padding-left: 40px;
  text-align: left;
}

.nav-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 40px;
  display: block;
}

.essence-tab-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: wrap;
  gap: 5px 25px;
  margin-top: 10px;
}

.essence-tab-list li {
  padding: 0px 0;
  cursor: pointer;
  /* border-bottom: 1px solid rgba(255,255,255,.08); */
  transition: all .3s ease;
}

.essence-tab-list li strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #efeaea;
  font-weight: 500;
}

.essence-tab-list li small {
  display: block;
  color: #efeaea;
  margin-top: 4px;
}

.essence-tab-list li.active strong,
.essence-tab-list li:hover strong {
  color: #f5bf40;
}

.essence-tab-list li.active small {
  color: #f5bf40;
}
.essence-wrapper-mobile{
  display: none !important;
}

@media (max-width: 768px) {
.display-visual .leftImage {
    width: 100%;
    height: 350px;
    border-radius: 30px;
    margin-top: 10px;
    object-fit: cover;
}
.essence-wrapper-desktop{
  display: none !important;
}
.essence-wrapper-mobile {
    display: block !important;
}
.essence-nav {
    padding-left: 0px;
    text-align: left;
}
.essence-tab-list li strong{
      font-size: 18px;
      font-weight: 400;
}
.essence-tab-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    gap: 0px 10px;
    margin-top: 6px;
}

}