/** Shopify CDN: Minification failed

Line 29:19 Expected identifier but found whitespace
Line 29:21 Unexpected "{"
Line 29:30 Expected ":"
Line 30:8 Expected identifier but found whitespace
Line 30:10 Unexpected "{"
Line 30:19 Expected ":"
Line 31:10 Expected identifier but found whitespace
Line 31:12 Unexpected "{"
Line 31:21 Expected ":"
Line 31:48 Unexpected "0"
... and 210 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:luxury-benefits-bar (INDEX:22) */
/* ============================================
   LUXURY BENEFITS BAR — SUNVERA Jolie
   Dawn Theme Compatible
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Poppins:wght@300;400;500;600&display=swap');

.lbb-section {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  {% if section.settings.show_border %}
  border-top: 1px solid {{ section.settings.accent_color }}40;
  border-bottom: 1px solid {{ section.settings.accent_color }}40;
  {% endif %}
  overflow: hidden;
}

.lbb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Desktop Grid ---- */
.lbb-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
}

.lbb-item {
  flex: 1;
  min-width: 0;
}


/* ---- Single Item ---- */
.lbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid {{ section.settings.accent_color }}30;
  transition: background-color 0.4s ease;
  cursor: default;
}

.lbb-item:last-child {
  border-right: none;
}

.lbb-item:hover {
  background-color: {{ section.settings.accent_color }}08;
}

/* ---- Icon ---- */
.lbb-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.lbb-item:hover .lbb-icon {
  transform: translateY(-3px);
}

.lbb-icon svg {
  width: 100%;
  height: 100%;
  stroke: {{ section.settings.accent_color }};
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Gold Accent Line ---- */
.lbb-accent-line {
  width: 24px;
  height: 1px;
  background-color: {{ section.settings.accent_color }};
  margin: 0 auto 14px;
  transition: width 0.4s ease;
}

.lbb-item:hover .lbb-accent-line {
  width: 40px;
}

/* ---- Heading ---- */
.lbb-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: {{ section.settings.text_color }};
  margin: 0 0 8px;
  line-height: 1.3;
}

/* ---- Description ---- */
.lbb-description {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: {{ section.settings.text_color }}99;
  line-height: 1.6;
  margin: 0;
  max-width: 160px;
}

/* ============================================
   MOBILE SLIDER
   ============================================ */
@media (max-width: 768px) {
  .lbb-container {
    padding: 0;
  }

  .lbb-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
    gap: 0;
  }

  .lbb-grid::-webkit-scrollbar {
    display: none;
  }

  .lbb-item {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
    border-right: 1px solid {{ section.settings.accent_color }}30;
    padding: 32px 20px;
  }

  .lbb-item:last-child {
    border-right: none;
  }

  /* Scroll dots indicator */
  .lbb-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 0 40px;
  }

  .lbb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: {{ section.settings.accent_color }}40;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .lbb-dot.active {
    background-color: {{ section.settings.accent_color }};
    transform: scale(1.3);
  }

  .lbb-heading {
    font-size: 14px;
  }

  .lbb-description {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .lbb-dots { display: none; }
}

@media (max-width: 480px) {
  .lbb-item {
    flex: 0 0 85vw;
  }
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.lbb-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background-color 0.4s ease;
}

.lbb-item.lbb-visible {
  opacity: 1;
  transform: translateY(0);
}
/* END_SECTION:luxury-benefits-bar */

/* START_SECTION:luxury-editorial-section (INDEX:23) */
/* ============================================
   LUXURY EDITORIAL SECTION — SUNVERA Jolie
   Dawn Theme Compatible
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Poppins:wght@300;400;500&display=swap');

.les-section {
  background-color: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  overflow: hidden;
}

.les-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   GRID LAYOUT
   ============================================ */
.les-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.les-grid.image-right {
  direction: rtl;
}

.les-grid.image-right > * {
  direction: ltr;
}

/* ============================================
   IMAGE SIDE
   ============================================ */
.les-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  background-color: {{ section.settings.accent_color }}15;
}

.les-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.les-image-wrapper:hover .les-image {
  transform: scale(1.04);
}

/* Elegant corner accent */
.les-image-wrapper::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-top: 1px solid {{ section.settings.accent_color }};
  border-left: 1px solid {{ section.settings.accent_color }};
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}

.les-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid {{ section.settings.accent_color }};
  border-right: 1px solid {{ section.settings.accent_color }};
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}

/* ============================================
   CONTENT SIDE
   ============================================ */
.les-content {
  padding: 20px 0;
}

/* Subtitle */
.les-subtitle {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

/* Gold divider */
.les-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.les-divider-line {
  width: 48px;
  height: 1px;
  background-color: {{ section.settings.accent_color }};
}

.les-divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: {{ section.settings.accent_color }};
  opacity: 0.6;
}

/* Heading */
.les-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: {{ section.settings.text_color }};
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

/* Thin separator */
.les-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    {{ section.settings.accent_color }}60,
    {{ section.settings.accent_color }}10
  );
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity 0.7s ease 0.4s;
}

/* Description */
.les-description {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: {{ section.settings.text_color }}bb;
  margin: 0 0 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 0.45s, transform 0.8s ease 0.45s;
}

/* CTA Button */
.les-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  border: 1px solid {{ section.settings.accent_color }};
  background-color: transparent;
  color: {{ section.settings.accent_color }};
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.8s ease 0.55s,
    transform 0.8s ease 0.55s,
    background-color 0.45s ease,
    color 0.45s ease;
  position: relative;
  overflow: hidden;
}

.les-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: {{ section.settings.accent_color }};
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.les-button:hover::before {
  transform: translateX(0);
}

.les-button span {
  position: relative;
  z-index: 1;
  transition: color 0.45s ease;
}

.les-button:hover span {
  color: {{ section.settings.background_color }};
}

/* Arrow icon */
.les-button-arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 1px;
  background-color: {{ section.settings.accent_color }};
  transition: width 0.3s ease, background-color 0.45s ease;
}

.les-button-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid {{ section.settings.accent_color }};
  border-top: 1px solid {{ section.settings.accent_color }};
  transform: rotate(45deg);
  transition: border-color 0.45s ease;
}

.les-button:hover .les-button-arrow {
  width: 24px;
  background-color: {{ section.settings.background_color }};
}

.les-button:hover .les-button-arrow::after {
  border-color: {{ section.settings.background_color }};
}

/* ============================================
   ANIMATE IN — triggered by JS
   ============================================ */
.les-section.les-animated .les-subtitle,
.les-section.les-animated .les-divider,
.les-section.les-animated .les-heading,
.les-section.les-animated .les-separator,
.les-section.les-animated .les-description,
.les-section.les-animated .les-button {
  opacity: 1;
  transform: translateY(0);
}

.les-section.les-animated .les-separator {
  opacity: 1;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 900px) {
  .les-container {
    padding: 0 24px;
  }

  .les-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }

  .les-image-wrapper {
    aspect-ratio: 3 / 2;
    max-height: {{ section.settings.mobile_image_height }}px;
  }

  .les-heading {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .les-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .les-container {
    padding: 0 20px;
  }

  .les-image-wrapper {
    aspect-ratio: 4 / 3;
  }

  .les-button {
    width: 100%;
    justify-content: center;
  }
}
/* END_SECTION:luxury-editorial-section */

/* START_SECTION:luxury-related-products (INDEX:27) */
/* ============================================
   LUXURY RELATED PRODUCTS — SUNVERA Jolie
   Dawn Theme Compatible
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Poppins:wght@300;400;500&display=swap');

.lrp-section {
  background-color: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  overflow: hidden;
}

.lrp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.lrp-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lrp-section.lrp-animated .lrp-header {
  opacity: 1;
  transform: translateY(0);
}

.lrp-header-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin-bottom: 16px;
}

.lrp-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lrp-header-line {
  width: 48px;
  height: 1px;
  background-color: {{ section.settings.accent_color }};
}

.lrp-header-diamond {
  width: 5px;
  height: 5px;
  background-color: {{ section.settings.accent_color }};
  transform: rotate(45deg);
  opacity: 0.7;
}

.lrp-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: {{ section.settings.text_color }};
  margin: 0;
  line-height: 1.2;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.lrp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.lrp-card {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.lrp-section.lrp-animated .lrp-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.lrp-section.lrp-animated .lrp-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.lrp-section.lrp-animated .lrp-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.lrp-section.lrp-animated .lrp-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* Image wrapper */
.lrp-card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background-color: {{ section.settings.accent_color }}12;
  margin-bottom: 18px;
}

.lrp-card-image,
.lrp-card-image-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrp-card-image {
  opacity: 1;
  transform: scale(1);
}

.lrp-card-image-hover {
  opacity: 0;
  transform: scale(1.04);
}

.lrp-card:hover .lrp-card-image {
  opacity: 0;
  transform: scale(1.04);
}

.lrp-card:hover .lrp-card-image-hover {
  opacity: 1;
  transform: scale(1);
}

/* No hover image — just zoom */
.lrp-card-image-wrapper.no-hover-img .lrp-card-image {
  position: relative;
  inset: unset;
  width: 100%;
  height: 100%;
}

.lrp-card-image-wrapper.no-hover-img:hover .lrp-card-image {
  opacity: 1;
  transform: scale(1.05);
}

/* Gold corner accent on hover */
.lrp-card-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid {{ section.settings.accent_color }};
  border-right: 1px solid {{ section.settings.accent_color }};
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.lrp-card:hover .lrp-card-image-wrapper::after {
  opacity: 1;
}

/* Badges */
.lrp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background-color: {{ section.settings.accent_color }};
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}

/* Wishlist */
.lrp-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  background-color: rgba(255,255,255,0.9);
  border: 1px solid {{ section.settings.accent_color }}40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.lrp-card:hover .lrp-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.lrp-wishlist svg {
  width: 14px;
  height: 14px;
  stroke: {{ section.settings.accent_color }};
  fill: none;
  stroke-width: 1.5;
}

/* Quick Add */
.lrp-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: {{ section.settings.text_color }}ee;
  color: {{ section.settings.background_color }};
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  border: none;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease;
  text-decoration: none;
  display: block;
}

.lrp-quick-add:hover {
  background-color: {{ section.settings.accent_color }};
  color: #fff;
}

.lrp-card:hover .lrp-quick-add {
  transform: translateY(0);
}

/* ============================================
   CARD INFO
   ============================================ */
.lrp-card-info {
  padding: 0 4px;
}

/* Stars */
.lrp-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}

.lrp-stars svg {
  width: 11px;
  height: 11px;
  fill: {{ section.settings.accent_color }};
}

.lrp-stars-count {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: {{ section.settings.text_color }}80;
  margin-left: 4px;
}

/* Title */
.lrp-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: {{ section.settings.text_color }};
  margin: 0 0 8px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.lrp-card-title:hover {
  color: {{ section.settings.accent_color }};
}

/* Price */
.lrp-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lrp-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: {{ section.settings.text_color }};
}

.lrp-price-compare {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: {{ section.settings.text_color }}55;
  text-decoration: line-through;
}

.lrp-price-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #c0392b;
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE CAROUSEL
   ============================================ */
@media (max-width: 900px) {
  .lrp-container {
    padding: 0;
  }

  .lrp-header {
    padding: 0 24px;
    margin-bottom: 36px;
  }

  .lrp-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 24px 16px;
    grid-template-columns: unset;
  }

  .lrp-grid::-webkit-scrollbar { display: none; }

  .lrp-card {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  .lrp-quick-add {
    transform: translateY(0);
    opacity: 0.9;
  }

  .lrp-wishlist {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .lrp-card {
    flex: 0 0 80vw;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .lrp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* END_SECTION:luxury-related-products */