/** Shopify CDN: Minification failed

Line 248:6 Unexpected "{"
Line 248:7 Expected identifier but found "%"
Line 248:40 Unexpected "{"
Line 248:41 Expected identifier but found "%"

**/
    add-to-cart.Muster {
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    add-to-cart.Muster::before {
      content: '+';
      font-size: 24px;
      line-height: 1.3;
      font-weight: 700;
    }

    button.preview-trigger>svg {
      margin-right: 8px;
    }

    button.button.button--primary.preview-trigger {
      min-width: 20px;
    }

    /* Styling for the 'already in cart' state */
    .button.Muster.muster_in_cart,
    .button.Muster[disabled] {
      background-color: #666 !important;
      border-color: #666 !important;
      color: #f4f4f4 !important;
      cursor: not-allowed;
      background-image: none !important;
    }

    .popup-product-layout {
      display: grid;
      grid-template-columns: minmax(0, 2fr) 400px;
      gap: 10px;
      align-items: start;
    }

    .product-preview-modal {
      width: 1100px;
      max-width: 95%;
      border: 0;
      padding: 0;
      background: #fff;
      border-radius: 24px;
    }

    .product-preview-modal::backdrop {
      background: rgba(0, 0, 0, 0.55);
    }

    .modal-content {
      padding: 30px;
      position: relative;
      max-height: 95vh;
      overflow-y: auto;
    }

    .custom-popup-slider {
      padding: 20px;
    }

    .popup-info {
      padding-right: 20px;
      margin-top: 0;
      padding-top: 20px;
    }

    .close-modal {
      position: absolute;
      right: 10px;
      top: 4px;
      border: 0;
      background: transparent;
      font-size: 30px;
      z-index: 10;
      cursor: pointer;
    }

    .popup-main-image-wrapper {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 1 / 0.9;
    }

    .popup-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease;
    }

    .popup-slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
    }

    .popup-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 10px;
    }

    .popup-slider-prev,
    .popup-slider-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, 0.95);
      cursor: pointer;
      z-index: 2;
      font-size: 24px;
    }

    .popup-slider-prev {
      left: 10px;
    }

    .popup-slider-next {
      right: 10px;
    }

    /* THUMBNAIL SLIDER */
    .thumbnail-nav-container {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
    }

    .popup-thumbnails {
      display: flex;
      flex-direction: row;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE */
      flex: 1;
      padding-bottom: 4px;
    }

    .popup-thumbnails::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    .thumb-arrow-btn {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      font-size: 18px;
      color: #888;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .thumb-arrow-btn:hover {
      color: #222;
      border-color: #aaa;
    }

    .popup-thumb {
      flex: 0 0 70px;
      width: 70px;
      height: 70px;
      padding: 0;
      border: 5px solid transparent;
      border-radius: 20px;
      background: transparent;
      cursor: pointer;
      transition: all 0.2s ease;
      overflow: hidden;
    }

    .popup-thumb.active {
      border-color: #e5a229;
      box-shadow: 0 0 0 1px #e5a229;
    }

    .popup-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px;
    }

    .popup-sale-badge {
      display: inline-block;
      background: #ff1a1a;
      color: #fff;
      padding: 7px 14px;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .popup-vendor {
      font-size: 16px;
      color: #666;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .popup-title {
      font-size: 24px;
      line-height: 1.25;
      color: #222;
      font-weight: 700;
      margin: 0 0 6px;
    }

    .popup-feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .popup-feature-list li {
      font-size: 13px;
      color: #666;
      {% comment %} margin-bottom: 7px; {% endcomment %}
    }

    .popup-price-box {
      margin-top: 8px;
    }

    .popup-price-row {
      display: flex;
      align-items: flex-end;
      gap: 10px;
    }

    .popup-compare-price {
      font-size: 14px;
      color: #666;
      text-decoration: line-through;
    }

    .popup-final-price {
      font-size: 30px;
      color: #d89a1d;
      font-weight: 700;
    }

    .popup-tax-note {
      font-size: 11px;
      color: #777;
      margin-top: 4px;
    }

    .popup-action-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }

    .popup-btn-request,
    .popup-btn-cart {
      height: 48px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .popup-btn-request {
      background: #d89a1d;
      color: #fff;
      border: 0;
      cursor: pointer;
    }

    .popup-btn-cart {
      border: 2px solid #d89a1d;
      color: #111;
      background: #fff;
    }

    .popup-benefits-box {
      background: #ebebeb;
      border-radius: 14px;
      padding: 16px;
      margin-top: 18px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: #666;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .benefit-item:last-child {
      margin-bottom: 0;
    }

    .benefit-icon {
      flex: 0 0 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-icon svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    .popup-pagefly-content {
      margin-top: -50px;
    }

    .popup-pagefly-content .pf-hero,
    .popup-pagefly-content .pf-section {
      margin-bottom: 24px;
    }

    button.button.button--primary.preview-trigger {
      background: #fff;
      color: #e5a229;
    }

    @media screen and (max-width: 768px) {
      .button, .button-label, .shopify-challenge__button {
        font-size: 13.5px;
      }
    .product-preview-modal {
      width: calc(100vw - 16px);
      max-width: calc(100vw - 16px);
      margin: 0 auto;
      border-radius: 16px;
    }

    .popup-product-layout {
        padding: 30px 18px 18px 18px;
    }

    .modal-content {
      padding: 12px;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .popup-product-layout {
      grid-template-columns: 1fr;
      gap: 20px;
      width: 100%;
      min-width: 0;
    }

    .custom-popup-slider,
    .popup-info,
    .popup-pagefly-content {
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }

    .custom-popup-slider {
      padding: 0;
    }

    .popup-info {
      padding: 0;
    }

    .popup-main-image-wrapper {
      width: 100%;
      max-width: 100%;
    }

    .popup-slide img {
      width: 100%;
      height: auto;
    }

    .thumbnail-nav-container {
      width: 100%;
      min-width: 0;
    }

    .popup-thumbnails {
      min-width: 0;
      max-width: 100%;
    }

    .popup-action-buttons .button,
    .popup-action-buttons add-to-cart {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Prevent PageFly sections from overflowing */
    .popup-pagefly-content * {
      max-width: 100%;
      box-sizing: border-box;
    }

    .popup-pagefly-content img,
    .popup-pagefly-content video,
    .popup-pagefly-content iframe {
      max-width: 100%;
      height: auto;
    }
    .card-product__buttons {
      display: grid !important;
    }
  }
  .product-preview-modal *,
  .product-preview-modal *::before,
  .product-preview-modal *::after {
    box-sizing: border-box;
  }

  @media screen and (max-width: 430px) {
    .card-product__buttons {
      display: grid !important;
    }

    .swym-advanced-wishlist-collections-container {
        bottom: 130px !important;
    }
  }