/** Shopify CDN: Minification failed

Line 102:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
/* Responsive and animated newsletter design */
.newsletter-box {
  max-width: 90%;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, #fcf4ff, #f4e9fc);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(150, 115, 185, 0.15);
  text-align: center;
  position: relative;
  font-family: 'Poppins', sans-serif;
  animation: fadeInMobile 1.2s ease;
}
.newsletter-box h3 {
  font-size: 1.75rem;
  color: #6a4388;
  margin-bottom: 1rem;
}
.newsletter-box input[type="email"] {
  padding: 0.75rem 1rem;
  width: 100%;
  max-width: 320px;
  border: 1px solid #ddbfe9;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease;
}
.newsletter-box input[type="email"]:focus {
  border-color: #c397dd;
}
.newsletter-box button {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(to right, #b27dd5, #e2c5f2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(178, 125, 213, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.newsletter-box button:hover {
  background: linear-gradient(to right, #9e64c5, #d7aef0);
  transform: scale(1.05);
}
#newsletter-toast {
  position: fixed;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: #f5e8fc;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  color: #5b3b71;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
  animation: sparkleFade 2s infinite alternate;
}
#newsletter-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#newsletter-toast .close-btn {
  margin-top: 0.75rem;
  background: #d5b3ec;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
#newsletter-toast .close-btn:hover {
  background: #c394da;
}
@keyframes fadeInMobile {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sparkleFade {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Outfit:wght@400;500;600&display=swap');

.charms-carousel-section {
  padding: 3rem 1rem;
  background: radial-gradient(circle at center, #fbf8ff 0%, #ffffff 100%);
  font-family: 'Outfit', sans-serif;
  color: #2f1e50;
  overflow-x: hidden;
  position: relative;
}

.charms-carousel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://lottie.host/4dbb6d91-fx-glow.json') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.charms-carousel-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #5a3ea1;
  text-shadow: 0 0 10px rgba(187, 166, 255, 0.2);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.charms-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  scroll-behavior: smooth;
  gap: 1.25rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}
.charms-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: start;
  min-width: 85%;
  max-width: 360px;
  flex: 0 0 auto;
  background: white;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(95, 68, 161, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.carousel-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(122, 93, 207, 0.25);
}

.video-wrapper {
  width: 100%;
  background: #f2efff;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.carousel-item:hover video {
  transform: scale(1.02);
  opacity: 0.95;
}

.carousel-content {
  padding: 1rem;
  text-align: center;
}
.carousel-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3d2a72;
  letter-spacing: 0.3px;
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
}

.view-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #906bff, #c8a8ff);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(156, 117, 255, 0.35);
  transition: background 0.3s ease, transform 0.25s ease;
}
.view-btn:hover {
  background: linear-gradient(90deg, #6d4bd4, #b186ff);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .charms-carousel {
    gap: 1rem;
    scroll-padding: 0.5rem;
  }
  .carousel-item {
    min-width: 92%;
  }
  .charms-carousel-section h2 {
    font-size: 2rem;
  }
  .view-btn {
    font-size: 1.05rem;
    width: 100%;
    padding: 0.9rem;
  }
}