/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 2474:0 Unexpected "<"

**/
<style>
/* ==========================
   Floating Widget
========================== */

#cb-quiz-widget{

    position:fixed;

    right:0;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    z-index:9999;

}

/* Bubble */

.cb-quiz-bubble{

    background:rgba(255,255,255,.98);

    padding:18px 20px;

    border-radius:18px 0 0 18px;

    box-shadow:
    0 12px 40px rgba(0,0,0,.10);

    margin-right:12px;

    max-width:220px;

}

.cb-quiz-bubble-title{

    font-size:15px;

    font-weight:600;

    margin-bottom:4px;

    color:#222;

}

.cb-quiz-bubble-text{

    font-size:14px;

    color:#666;

    line-height:1.45;

}

/* Circle */

#cb-quiz-trigger{

    width:74px;

    height:74px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:30px;

    background:rgba(177,197,164,.85);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

    box-shadow:
    0 10px 28px rgba(0,0,0,.12);

}

#cb-quiz-trigger:hover{

    background:rgba(177,197,164,1);

    transform:scale(1.06);

}

/* ==========================
   Overlay
========================== */

#cb-quiz-overlay{

    position:fixed;

    inset:0;

    background:rgba(177,197,164,.18);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:10000;

}

#cb-quiz-overlay.active{

    opacity:1;

    visibility:visible;

}

/* Modal */

.cb-quiz-modal{

    width:min(760px,92vw);

    height:min(760px,90vh);

    background:#fff;

    border-radius:28px;

    position:relative;

    overflow:hidden;
    overflow-y: auto;

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);

}

/* Close */

#cb-quiz-close{

    position:absolute;
    top: 8px;
    right: 8px;

    flex-shrink: 0;
    margin: 8px 8px 8px auto;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    cursor:pointer;

    font-size:20px;

    transition:.2s;

}

#cb-quiz-close:hover{

    background:#e8e8e8;

}

/* Content */

.cb-quiz-content{

    width:100%;

    height:100%;

    padding:60px;

    overflow:auto;

}

/* Mobile */

@media(max-width:768px){

    #cb-quiz-widget{

        right:16px;

        bottom:20px;

        top:auto;

        transform:none;

    }

    .cb-quiz-bubble{

        display:none;

    }

    #cb-quiz-trigger{

        width:66px;

        height:66px;

        font-size:28px;

    }

    .cb-quiz-content{

        padding:32px 24px;

    }

}

.cb-quiz-progress{

margin-bottom:20px;

}

.cb-quiz-kicker {
  margin-bottom:8px;
}

.cb-quiz-progress-bar{

height:8px;

background:#ececec;

border-radius:999px;

overflow:hidden;

margin-bottom:12px;

}

.cb-quiz-progress-fill{

width:16.66%;

height:100%;

background:#B1C5A4;

transition:.35s;

}

.cb-quiz-progress-text{

font-size:14px;

color:#888;

}

#cb-question-title{

font-size:34px;

font-weight:600;

margin-bottom:12px;

}

#cb-question-subtitle {
  margin-bottom:20px;
}

#cb-question-options{

display:grid;

gap:16px;

}

.cb-option{

padding:20px;

border-radius:18px;

border:2px solid #ececec;

cursor:pointer;

transition:.2s;

font-size:18px;

overflow:hidden;

}

.cb-option:hover{

border-color:#B1C5A4;

background:#fafcf9;

}

.cb-option.active{

border-color:#B1C5A4;

background:rgba(177,197,164,.18);

}

.cb-quiz-buttons{

display:flex;

justify-content:space-between;

margin-top:48px;

}

.cb-quiz-buttons button{

padding:14px 26px;

border:none;

border-radius:999px;

cursor:pointer;

font-size:16px;

}

#cb-prev{

color:#333333;

}

#cb-next{

    background: #B1C5A4;
    color: #000;
    border: 2px solid #000;

}

#cb-next:disabled{

opacity:.35;

cursor:not-allowed;

}

/* ==========================
   Quiz Builder Fixes
========================== */

/* Important: ID display:grid would otherwise override hidden */
#cb-question-options[hidden],
#cb-result-view[hidden],
#cb-next[hidden] {
  display: none !important;
}

/* Better option grids */
#cb-question-options {
  align-items: stretch;
}

.cb-options-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cb-options-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.cb-options-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-options-grid-letters {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.cb-options-grid-zodiac {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-option-compact {
  min-height: 74px;
}

.cb-option-compact .cb-option-text {
  padding: 14px 10px;
  text-align: center;
}

.cb-option-compact .cb-option-label {
  font-size: 20px;
}

.cb-letter-card.cb-option-compact .cb-option-label {
  font-size: 24px;
  font-weight: 750;
}

.cb-zodiac-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 120px;
  margin:auto;
}

.cb-zodiac-card .cb-option-image img {
  padding: 12px;
  
}

.cb-zodiac-card.cb-option-compact .cb-option-label {
  font-size: 15px;
}

.cb-zodiac-card.cb-option-compact .cb-option-subtitle {
  font-size: 12px;
}

/* Result loading */
.cb-result-loading-screen {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cb-result-loading-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 650;
  color: #1f1f1f;
}

.cb-result-loading-text {
  font-size: 15px;
  line-height: 1.55;
  color: #666;
  max-width: 520px;
}

.cb-result-loading-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cb-result-loading-step {
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 18px;
  background: #fafafa;
  color: #777;
  font-size: 14px;
}

.cb-result-loading-step.is-done {
  border-color: #B1C5A4;
  background: rgba(177, 197, 164, .14);
  color: #4f5f44;
}

.cb-result-loading-step.is-active {
  border-color: #B1C5A4;
  background: #fff;
  color: #1f1f1f;
}

/* Result layout */
.cb-result-design-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.cb-result-design-button {
  border: 2px solid #eee;
  background: #faf9f7;
  border-radius: 22px;
  padding: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  overflow: hidden;
}

.cb-result-design-button:hover {
  transform: translateY(-1px);
  border-color: #B1C5A4;
}

.cb-result-design-button.active {
  border-color: #B1C5A4;
  background: rgba(177, 197, 164, .12);
}

.cb-result-design-thumb {
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-result-design-thumb .cb-live-preview-snapshot {
  transform: scale(.42);
}

.cb-result-design-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 650;
  color: #1f1f1f;
  text-align: center;
}

.cb-live-preview-snapshot {
  width: 360px;
  height: 450px;
  position: relative;
  pointer-events: none;
  transform-origin: center center;
}

.cb-live-preview-snapshot .charm_bar__reference,
.cb-live-preview-snapshot .charm-bar__reference {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  transform: none !important;
  margin: 0 !important;
}

.cb-live-preview-snapshot .charm_bar__reference-media,
.cb-live-preview-snapshot .charm-bar__reference-media {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.cb-live-preview-snapshot .charm_bar__base-product-image,
.cb-live-preview-snapshot .charm-bar__base-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.cb-live-preview-snapshot .charm_bar__point,
.cb-live-preview-snapshot .charm_bar__drop-area,
.cb-live-preview-snapshot .charm-bar-fullscreen-button,
.cb-live-preview-snapshot [data-drop-target] {
  display: none !important;
}

.cb-result-preview-card .cb-live-preview-snapshot {
  transform: scale(.86);
}

@media (max-width: 768px) {
  .cb-options-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-letters {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-zodiac {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .cb-option-image {
    aspect-ratio: 1 / 1;
  }


  .cb-result-design-switcher {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .cb-result-design-button {
    padding: 6px;
    border-radius: 16px;
  }

  .cb-result-design-thumb {
    border-radius: 12px;
  }

  .cb-result-design-thumb .cb-live-preview-snapshot {
    transform: scale(.24);
  }

  .cb-result-preview-card .cb-live-preview-snapshot {
    transform: scale(.64);
  }

  .cb-result-loading-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Quiz Layout Fixes
========================== */

#cb-question-options[hidden],
#cb-result-view[hidden],
#cb-next[hidden] {
  display: none !important;
}

.cb-options-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cb-options-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.cb-options-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-options-grid-letters {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.cb-options-grid-zodiac {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-letter-card {
  min-height: 126px;
}

.cb-letter-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 84px;
  margin:auto;
}

.cb-letter-card .cb-option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cb-option-compact .cb-option-text {
  padding: 14px 10px;
  text-align: center;
}

.cb-option-compact .cb-option-label {
  font-size: 22px;
  font-weight: 750;
}

.cb-zodiac-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 122px;
}

.cb-zodiac-card .cb-option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* ==========================
   Result Snapshot Layout
========================== */

.cb-result-shell {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, .95fr);
  gap: 32px;
  align-items: stretch;
}

.cb-result-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 2px solid #eee;
  border-radius: 28px;
  background: #faf9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.cb-result-info-card {
  border: 2px solid #eee;
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.cb-live-preview-snapshot {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: var(--cb-snapshot-ratio, 4 / 5);
  pointer-events: none;
  transform: none !important;
  transform-origin: center center;
}

.cb-live-preview-snapshot * {
  pointer-events: none !important;
}

.cb-live-preview-snapshot > .charm_bar__reference,
.cb-live-preview-snapshot > .charm-bar__reference {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  margin: 0 !important;
}

.cb-live-preview-snapshot .charm_bar__reference-media,
.cb-live-preview-snapshot .charm-bar__reference-media {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.cb-live-preview-snapshot .charm_bar__base-product-image,
.cb-live-preview-snapshot .charm-bar__base-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.cb-live-preview-snapshot .charm_bar__point,
.cb-live-preview-snapshot .charm_bar__drop-area,
.cb-live-preview-snapshot .charm-bar-fullscreen-button,
.cb-live-preview-snapshot button,
.cb-live-preview-snapshot [data-drop-target],
.cb-live-preview-snapshot [data-save-design],
.cb-live-preview-snapshot [data-wishlist],
.cb-live-preview-snapshot [class*="save"],
.cb-live-preview-snapshot [class*="wishlist"],
.cb-live-preview-snapshot [class*="favorite"] {
  display: none !important;
}

/* ==========================
   Result Switcher
========================== */

.cb-result-design-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.cb-result-design-button {
  border: 2px solid #eee;
  background: #faf9f7;
  border-radius: 22px;
  padding: 10px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.cb-result-design-button:hover {
  border-color: #B1C5A4;
  transform: translateY(-1px);
}

.cb-result-design-button.active {
  border-color: #B1C5A4;
  background: rgba(177, 197, 164, .13);
}

.cb-result-design-thumb {
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-result-design-thumb .cb-live-preview-snapshot {
  width: 100%;
  max-width: 100%;
  transform: scale(.92) !important;
}

.cb-result-design-label {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #1f1f1f;
}

/* ==========================
   Result Buttons
========================== */

.cb-result-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.cb-result-action {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.cb-result-action:hover {
  transform: translateY(-1px);
}

.cb-result-action-primary {
  background: #1f1f1f;
  color: #fff;
}

.cb-result-action-secondary {
  background: #f1f1f1;
  color: #1f1f1f;
}

.cb-result-title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.cb-result-subtitle {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 18px;
}

.cb-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cb-result-meta span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4f4f4;
  font-size: 13px;
  color: #555;
}

@media (max-width: 768px) {
  .cb-options-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-letters {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-zodiac {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-result-shell {
    grid-template-columns: 1fr;
  }

  .cb-result-preview-card {
    min-height: 390px;
    padding: 18px;
  }

  .cb-result-info-card {
    min-height: auto;
    padding: 22px;
  }

  .cb-result-design-switcher {
    gap: 8px;
  }

  .cb-result-design-button {
    border-radius: 16px;
    padding: 6px;
  }

  .cb-result-design-thumb {
    border-radius: 12px;
  }

  .cb-result-design-label {
    font-size: 12px;
  }
}

.cb-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cb-result-actions .cb-btn,
.cb-result-actions button,
.cb-result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #a8bb97;
  background: #b7c8a7;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cb-result-actions .cb-btn:hover,
.cb-result-actions button:hover,
.cb-result-actions a:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.cb-result-actions .cb-btn--secondary {
  background: transparent;
  border-color: rgba(0,0,0,0.16);
}

/* ==========================
   Result carousel + fixes
========================== */

.cb-result-design-list {
  display: block !important;
}

.cb-result-carousel {
  position: relative;
  width: 100%;
}

.cb-result-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 0 10px;
}

.cb-result-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.cb-result-carousel-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.cb-result-card {
  flex: 0 0 86%;
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border: 2px solid #eee;
  border-radius: 30px;
  background: #fff;
  padding: 22px;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

.cb-result-card .charm_bar__reference {
  box-shadow:none;
}

.cb-result-card.active {
  border-color: #B1C5A4;
  background: rgba(177, 197, 164, .05);
}

.cb-result-card:not(.active) {
  opacity: .72;
}

.cb-result-card-preview {
  border: 0;
  background: #faf9f7;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.cb-result-arrow {
  position: absolute;
  top: 260px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-result-arrow--prev {
  left: -8px;
}

.cb-result-arrow--next {
  right: -8px;
}

.cb-result-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 6px;
}

.cb-result-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #dedede;
  cursor: pointer;
  padding: 0;
}

.cb-result-dot.active {
  width: 24px;
  background: #B1C5A4;
}

.cb-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.cb-result-action {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.cb-result-action:hover {
  transform: translateY(-1px);
}

.cb-result-action-primary {
  background: #1f1f1f;
  color: #fff;
}

.cb-result-action-secondary {
  background: #f1f1f1;
  color: #1f1f1f;
}

/* bigger letter images */
.cb-letter-card {
  min-height: 150px !important;
}

.cb-letter-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 118px !important;
  overflow: hidden;
}

.cb-letter-card .cb-option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0 !important;
  transform: scale(1.75);
  transform-origin: center center;
}

/* bigger base/option images */
.cb-option-image img {
  image-rendering: auto;
}

.cb-option:not(.cb-letter-card) .cb-option-image img {
  transform: scale(1.4);
  transform-origin: center center;
}

/* keep cloned preview ratio stable */
.cb-live-preview-snapshot {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: var(--cb-snapshot-ratio, 4 / 5);
  pointer-events: none !important;
  transform: none !important;
  transform-origin: center center;
}

.cb-live-preview-snapshot * {
  pointer-events: none !important;
}

.cb-live-preview-snapshot > .charm_bar__reference,
.cb-live-preview-snapshot > .charm-bar__reference {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  margin: 0 !important;
}

.cb-live-preview-snapshot .charm_bar__reference-media,
.cb-live-preview-snapshot .charm-bar__reference-media {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.cb-live-preview-snapshot .charm_bar__base-product-image,
.cb-live-preview-snapshot .charm-bar__base-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.cb-live-preview-snapshot .charm_bar__point,
.cb-live-preview-snapshot .charm_bar__drop-area,
.cb-live-preview-snapshot .charm-bar-fullscreen-button,
.cb-live-preview-snapshot button,
.cb-live-preview-snapshot [data-drop-target],
.cb-live-preview-snapshot [data-save-design],
.cb-live-preview-snapshot [data-wishlist],
.cb-live-preview-snapshot [class*="save"],
.cb-live-preview-snapshot [class*="wishlist"],
.cb-live-preview-snapshot [class*="favorite"] {
  display: none !important;
}

@media (max-width: 768px) {
  .cb-result-card {
    flex-basis: 88%;
    padding: 16px;
  }

  .cb-result-card-preview {
    padding: 16px;
  }

  .cb-result-arrow {
    top: 210px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .cb-result-arrow--prev {
    left: -4px;
  }

  .cb-result-arrow--next {
    right: -4px;
  }

  .cb-result-actions {
    grid-template-columns: 1fr;
  }

  .cb-letter-card {
    min-height: 132px !important;
  }

  .cb-letter-card .cb-option-image {
    max-height: 96px !important;
  }

  .cb-letter-card .cb-option-image img {
    transform: scale(2.5);
  }
}

/* ==========================
   Quiz Builder Runtime Styles
========================== */

#cb-question-options[hidden],
#cb-result-view[hidden],
#cb-next[hidden] {
  display: none !important;
}

#cb-question-options {
  align-items: stretch;
}

.cb-options-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cb-options-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.cb-options-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-options-grid-letters {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.cb-options-grid-zodiac {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cb-option-emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.cb-option-compact .cb-option-text {
  text-align: center;
  padding: 14px 10px;
}

.cb-option-compact .cb-option-label {
  font-size: 19px;
  font-weight: 750;
}

.cb-option.is-disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================
   Skip row
========================== */

.cb-skip-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 8px;
}

.cb-skip-button {
  border: 1px solid rgba(0,0,0,.1);
  background: #f6f6f6;
  color: #222;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cb-skip-button:hover {
  background: #ededed;
}

/* ==========================
   Letters
========================== */

.cb-letter-card {
  min-height: 108px !important;
}

.cb-letter-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 74px !important;
}

.cb-letter-card .cb-option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px !important;
}

.cb-letter-card .cb-option-label {
  font-weight: 800 !important;
}

/* ==========================
   Birthstones
========================== */

.cb-zodiac-card .cb-option-image,
.cb-birthstone-card .cb-option-image {
  aspect-ratio: 1 / 1;
  max-height: 122px;
}

.cb-zodiac-card .cb-option-image img,
.cb-birthstone-card .cb-option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0 !important;
}

.cb-birthstone-card .cb-option-image img {
  transform: scale(2.5) !important;
  transform-origin: center center;
}

/* ==========================
   Recipient + Interests
========================== */

.cb-recipient-card .cb-option-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
  gap: 12px;
  text-align: center;
}

.cb-recipient-card .cb-option-emoji {
  font-size: 28px !important;
  margin: 0 !important;
  line-height: 1;
}

.cb-recipient-card .cb-option-label {
  font-size: 17px !important;
  line-height: 1.15;
}

.cb-recipient-card .cb-option-subtitle {
  display: none !important;
}

.cb-interest-card .cb-option-text {
  text-align: center;
}

.cb-interest-card .cb-option-emoji {
  font-size: 26px !important;
  margin-bottom: 8px !important;
}

/* ==========================
   Result loading
========================== */

.cb-result-loading-screen {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cb-result-loading-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 650;
  color: #1f1f1f;
}

.cb-result-loading-text {
  font-size: 15px;
  line-height: 1.55;
  color: #666;
  max-width: 520px;
}

.cb-result-loading-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cb-result-loading-step {
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 18px;
  background: #fafafa;
  color: #777;
  font-size: 14px;
}

.cb-result-loading-step.is-done {
  border-color: #B1C5A4;
  background: rgba(177,197,164,.14);
  color: #4f5f44;
}

.cb-result-loading-step.is-active {
  border-color: #B1C5A4;
  background: #fff;
  color: #1f1f1f;
}

/* ==========================
   Result summary
========================== */

.cb-result-summary {
  border: 2px solid #eee;
  border-radius: 24px;
  padding: 18px 20px;
  margin-bottom: 22px;
  background: #fafafa;
}

.cb-result-summary-title {
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #777;
  margin-bottom: 12px;
}

.cb-result-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cb-result-summary-chips span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eee;
  font-size: 13px;
  color: #444;
}

/* ==========================
   Result carousel/cards
========================== */

.cb-result-carousel {
  position: relative;
  width: 100%;
}

.cb-result-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 0 10px;
}

.cb-result-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.cb-result-carousel-track {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.cb-result-card {
  flex: 0 0 86%;
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border: 2px solid #eee;
  border-radius: 30px;
  background: #fff;
  padding: 22px;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

.cb-result-card.active {
  border-color: #B1C5A4;
  background: rgba(177,197,164,.05);
}

.cb-result-card:not(.active) {
  opacity: .72;
}

.cb-result-card-preview {
  border: 0;
  background: #faf9f7;
  border-radius: 24px;
  padding: 22px;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.cb-result-card-content {
  padding: 4px 4px 6px;
}

.cb-result-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(177,197,164,.18);
  color: #647357;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cb-result-title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #1f1f1f;
}

.cb-result-subtitle {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 18px;
}

.cb-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cb-result-meta span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4f4f4;
  font-size: 13px;
  color: #555;
}

/* ==========================
   Result arrows/dots
========================== */

.cb-result-arrow {
  position: absolute;
  top: 260px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-result-arrow--prev {
  left: -8px;
}

.cb-result-arrow--next {
  right: -8px;
}

.cb-result-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 6px;
}

.cb-result-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #dedede;
  cursor: pointer;
  padding: 0;
}

.cb-result-dot.active {
  width: 24px;
  background: #B1C5A4;
}

/* ==========================
   Result actions
========================== */

.cb-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.cb-result-action {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.cb-result-action:hover {
  transform: translateY(-1px);
}

.cb-result-action-primary {
  background: #1f1f1f;
  color: #fff;
}

.cb-result-action-secondary {
  background: #f1f1f1;
  color: #1f1f1f;
}

.cb-result-loading {
  opacity: .65;
  pointer-events: none;
}

/* ==========================
   Snapshot
========================== */

.cb-live-preview-snapshot {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: var(--cb-snapshot-ratio, 4 / 5) !important;
  height: auto !important;
  max-height: none !important;
  pointer-events: none !important;
  transform: none !important;
  transform-origin: center center;
}

.cb-live-preview-snapshot * {
  pointer-events: none !important;
}

.cb-live-preview-snapshot > .charm_bar__reference,
.cb-live-preview-snapshot > .charm-bar__reference {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  margin: 0 !important;
}

.cb-live-preview-snapshot .charm_bar__reference-media,
.cb-live-preview-snapshot .charm-bar__reference-media {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.cb-live-preview-snapshot .charm_bar__base-product-image,
.cb-live-preview-snapshot .charm-bar__base-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.cb-live-preview-snapshot .charm_bar__point,
.cb-live-preview-snapshot .charm_bar__drop-area,
.cb-live-preview-snapshot .charm-bar-fullscreen-button,
.cb-live-preview-snapshot button,
.cb-live-preview-snapshot [data-drop-target],
.cb-live-preview-snapshot [data-save-design],
.cb-live-preview-snapshot [data-wishlist],
.cb-live-preview-snapshot [class*="save"],
.cb-live-preview-snapshot [class*="wishlist"],
.cb-live-preview-snapshot [class*="favorite"] {
  display: none !important;
}

/* ==========================
   Small screens
========================== */

@media (max-width: 768px) {
  .cb-options-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-letters {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .cb-options-grid-zodiac {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-result-loading-steps {
    grid-template-columns: 1fr;
  }

  .cb-result-card {
    flex-basis: 88%;
    padding: 16px;
  }

  .cb-result-card-preview {
    padding: 16px;
  }

  .cb-live-preview-snapshot {
    width: min(100%, 360px);
  }

  .cb-result-actions {
    grid-template-columns: 1fr;
  }

  .cb-result-title {
    font-size: 26px;
  }

  .cb-result-arrow {
    top: 210px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .cb-result-arrow--prev {
    left: -4px;
  }

  .cb-result-arrow--next {
    right: -4px;
  }
}

@media (max-width: 500px) {
  .cb-options-grid-letters {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cb-letter-card {
    min-height: 104px !important;
  }

  .cb-letter-card .cb-option-image {
    max-height: 70px !important;
  }
}

@media (max-width: 500px) {
  .cb-options-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .cb-recipient-card {
    min-height: 64px !important;
  }

  .cb-recipient-card .cb-option-text {
    justify-content: flex-start;
    padding: 14px 16px !important;
  }

  .cb-recipient-card .cb-option-label {
    font-size: 16px !important;
  }
}

/* Progress bar fix */
.cb-quiz-progress {
  padding-right: 72px !important;
}

.cb-quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.cb-quiz-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: #B1C5A4;
  border-radius: inherit;
  transition: width .28s ease;
}

#cb-quiz-close {
  z-index: 20;
}

.cb-result-arrow.is-disabled,
.cb-result-arrow:disabled {
  opacity: .22;
  pointer-events: none;
  cursor: default;
}

/* Progress bar robust fill */
.cb-quiz-progress {
  box-sizing: border-box;
  padding-right: 76px !important;
}

.cb-quiz-progress-bar {
  position: relative !important;
  overflow: hidden !important;
  background: #eee !important;
  border-radius: 999px !important;
}

.cb-quiz-progress-fill {
  display: block !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: var(--cb-progress, 12.5%) !important;
  height: 100% !important;
  background: #B1C5A4 !important;
  border-radius: 999px !important;
  transition: width .28s ease !important;
}

.cb-quiz-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--cb-progress, 12.5%);
  height: 100%;
  background: #B1C5A4;
  border-radius: 999px;
  transition: width .28s ease;
  pointer-events: none;
}

#cb-quiz-close {
  z-index: 30;
}

/* Quiz direction animations */
.cb-quiz-direction-forward #cb-question-title,
.cb-quiz-direction-forward #cb-question-subtitle,
.cb-quiz-direction-forward #cb-question-options {
  animation: cbQuizForwardIn .24s ease both;
}

.cb-quiz-direction-back #cb-question-title,
.cb-quiz-direction-back #cb-question-subtitle,
.cb-quiz-direction-back #cb-question-options {
  animation: cbQuizBackIn .24s ease both;
}

@keyframes cbQuizForwardIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cbQuizBackIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Result price */
.cb-result-price {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 118px;
  margin: 8px 0 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .cb-result-price {
    font-size: 17px;
    padding: 11px 15px;
  }
}

/* ==========================================================
   DESIGN MODE START SCREEN
========================================================== */

.cb-design-start {
  width: 100%;
  padding: 48px 32px;
}

.cb-design-start__header {
  text-align: center;
  margin-bottom: 32px;
}

.cb-design-start__header h2 {
  margin: 0;

  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 600;
}


/* ==========================================================
   OPTIONS
========================================================== */

.cb-design-start__options {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;

  width: 100%;
}


.cb-design-start__option {
  appearance: none;

  width: 100%;
  min-width: 0;
  min-height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px 24px;

  background: #fff;
  color: #111;

  border:
    1px solid rgba(0, 0, 0, 0.12);

  border-radius: 16px;

  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;

  text-align: center;

  cursor: pointer;

  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}


.cb-design-start__option:hover {
  border-color:
    rgba(0, 0, 0, 0.35);
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 749px) {

  .cb-design-start {
    padding: 70px 20px 8px 20px;
  }

  .cb-design-start__header {
    margin-bottom: 24px;
  }

  .cb-design-start__options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cb-design-start__option {
    min-height: 92px;

    padding:
      20px 18px;

    font-size: 16px;
  }

}

/* ==========================================================
   NATURAL LANGUAGE BUILDER
========================================================== */

.cb-prompt-flow {
  width: 100%;
}

.cb-prompt-flow__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px;
}

.cb-prompt-flow__title {
  margin:
    6px 0
    10px;

  font-size:
    clamp(28px, 4vw, 42px);

  line-height: 1.1;
}

.cb-prompt-flow__subtitle {
  margin:
    0 0 24px;

  font-size: 16px;
  line-height: 1.5;

  color:
    rgba(0, 0, 0, 0.62);
}


/* TEXT INPUT */

.cb-prompt-input {
  display: block;

  width: 100%;
  min-height: 170px;

  box-sizing: border-box;

  padding: 20px;

  resize: vertical;

  border:
    1px solid
    rgba(0, 0, 0, 0.14);

  border-radius: 16px;

  background: #fff;
  color: #111;

  font: inherit;
  font-size: 17px;
  line-height: 1.5;

  outline: none;
}

.cb-prompt-input:focus {
  border-color:
    rgba(0, 0, 0, 0.42);
}


/* EXAMPLES */

.cb-prompt-examples {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 14px;
}

.cb-prompt-example {
  appearance: none;

  padding:
    9px 13px;

  border:
    1px solid
    rgba(0, 0, 0, 0.1);

  border-radius: 999px;

  background:
    rgba(0, 0, 0, 0.035);

  color: #111;

  font: inherit;
  font-size: 13px;

  cursor: pointer;
}


/* UNDERSTOOD VALUES */

.cb-prompt-understood {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;
}

.cb-prompt-understood[hidden] {
  display: none;
}

.cb-prompt-chip {
  padding:
    7px 11px;

  border-radius: 999px;

  background: #f1f3ef;

  font-size: 13px;
}


/* ACTIONS */

.cb-prompt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-top: 32px;
}

.cb-prompt-back,
.cb-prompt-generate {
  appearance: none;

  min-height: 48px;

  padding:
    0 22px;

  border: 0;
  border-radius: 999px;

  font: inherit;
  font-weight: 600;

  cursor: pointer;
}

.cb-prompt-back {
  color:#b1c5a4 ;
}

#cb-prompt-generate {
  display:none;
}

.cb-prompt-generate {
  background: #b1c5a4;
  color: #111;
}

#cb-prompt-generate-ai {
  width:100%;
}

.cb-prompt-generate:disabled {
  opacity: 0.4;
  cursor: default;
}


/* MOBILE */

@media (max-width: 749px) {

  .cb-prompt-flow__content {
    padding: 48px 20px 32px 20px;
  }

  .cb-prompt-input {
    min-height: 150px;

    font-size: 16px;
  }

}

#cb-quiz-overlay .cb-quiz-modal {
  display: flex;
  flex-direction: column;

  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}

#cb-quiz-flow {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

#cb-quiz-flow .cb-quiz-content {
  flex: 1 1 auto;
  min-height: 0;

  height: 100%;
  max-height: 100%;

  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cb-inline-error {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(160, 40, 40, 0.22);
  border-radius: 8px;
  background: rgba(160, 40, 40, 0.06);
  font-size: 13px;
  line-height: 1.4;
}

.cb-inline-error[hidden] {
  display: none !important;
}

.cb-result-apply-error {
  margin-bottom: 16px;
}

.cb-prompt-counter {
  margin-top: 6px;
  text-align: right;

  font-size: 12px;
  line-height: 1;

  color: rgba(23, 23, 23, 0.45);
}

.cb-options-grid-letters img {
  transform:scale(2.5);
}

  .cb-live-preview-snapshot.necklace-preview {
    transform: scale(1.5) !important;
    transform-origin: center center !important;
  }

  .cb-live-preview-snapshot.bracelet-preview {
    transform: scale(2.075) !important;
    transform-origin: center center !important;
  }


  .cb-result-card-preview:has(> .necklace-preview) {
    aspect-ratio: 4 / 5;
  }
</style>