/** Shopify CDN: Minification failed

Line 26:10 Unexpected "{"
Line 26:19 Expected ":"
Line 27:14 Expected identifier but found whitespace
Line 27:16 Unexpected "{"
Line 27:25 Expected ":"
Line 27:51 Expected ":"
Line 28:17 Expected identifier but found whitespace
Line 28:19 Unexpected "{"
Line 28:28 Expected ":"
Line 28:57 Expected ":"

**/
/* ============================================
   In the Spotlight — Bake Cosmetics
   Asset: in-the-spotlight.css
   ============================================ */

.spotlight-section {
  padding-top: var(--spotlight-padding-top, 36px);
  padding-bottom: var(--spotlight-padding-bottom, 36px);
}

/* Dynamic padding from schema settings */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* --- Header --- */
.spotlight-header {
  margin-bottom: 1.6rem;
}

.spotlight-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color:  #6D4098;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.spotlight-subheading {
  font-size: 0.95rem;
  color: #666;
  margin: -0.6rem 0 1.2rem;
  line-height: 1.5;
}

/* --- Tabs --- */
.spotlight-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8e8e8;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 1.6rem;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.spotlight-tabs::-webkit-scrollbar {
  display: none;
}

.spotlight-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.spotlight-tab:hover {
  color: var(--color-foreground, #1a1a1a);
}

.spotlight-tab.is-active {
  color: var(--color-foreground, #1a1a1a);
  border-bottom-color: var(--color-foreground, #1a1a1a);
  font-weight: 700;
}

/* --- Panels --- */
.spotlight-panel {
  display: none;
}

.spotlight-panel.is-active {
  display: block;
}

/* --- Slider --- */
.spotlight-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.spotlight-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

.spotlight-slider::-webkit-scrollbar {
  display: none;
}

/* --- Product Card --- */
.spotlight-card {
  flex: 0 0 220px;
  width: 220px;
  scroll-snap-align: start;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 750px) {
  .spotlight-card {
    flex: 0 0 240px;
    width: 240px;
  }
}

@media (min-width: 1100px) {
  .spotlight-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

/* Badge */
.spotlight-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.spotlight-badge--new {
  background: #7c5cfc;
}

.spotlight-badge--bestseller {
  background: #e8a020;
  color: #fff;
}

/* Image */
.spotlight-card__image-link {
  display: block;
  text-decoration: none;
}

.spotlight-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.spotlight-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.spotlight-card:hover .spotlight-card__image-wrap img {
  transform: scale(1.04);
}

.spotlight-card__placeholder {
  width: 100%;
  height: 100%;
}

/* Card info */
.spotlight-card__info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

/* Rating */
.spotlight-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  color: #555;
}

.spotlight-card__rating-star {
  color: #f5a623;
}

.spotlight-card__rating-count {
  color: #999;
}

/* Title */
.spotlight-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a1a);
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-card__title:hover {
  text-decoration: underline;
}

/* Short description */
.spotlight-card__desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.spotlight-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.spotlight-card__price--current {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-foreground, #1a1a1a);
}

.spotlight-card__price--compare {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

/* Add to cart button */
.spotlight-card__atc {
  margin-top: auto;
  padding-top: 0.75rem;
  width: 100%;
  background: #6D4098;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  font-family: inherit;
}

.spotlight-card__atc:hover {
  background: #6D4098;
  opacity: 0.85;
}

.spotlight-card__atc:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spotlight-card__atc.loading {
  opacity: 0.7;
}

/* --- Dots --- */
.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.spotlight-dot.is-active {
  background: #1a1a1a;
  width: 24px;
  border-radius: 4px;
}

/* --- Footer / View All --- */
.spotlight-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.spotlight-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a1a);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.spotlight-view-all:hover {
  opacity: 0.7;
}

.spotlight-empty {
  color: #999;
  font-size: 0.9rem;
  padding: 2rem;
  text-align: center;
}

.spotlight-collection-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6D4098;
  margin: 0 0 1rem;
}