/** Shopify CDN: Minification failed

Line 18:4 Unexpected "{"
Line 18:5 Expected identifier but found "%"
Line 18:97 Unexpected "{"
Line 18:98 Expected identifier but found "%"
Line 201:0 Unexpected "{"
Line 201:1 Expected identifier but found "%"
Line 205:2 Unexpected "{"
Line 205:3 Expected identifier but found "%"

**/
/* =========================================
   LUXURY COLLECTION (REFINED UI STYLE MATCH)
========================================= */

.lux-explore {
    {% comment %} background: linear-gradient(181deg, rgb(255 221 182 / 19%), rgb(255 204 186)); {% endcomment %}
     background-color: #faeaeae0;
    padding: 30px 0px 70px;
  text-align: center;
  position: relative;
}

.lux-container-full {
  width: 100%;
  margin: 0;
  padding: 0 20px;
}
.lux-container-wide {
  max-width: 1400px; /* between full and contained */
  margin: 0 auto;
  padding: 0 30px;
}

/* subtle grain */
.lux-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cream-dust.png");
  opacity: 0.06;
  pointer-events: none;
}

/* CONTAINER */
.lux-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.subtitle {
  color: #c8a96a;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.title {
  font-size: 48px;
  font-family: serif;
  color: #000 !important;
  margin-bottom: 70px;
  font-weight: 400;
}

/* GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.collection-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
}

/* IMAGE WRAPPER */
.collection-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* IMAGE */
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}


/* ZOOM */
.collection-card:hover .collection-image img {
  transform: scale(1.1);
}

/* OVERLAY */
.collection-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
  transition: all 0.4s ease;
}

.collection-card:hover .collection-image::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

/* TAGLINE */
.tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #c8a96a;
  text-transform: uppercase;
  margin-top: 12px;
}

/* NAME */
.name {
  font-size: 20px;
  font-family: serif;
  color: #1f1f1f;
  margin-top: 6px;
  margin-bottom: 0;
}


/* =========================
   EXPLORE BUTTON (BOTTOM-LEFT ON IMAGE)
========================= */
/* EXPLORE BUTTON - CENTERED ON HOVER */
/* =========================================
   EXPLORE BUTTON - CENTERED WITH BACKGROUND
========================================= */
.explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #ffffff; /* text color */
  background-color: rgba(0,0,0,0.6); /* semi-transparent black */
  padding: 10px 18px; /* some padding */
  border-radius: 6px; /* rounded corners */
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 10;
}

/* SHOW ON IMAGE HOVER */
.collection-image:hover .explore-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

/* ARROW */
.explore-btn::after {
  content: "→";
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.collection-image:hover .explore-btn::after {
  transform: translateX(4px);
}
/* SHOW ONLY ON IMAGE HOVER */
{% comment %} .collection-image:hover .explore-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} {% endcomment %}

/* ARROW ANIMATION */
.explore-btn::after {
  content: "→";
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.collection-image:hover .explore-btn::after {
  transform: translateX(4px);
}

/* RESPONSIVE GRID */ @media (max-width: 992px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } .title { font-size: 38px; } } @media (max-width: 768px) { .collection-grid { grid-template-columns: 1fr; } .title { font-size: 30px; } .lux-explore { padding: 90px 20px; } }

/* =========================================
   LUXURY COLLECTION (REFINED UI STYLE MATCH END HERE)
========================================= */


    /* =========================================
   LUXURY HERO RIPPLE - SCENTRIPPLE CINEMATIC HERO END
========================================= */


    /* =========================
   LUXURY INSTAGRAM - LIGHT THEME
========================= */

.lux-insta {
  background: #f8f6f2; /* soft luxury light background */
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.lux-insta .lux-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* HANDLE */
.lux-insta .handle {
  color: #b38b59;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', sans-serif;
}

/* TITLE */
.lux-insta .title {
  font-size: 46px;
  color: #1f1f1f;
  font-family: 'Playfair Display', serif;
  margin-bottom: 60px;
  font-weight: 500;
}

/* GRID - 6 COLUMNS */
.lux-insta .insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* CARD */
.lux-insta .insta-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

/* IMAGE */
.lux-insta .insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.lux-insta .insta-card:hover img {
  transform: scale(1.06);
}

.lux-insta .insta-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .lux-insta .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .lux-insta .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-insta .title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .lux-insta .insta-grid {
    grid-template-columns: 1fr;
  }
}

  /* =========================
   LUXURY INSTAGRAM - LIGHT THEME END
========================= */

/* =========================================
   LUXURY PRODUCT FEATURES SCENTRIPPLE START
========================================= */
.luxury-features {

    position: relative;

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #0b0b0b 100%
        );

    border-top:
        1px solid rgba(212,175,55,0.12);

    border-bottom:
        1px solid rgba(212,175,55,0.12);

    overflow: hidden;
}

/* TOP GOLD LINE */

.luxury-features::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,175,55,0.6),
            transparent
        );
}

/* GRID */

.luxury-features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    padding: 42px 0;
}

/* ITEM */

.luxury-feature-item {

    position: relative;

    text-align: center;

    padding: 28px 20px;

    background:
        rgba(255,255,255,0.02);

    border:
        1px solid rgba(212,175,55,0.08);

    transition: all 0.35s ease;

    backdrop-filter: blur(8px);
}

.luxury-feature-item:hover {

    transform: translateY(-4px);

    border-color:
        rgba(212,175,55,0.22);

    background:
        rgba(212,175,55,0.03);
}

/* ICON */

.luxury-feature-icon {

    color: #d4af37;

    font-size: 26px;

    margin-bottom: 14px;

    line-height: 1;
}

/* TEXT */

.luxury-feature-text {

    margin: 0;

    color: #d6d6d6;

    font-size: 13px;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    line-height: 1.6;

    font-weight: 500;
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 990px) {

    .luxury-features-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 749px) {

    .luxury-features {

        padding: 0;
    }

    .luxury-features-grid {

        grid-template-columns: 1fr;

        gap: 14px;

        padding: 24px 0;
    }

    .luxury-feature-item {

        padding: 22px 16px;
    }

    .luxury-feature-icon {

        font-size: 22px;
    }

    .luxury-feature-text {

        font-size: 11px;

        letter-spacing: 0.14em;
    }
}
/* ================================
   LUXURY SPLIT PRODUCT (REFINED)
================================ */

.luxury-split {
  background: #fbf7f5; /* soft blush like reference */
  padding: 20px 0;
}

/* WRAPPER */
.luxury-split-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 90px;
}

/* LEFT IMAGE */
.luxury-split-image img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.10);
  transform: translateY(-8px);
  transition: transform 0.5s ease;
}

.luxury-split-image img:hover {
  transform: translateY(-12px) scale(1.01);
}

/* RIGHT CONTENT */
.luxury-split-content {
  max-width: 540px;
}

/* TAGLINE */
.luxury-tagline {
  color: #c8a96a;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* TITLE */
.luxury-title {
  color: #1f1f1f;
  font-size: 54px;
  font-family: serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 18px;
}

/* DESCRIPTION */
.luxury-desc {
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* DIVIDER (if you still have it) */
.luxury-divider {
  width: 70px;
  height: 1px;
  background: #c8a96a;
  margin: 18px 0 22px;
}

/* PRICE */
.luxury-price {
  font-size: 26px;
  color: #1f1f1f;
  margin-bottom: 25px;
  font-weight: 500;
}

/* BUTTONS */
.luxury-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #2f2a27;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #2f2a27;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 990px) {
  .luxury-split-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .luxury-split-content {
    margin: auto;
  }

  .luxury-buttons {
    justify-content: center;
  }
}
/* ================================
   FRAGRANCE NOTES (ICONS ROW FIX)
================================ */

.luxury-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}

.luxury-icons span {
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 30px;
  color: rgba(0,0,0,0.65);
  background: rgba(255,255,255,0.4);
}
.luxury-split-image,
.luxury-split-content {
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryFadeUp 0.9s ease forwards;
}

.luxury-split-content {
  animation-delay: 0.2s;
}

@keyframes luxuryFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.luxury-split-image img {
  animation: floatBottle 6s ease-in-out infinite;
}

@keyframes floatBottle {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.luxury-split-image img:hover {
  box-shadow: 0 50px 120px rgba(200, 169, 106, 0.25);
  transform: translateY(-12px) scale(1.02);
  transition: all 0.4s ease;
}
.luxury-icons {
  list-style: none !important;
}

.luxury-icons span {
  list-style: none !important;
}

/* extra strong reset (theme override safe) */
.luxury-icons,
.luxury-icons * {
  list-style: none !important;
  background-image: none !important;
}
.luxury-icons {
  display: flex;
}

.luxury-icons span::marker {
  content: "" !important;
}
/* small gold dot like perfume UI */
.luxury-icons span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #c8a96a;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* hover effect (luxury feel) */
.luxury-icons span:hover {
  color: #000;
  transform: translateY(-1px);
}

/* =========================================
   LUXURY PRODUCT FEATURES SCENTRIPPLE END
========================================= */

/* =========================
  LUXURY PROMISE HERO SCENTRIPPLE BANNER START
========================= */
.sr-promise-banner{
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;
}

/* Overlay */
.sr-promise-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(1px);
}

/* Content */
.sr-promise-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;

  animation: srFadeUp 1.2s ease;
}

/* Subtitle */
.sr-promise-subtitle{
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: sans-serif;
}

/* Main Title */
.sr-promise-title{
  color: #fff;
  font-size: 72px;
  line-height: 1.15;
  font-weight: 300;
  margin: 0;
  font-family: "Playfair Display", serif;
}

/* Italic Text */
.sr-promise-title span{
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}

/* Gold Line */
.sr-promise-line{
  width: 70px;
  height: 1px;
  background: #d4af37;
  margin: 35px auto 0;
}

/* Animation */
@keyframes srFadeUp{
  from{
    opacity: 0;
    transform: translateY(60px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px){

  .sr-promise-title{
    font-size: 54px;
  }

}

@media(max-width: 768px){

  .sr-promise-banner{
    background-attachment: scroll;
    height: 420px !important;
  }

  .sr-promise-title{
    font-size: 38px;
    line-height: 1.3;
  }

  .sr-promise-subtitle{
    font-size: 10px;
    letter-spacing: 3px;
  }

}
/* =========================
  LUXURY PROMISE HERO SCENTRIPPLE BANNER END
========================= */

