/** Shopify CDN: Minification failed

Line 541:0 Unexpected "{"
Line 541:1 Unexpected "{"
Line 541:3 Expected identifier but found "'ritual-bundle.css'"
Line 543:0 Unexpected "<"
Line 546:7 Expected identifier but found "%"
Line 547:8 Unexpected "<"
Line 547:31 Unexpected "{"
Line 547:40 Expected ":"
Line 547:60 Unexpected "<"
Line 548:7 Expected identifier but found "%"
... and 78 more hidden warnings

**/
/* =============================================
   Möksha Tribe — Ritual Bundle Template Styles
   ============================================= */

/* --- Base Section --- */
.rb-section {
  padding: 80px 24px;
}

.rb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rb-container--narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Section Header --- */
.rb-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.rb-section__header .rb-eyebrow {
  margin-bottom: 10px;
}

.rb-section-heading {
  font-family: var(--font-heading-family, serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--font-heading-weight, 400);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  color: var(--color-foreground, #2c2c2c);
}

.rb-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.6;
  margin-bottom: 12px;
  text-align: center;
}

/* --- Grids --- */
.rb-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.rb-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.rb-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .rb-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .rb-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rb-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .rb-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Product Cards (What's Included) --- */
.rb-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-background, #fff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.rb-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.rb-card__body {
  padding: 20px;
}

.rb-card__title {
  font-family: var(--font-heading-family, serif);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-foreground, #2c2c2c);
}

.rb-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.75;
}

/* --- Benefit Cards (Why You'll Love It) --- */
.rb-benefit-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 8px;
  background: var(--color-background, #fff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rb-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.rb-benefit-card__icon {
  margin-bottom: 20px;
}

.rb-benefit-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto;
}

.rb-benefit-card__title {
  font-family: var(--font-heading-family, serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-foreground, #2c2c2c);
}

.rb-benefit-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.75;
}

/* --- How To Use Steps --- */
.rb-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rb-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rb-step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-foreground, #2c2c2c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-family, serif);
  font-size: 1rem;
  color: var(--color-foreground, #2c2c2c);
}

.rb-step__title {
  font-family: var(--font-heading-family, serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-foreground, #2c2c2c);
}

.rb-step__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.75;
}

/* --- Perfect For Checklist --- */
.rb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .rb-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rb-checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-foreground, #2c2c2c);
}

.rb-checklist__icon {
  flex-shrink: 0;
  color: var(--color-foreground, #2c2c2c);
}

.rb-checklist__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* --- FAQ --- */
.rb-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.rb-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.rb-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading-family, serif);
  font-size: 1rem;
  color: var(--color-foreground, #2c2c2c);
  cursor: pointer;
  text-align: left;
}

.rb-faq__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.rb-faq__icon.is-open {
  transform: rotate(180deg);
}

.rb-faq__answer {
  padding-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.8;
}

/* --- Final CTA --- */
.rb-cta__inner {
  text-align: center;
}

.rb-cta__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.8;
  margin-bottom: 32px;
}

.rb-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--color-foreground, #2c2c2c);
  color: var(--color-background, #fff);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.rb-btn:hover {
  opacity: 0.8;
}

/* --- Bundle Hero --- */
.rb-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .rb-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.rb-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rb-hero__heading {
  font-family: var(--font-heading-family, serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: var(--font-heading-weight, 400);
  color: var(--color-foreground, #2c2c2c);
  line-height: 1.2;
  margin: 0;
}

.rb-hero__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.8;
}

.rb-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .rb-section {
    padding: 48px 20px;
  }
}
/* --- Drawer Overlay --- */
.rb-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
}

.rb-drawer-overlay.is-open {
  display: block;
}

/* --- Drawer --- */
.rb-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-background, #fff);
  border-radius: 16px 16px 0 0;
  padding: 32px 24px;
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.rb-drawer.is-open {
  transform: translateY(0);
}

.rb-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.rb-drawer__title {
  font-family: var(--font-heading-family, serif);
  font-size: 1.2rem;
  color: var(--color-foreground, #2c2c2c);
  margin: 0;
}

.rb-drawer__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-foreground, #2c2c2c);
  padding: 4px;
}

.rb-drawer__price {
  font-size: 1.1rem;
  color: var(--color-foreground, #2c2c2c);
  margin-bottom: 24px;
  opacity: 0.8;
}

.rb-drawer__option {
  margin-bottom: 20px;
}

.rb-drawer__option-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground, #2c2c2c);
  margin-bottom: 10px;
}

.rb-drawer__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rb-variant-btn {
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  background: none;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--color-foreground, #2c2c2c);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rb-variant-btn.active,
.rb-variant-btn:hover {
  border-color: var(--color-foreground, #2c2c2c);
  background: var(--color-foreground, #2c2c2c);
  color: var(--color-background, #fff);
}

.rb-drawer__qty {
  margin-bottom: 24px;
}

.rb-drawer__qty label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-foreground, #2c2c2c);
}

.rb-qty-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  width: fit-content;
}

.rb-qty-input button {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-foreground, #2c2c2c);
}

.rb-qty-input input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  font-size: 0.95rem;
  padding: 8px 0;
  color: var(--color-foreground, #2c2c2c);
}

.rb-btn--full {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.rb-drawer__feedback {
  font-size: 0.85rem;
  color: #c0392b;
  text-align: center;
  min-height: 20px;
}
{{ 'ritual-bundle.css' | asset_url | stylesheet_tag }}

<section class="rb-section rb-whats-included" style="background-color: {{ section.settings.bg_color }};">
  <div class="rb-container">
    <div class="rb-section__header">
      {% if section.settings.eyebrow != blank %}
        <p class="rb-eyebrow">{{ section.settings.eyebrow }}</p>
      {% endif %}
      {% if section.settings.heading != blank %}
        <h2 class="rb-section-heading">{{ section.settings.heading }}</h2>
      {% endif %}
    </div>

    <div class="rb-grid-4">
      {% for block in section.blocks %}
        <div class="rb-card" {{ block.shopify_attributes }}>
          {% if block.settings.image != blank %}
            <div class="rb-card__image">
              {{ block.settings.image | image_url: width: 600 | image_tag: loading: 'lazy', alt: block.settings.title }}
            </div>
          {% endif %}
          <div class="rb-card__body">
            {% if block.settings.title != blank %}
              <h3 class="rb-card__title">{{ block.settings.title }}</h3>
            {% endif %}
            {% if block.settings.description != blank %}
              <div class="rb-card__desc">{{ block.settings.description }}</div>
            {% endif %}

            {% comment %} Inline variant swatches {% endcomment %}
            {% if block.settings.variant_label_1 != blank %}
              <div class="rb-card__variants">
                <p class="rb-card__variant-label">{{ block.settings.variant_option_name }}</p>
                <div class="rb-card__swatches">
                  {% assign v1 = block.settings.variant_label_1 %}
                  {% assign v2 = block.settings.variant_label_2 %}
                  {% assign v3 = block.settings.variant_label_3 %}
                  {% assign v4 = block.settings.variant_label_4 %}
                  {% assign v5 = block.settings.variant_label_5 %}
                  {% assign v6 = block.settings.variant_label_6 %}
                  {% for v in (1..6) %}
                    {% assign vkey = 'variant_label_' | append: v %}
                    {% assign vlabel = block.settings[vkey] %}
                    {% if vlabel != blank %}
                      <span class="rb-swatch">{{ vlabel }}</span>
                    {% endif %}
                  {% endfor %}
                </div>
              </div>
            {% endif %}
          </div>
        </div>
      {% endfor %}
    </div>
  </div>
</section>

{% schema %}
{
  "name": "What's Included",
  "tag": "section",
  "class": "ritual-bundle-section",
  "settings": [
    { "type": "text", "id": "eyebrow", "label": "Eyebrow Text", "default": "The Bundle" },
    { "type": "text", "id": "heading", "label": "Heading", "default": "What's Included" },
    { "type": "color", "id": "bg_color", "label": "Background Colour", "default": "#ffffff" }
  ],
  "blocks": [
    {
      "type": "card",
      "name": "Product Card",
      "settings": [
        { "type": "image_picker", "id": "image", "label": "Product Image" },
        { "type": "text", "id": "title", "label": "Product Name", "default": "Product Name" },
        { "type": "richtext", "id": "description", "label": "Description", "default": "<p>Describe this product.</p>" },
        { "type": "header", "content": "Available Options" },
        { "type": "text", "id": "variant_option_name", "label": "Option Label", "default": "Style", "info": "e.g. Colour, Scent, Size" },
        { "type": "text", "id": "variant_label_1", "label": "Option 1" },
        { "type": "text", "id": "variant_label_2", "label": "Option 2" },
        { "type": "text", "id": "variant_label_3", "label": "Option 3" },
        { "type": "text", "id": "variant_label_4", "label": "Option 4" },
        { "type": "text", "id": "variant_label_5", "label": "Option 5" },
        { "type": "text", "id": "variant_label_6", "label": "Option 6" }
      ]
    }
  ],
  "presets": [
    { "name": "What's Included", "blocks": [
      { "type": "card" }, { "type": "card" }
    ]}
  ]
}
{% endschema %} 
/* --- Variant Pills --- */
.rb-card__variants {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.rb-card__variant-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.6;
  margin-bottom: 8px;
}

.rb-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rb-swatch {
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 20px;
  color: var(--color-foreground, #2c2c2c);
  background: transparent;
  white-space: nowrap;
}

.rb-swatch--clickable {
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.rb-swatch--clickable:hover {
  border-color: var(--color-foreground, #2c2c2c);
  background: var(--color-foreground, #2c2c2c);
  color: var(--color-background, #fff);
}

/* --- Lightbox --- */
.rb-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}

.rb-lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rb-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.rb-lightbox__window {
  position: relative;
  z-index: 301;
  background: var(--color-background, #fff);
  border-radius: 12px;
  max-width: 860px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}

.rb-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-foreground, #2c2c2c);
}

.rb-lightbox__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .rb-lightbox__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.rb-lightbox__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.rb-lightbox__product {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
  color: var(--color-foreground, #2c2c2c);
}

.rb-lightbox__title {
  font-family: var(--font-heading-family, serif);
  font-size: 1.4rem;
  color: var(--color-foreground, #2c2c2c);
  margin-bottom: 16px;
}

.rb-lightbox__hint {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-foreground, #2c2c2c);
  opacity: 0.65;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  margin-top: 16px;
}




