/** Shopify CDN: Minification failed

Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:51 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:28 Expected ":"
Line 25:57 Expected ":"
Line 26:13 Expected identifier but found whitespace
Line 26:15 Unexpected "{"
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:scent-library (INDEX:59) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

.scent-library {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background: {{ section.settings.bg_color }};
  width: 100%;
}

.scent-library-wrapper {
  width: 100%;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

/* Heading */
.scent-library-heading {
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Slider */
.scent-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.scent-track::-webkit-scrollbar {
  display: none;
}

.scent-card {
  flex: 0 0 23%;
  scroll-snap-align: start;
  text-align: center;
}

/* Image */
.scent-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: var(--ratio);
}

.scent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.scent-card:hover img {
  transform: scale(1.05);
}

/* Playfair Font */
.scent-title {
  margin-top: 18px;
  font-size: {{ section.settings.body_size }}px;
  font-family: 'Playfair Display', serif;
  color: #000;
}

.scent-count {
  font-size: 14px;
  font-family: 'Playfair Display', serif;
  color: #000;
  opacity: 0.7;
  margin-top: 6px;
}

/* Dots */
.scent-dots {
  text-align: center;
  margin-top: 25px;
  display: none; /* Desktop par hide */
}

.scent-dot {
  height: 8px;
  width: 8px;
  margin: 0 5px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.3;
}

.scent-dot.active {
  opacity: 1;
}

/* Mobile par show */
@media(max-width: 768px){
  .scent-dots {
    display: block;
  }
}
/* Arrows */
.scent-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.scent-prev { left: 10px; }
.scent-next { right: 10px; }

/* Mobile */
@media(max-width: 768px){
  .scent-library-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scent-card {
    flex: 0 0 100%;
  }

  .scent-arrow {
    display: block;
  }
}
/* END_SECTION:scent-library */