/** Shopify CDN: Minification failed

Line 404:16 Expected identifier but found whitespace
Line 404:18 Unexpected "{"
Line 404:27 Expected ":"
Line 405:15 Expected identifier but found whitespace
Line 405:17 Unexpected "{"
Line 405:26 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:core-collection-grid (INDEX:17) */
/* ===== SECTION WRAPPER ===== */
  .ccg-section {
    background: #ffffff;
  }
  .ccg-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }
  .ccg-empty {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-style: italic;
  }

  /* ===== PRODUCT CARD ===== */
  .ccg-card {
    background: #fff5f5;
    margin-bottom: 60px;
    padding: 32px;
    overflow: visible;
  }
  .ccg-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .ccg-card__image {
    width: 100%;
  }
  .ccg-card__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
  }
  .ccg-card__details {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
  }
  .ccg-card__title {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }
  .ccg-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px 0;
  }
  .ccg-card__description p {
    margin: 0 0 8px 0;
  }
  .ccg-card__description p:last-child {
    margin-bottom: 0;
  }

  /* ===== VARIANT OPTION GROUPS ===== */
  .ccg-option-group {
    margin-bottom: 18px;
  }
  .ccg-option-group__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 8px;
  }
  .ccg-option-group__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ccg-radio {
    display: none;
  }
  .ccg-radio-label {
    display: inline-block;
    padding: 6px 14px;
    border: 1.5px solid #d0c8bb;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    background: #fff;
    color: #333;
    position: relative;
    overflow: visible;
    user-select: none;
  }
  .ccg-radio:checked + .ccg-radio-label {
    border-color: #a3875c;
    background: #faf6f1;
    color: #a3875c;
    font-weight: 600;
  }
  .ccg-radio-label:hover {
    border-color: #a3875c;
  }
  .ccg-radio.unavailable + .ccg-radio-label {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* ===== VARIANT PRICE TOOLTIP ===== */
  .ccg-price-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #a3875c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 100;
  }
  .ccg-price-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #a3875c;
  }
  .ccg-price-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* ===== BUTTONS ===== */
  .ccg-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }
  .ccg-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
    line-height: 1.4;
  }
  .ccg-btn:hover {
    opacity: 0.85;
  }
  .ccg-btn--purchase {
    background: #a3875c;
    color: #fff;
  }
  .ccg-btn--purchase[disabled] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
  }
  .ccg-btn--details {
    background: transparent;
    color: #a3875c;
    border: 1.5px solid #a3875c;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .ccg-wrapper {
      padding: 0 16px 40px;
    }
    .ccg-card {
      padding: 20px;
      margin-bottom: 40px;
    }
    .ccg-card__inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .ccg-card__title {
      font-size: 22px;
    }
    .ccg-buttons {
      flex-direction: column;
    }
    .ccg-btn {
      text-align: center;
    }
  }
/* END_SECTION:core-collection-grid */

/* START_SECTION:custom-featured-product (INDEX:21) */
.pbc-main-container {
      padding: 2rem;
      margin: 0 auto;
    }
    .pbc-product-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }
    .pbc-product-image {
      width: 100%;
    }
    .product-featured-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .pbc-product-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .pbc-product-title {
      margin: 0;
      line-height: 1.2;
    }
    .pbc-description {
      margin: 0;
    }
    .pbc-label {
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
    }
    .pbc-variant-section {
      margin: 1rem 0;
    }
    .pbc-variant-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }
    .pbc-variant-radio-wrapper {
      position: relative;
      text-align: center; /* helps center images + text */
      width: 166px; /* adjust for a gem-grid look */
      margin: 0.5rem;
    }
    .pbc-variant-radio {
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 22%;
      cursor: pointer;
      margin: 0;
      z-index: 2;
    }
    .pbc-variant-label {
      display: block;
      padding: 0.5rem 0.5rem;
      border: 1px solid #9A8C7050;
      border-radius: 0px;
      cursor: pointer;
      transition: all 0.2s ease;
      background-color:transparent;
      position: relative;
      overflow: hidden; /* Ensure the diagonal line stays within the button */
    }
    .pbc-variant-radio:checked + .pbc-variant-label {
      background-color:transparent;
      border-color: #000000;
    }
    .pbc-variant-radio:hover + .pbc-variant-label:not(.sold-out-variant) {
      border-color: #9A8C70;
    }
    .pbc-variant-radio:focus-visible + .pbc-variant-label:not(.sold-out-variant) {
      outline: 2px solid #000;
      outline-offset: 2px;
    }
    /* Sold out variant styling */
    .sold-out-variant {
      opacity: 0.7;
      background-color: #f9f9f9 !important;
      border-color: #ddd !important;
      cursor: not-allowed;
      color: #999;
    }
    /* Diagonal line for sold-out variants */
    .diagonal-line {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      /* background: linear-gradient(to bottom left, 
                                 transparent calc(50% - 1px), 
                                 rgba(220, 53, 69, 0.7) calc(50% - 1px), 
                                 rgba(220, 53, 69, 0.7) calc(50% + 1px), 
                                 transparent calc(50% + 1px)); */
      background: linear-gradient(to bottom left, 
                                 transparent calc(50% - 1px), 
                                 rgba(0, 0, 0, 0.3) calc(50% - 1px), 
                                 rgba(0, 0, 0, 0.3) calc(50% + 1px), 
                                 transparent calc(50% + 1px));                                 
      pointer-events: none;
    }
    .price-display {
      font-size: 1.25rem;
      font-weight: bold;
      margin: 1rem 0;
    }
    .pbc-button-container {
      display: flex;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .pbc-btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0px;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      transition: opacity 0.2s ease;
      font-weight: 500;
    }
    .pbc-btn:hover:not([disabled]) {
      opacity: 0.9;
    }
    .pbc-btn[disabled] {
      background-color: #cccccc !important;
      cursor: not-allowed;
      opacity: 0.7;
    }
    /* Basic styles for blocks below the buttons */
    .pbc-section-blocks {
      margin-top: 0rem;
    }
    .pbc-accordion {
      margin-bottom: 1rem;
    }
    .pbc-accordion summary {
      cursor: pointer;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }
    .pbc-accordion-content {
      margin: 0.5rem 0 1rem;
    }
    .pbc-custom-liquid {
      margin-bottom: 1rem;
    }
    .pbc-variant-radio-wrapper .variant-price {
      visibility: hidden;
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 12px;
      white-space: nowrap;
      z-index: 10;
    }
    .pbc-variant-radio-wrapper:hover .variant-price {
      visibility: visible;
    }
    @media (max-width: 768px) {
      .pbc-main-container {
        padding: {{ section.settings.padding_mobile }};
        margin: {{ section.settings.margin_mobile }};
      }
      .pbc-product-container {
        grid-template-columns: 1fr;
      }
      .pbc-button-container {
        flex-direction: column;
      }
      .pbc-btn {
        width: 100% !important;
      }
    }
/* END_SECTION:custom-featured-product */

/* START_SECTION:embellish-grid (INDEX:24) */
.eg-section {
    background: #ffffff;
  }
  .eg-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 60px;
  }
  .eg-empty {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-style: italic;
  }

  /* ===== GROUP ===== */
  .eg-group {
    margin-bottom: 48px;
  }
  .eg-group:last-child {
    margin-bottom: 0;
  }
  .eg-group__title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #a3875c;
    margin: 0 0 20px 0;
    padding: 24px 0 10px;
    border-bottom: 1px solid #e8e0d4;
  }

  /* ===== GRID ===== */
  .eg-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
  }

  /* ===== PRODUCT CARD ===== */
  .eg-card {
    text-align: center;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease;
  }
  .eg-card:hover {
    transform: translateY(-3px);
  }
  .eg-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #f8f5f2;
    margin-bottom: 12px;
  }
  .eg-card__title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
  }
  .eg-card__price {
    font-size: 18px;
    color: #a3875c;
    font-weight: 400;
    margin: 0;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .eg-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
  }
  @media (max-width: 768px) {
    .eg-wrapper {
      padding: 0 16px 40px;
    }
    .eg-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .eg-card__title {
      font-size: 13px;
    }
    .eg-card__price {
      font-size: 16px;
    }
  }
/* END_SECTION:embellish-grid */