/** Shopify CDN: Minification failed

Line 139:14 Expected identifier but found whitespace
Line 139:16 Unexpected "{"
Line 139:25 Expected ":"
Line 139:53 Expected identifier but found "!"
Line 140:13 Expected identifier but found whitespace
Line 140:15 Unexpected "{"
Line 140:24 Expected ":"
Line 140:51 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
.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 #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
  }
  .pbc-variant-radio:checked + .pbc-variant-label {
    background-color: #f0f0f0;
    border-color: #666;
  }
  .pbc-variant-radio:hover + .pbc-variant-label {
    border-color: #666;
  }
  .pbc-variant-radio:focus-visible + .pbc-variant-label {
    outline: 2px solid #000;
    outline-offset: 2px;
  }
  .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: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: opacity 0.2s ease;
    font-weight: 500;
  }
  .pbc-btn:hover {
    opacity: 0.9;
  }
  /* Basic styles for blocks below the buttons */
  .pbc-section-blocks {
    margin-top: 2rem;
  }
  .pbc-accordion {
    margin-bottom: 1rem;
  }
  .pbc-accordion summary {
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .pbc-accordion-content {
    margin: 0.5rem 0 1rem;
  }
  .pbc-custom-liquid {
    margin-bottom: 1rem;
  }
  @media (max-width: 768px) {
    .pbc-main-container {
      padding: {{ section.settings.padding_mobile }} !important;
      margin: {{ section.settings.margin_mobile }} !important;
    }
    .pbc-product-container {
      grid-template-columns: 1fr;
    }
    .pbc-button-container {
      flex-direction: column;
    }
    .pbc-btn {
      width: 100% !important;
    }
  }