/** Shopify CDN: Minification failed

Line 36:2 Unexpected "50%"
Line 37:0 Unexpected "}"

**/

/* ==============================================================
   GNISTA SMILE — CUSTOM CONVERSION ENHANCEMENTS
   ============================================================== */

/* --- ANNOUNCEMENT BAR: Violet background --- */
.announcement-bar,
.announcement-bar-section,
.utility-bar,
.announcement-bar--compact,
section[class*="announcement"] {
  background-color: #534AB7 !important;
}
.announcement-bar a,
.announcement-bar p,
.announcement-bar span,
.announcement-bar__message,
.utility-bar a,
.utility-bar p,
.utility-bar span,
section[class*="announcement"] a,
section[class*="announcement"] p,
section[class*="announcement"] span {
  color: #ffffff !important;
}

/* --- ADD TO CART BUTTON: Removed violet override, colors now controlled by block settings --- */

/* --- URGENCY STOCK BADGE: Removed --- */
  50% { opacity: 0.7; }
}

/* --- COUNTDOWN TIMER: Removed --- */

/* --- TRUST BADGES --- */
.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 70px;
  text-align: center;
}
.trust-item svg {
  width: 28px;
  height: 28px;
}
.trust-item span {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

/* --- BUNDLE SECTION --- */
.bundle-section {
  padding: 50px 20px;
  background: #fafafa;
}
.bundle-section__title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
  color: #1a1a1a;
}
.bundle-cards {
  display: flex;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.bundle-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 20px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  text-align: center;
}
.bundle-card:hover {
  border-color: #534AB7;
  box-shadow: 0 4px 20px rgba(83, 74, 183, 0.12);
}
.bundle-card.selected {
  border-color: #534AB7;
  border-width: 3px;
  box-shadow: 0 4px 20px rgba(83, 74, 183, 0.18);
}
.bundle-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #534AB7;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bundle-card.featured {
  border-color: #534AB7;
  border-width: 3px;
}
.bundle-card__tier {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.bundle-card__qty {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}
.bundle-card__price-old {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-right: 6px;
}
.bundle-card__price {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
}
.bundle-card__per-box {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}
.bundle-card__pill {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.bundle-card__pill--grey {
  background: #f3f4f6;
  color: #6b7280;
}
.bundle-card__pill--green {
  background: #dcfce7;
  color: #16a34a;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
  padding: 50px 20px;
}
.reviews-section__title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
  color: #1a1a1a;
}
.reviews-cards {
  display: flex;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.review-card {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}
.review-card__photo {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #534AB7;
}
.review-card__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review-card__name {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}
.review-card__loc {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* --- EXIT INTENT POPUP: Removed --- */

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .bundle-cards { flex-direction: column; align-items: center; }
  .bundle-card { max-width: 100%; min-width: unset; }
  .reviews-cards { flex-direction: column; align-items: center; }
  .review-card { max-width: 100%; min-width: unset; }
  .trust-row { gap: 12px; }
  .trust-item span { font-size: 10px; }
  .countdown-wrap .cd-timer { font-size: 18px; }
}


/* --- CART DRAWER REVIEWS SLIDER --- */
.cart-reviews-slider {
  padding: 12px 16px;
  overflow: hidden;
  position: relative;
}
.cart-reviews-track {
  display: flex;
  gap: 12px;
  animation: cartReviewScroll 40s linear infinite;
  width: max-content;
}
.cart-reviews-track:hover {
  animation-play-state: paused;
}
@keyframes cartReviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cart-review-card {
  flex-shrink: 0;
  width: 220px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.cart-review-card__img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #534AB7;
}
.cart-review-card__img::after {
  content: '\1F601';
  font-size: 36px;
}
.cart-review-card__body {
  padding: 10px 12px;
}
.cart-review-card__stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.cart-review-card__name {
  font-weight: 700;
  font-size: 11px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.cart-review-card__text {
  font-size: 11px;
  line-height: 1.4;
  color: #6b7280;
}
