/** Shopify CDN: Minification failed

Line 137:2 Unexpected "}"

**/
/* A/B/C sample-popup styles — extracted from snippets/abc-test-popup.liquid
   (was ~10KB inline on every page; popup is hidden until triggered). */
.abc-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .abc-popup-overlay.active {
    display: flex;
  }

  .abc-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: abcPopupSlideIn 0.3s ease-out;
  }

  /* When image is present, expand popup width */
  .abc-popup.has-image {
    max-width: 900px;
  }

  @keyframes abcPopupSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .abc-popup__wrapper {
    display: flex;
    max-height: 90vh;
  }

  .abc-popup__image-side {
    flex-shrink: 0;
    width: 300px;
    background: #f5f5f5;
    overflow: hidden;
  }

  .abc-popup__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .abc-popup.has-image {
      max-width: 100%;
    }

    .abc-popup__content {
    padding: 32px 20px 24px;
  }
  
  .abc-popup__title {
    font-size: 22px;
  }
  
  .abc-popup__title--bogo {
    font-size: 26px;
  }
  
  .abc-popup__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .abc-popup__variant-inner {
    padding: 12px;
  }
  
  .abc-popup__variant-title {
    font-size: 15px;
  }
  
  .abc-popup__variant-notes {
    font-size: 13px;
  }
  
  .abc-popup__selected-count {
    font-size: 14px;
  }
  
  .abc-popup__submit {
    padding: 18px 24px;
    font-size: 17px;
  }
  
  .abc-popup__bogo-text {
    font-size: 15px;
  }
  
  .abc-popup__discount-code span {
    font-size: 22px;
  }
  
  .abc-popup__terms {
    font-size: 12px;
  }
}

    .abc-popup__wrapper {
      flex-direction: column;
    }

    .abc-popup__image-side {
      width: 100%;
      height: 200px;
    }
  }

  .abc-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
    transition: all 0.2s;
    z-index: 10;
    border-radius: 50%;
  }

  .abc-popup__close:hover {
    color: #000;
    background: #fff;
  }

  .abc-popup__content {
    flex: 1;
    padding: 40px 30px 30px;
    text-align: center;
    overflow-y: auto;
    max-height: 90vh;
  }

  .abc-popup__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .abc-popup__title--bogo {
    font-size: 28px;
    color: #C8A45C;
  }

  .abc-popup__subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
  }

  /* Lead Magnet Variant Styles - matching live popup */
  .abc-popup__variants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
  }

  @media (max-width: 480px) {
    .abc-popup__variants {
      grid-template-columns: 1fr;
      max-height: 300px;
    }
  }

  .abc-popup__variant {
    padding: 0;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
    text-align: left;
    overflow: hidden;
  }

  .abc-popup__variant-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    position: relative;
  }

  .abc-popup__variant-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .abc-popup__variant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .abc-popup__variant-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .abc-popup__variant-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .abc-popup__variant-notes {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .abc-popup__variant-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .abc-popup__variant-check svg {
    opacity: 0;
    transition: opacity 0.2s;
    color: #fff;
  }

  .abc-popup__variant:hover {
    border-color: #C8A45C;
    box-shadow: 0 2px 8px rgba(200, 164, 92, 0.15);
  }

  .abc-popup__variant.selected {
    border-color: #C8A45C;
    background: #FDF8F3;
  }

  .abc-popup__variant.selected .abc-popup__variant-check {
    background: #C8A45C;
    border-color: #C8A45C;
  }

  .abc-popup__variant.selected .abc-popup__variant-check svg {
    opacity: 1;
  }

  .abc-popup__variant.disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .abc-popup__variant.disabled:hover {
    border-color: #e0e0e0;
    box-shadow: none;
  }

  .abc-popup__selected-count {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px;
  }

  .abc-popup__submit {
    width: 100%;
    padding: 16px 24px;
    background: #C8A45C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.5s ease, transform 0.2s ease;
  }

  .abc-popup__submit--gold {
    background: #C8A45C;
  }

  .abc-popup__submit--gold:hover:not(:disabled) {
    background: #B8944C;
  }

  .abc-popup__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .abc-popup__submit.is-success {
    background: #4CAF50 !important;
    transform: scale(1.02);
  }

  .abc-popup__disclaimer {
    font-size: 11px;
    color: #999;
    margin: 12px 0 0;
    text-align: center;
    line-height: 1.4;
  }

  .abc-popup__error {
    color: #d32f2f;
    font-size: 13px;
    margin: 8px 0 0;
    min-height: 18px;
  }

  /* BOGO Variant Styles */
  .abc-popup__badge {
    display: inline-block;
    background: #C8A45C;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .abc-popup__bogo-details {
    background: #FDF8F3;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
  }

  .abc-popup__bogo-icon {
    color: #C8A45C;
    margin-bottom: 12px;
  }

  .abc-popup__bogo-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
  }

  .abc-popup__discount-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px dashed #C8A45C;
    border-radius: 8px;
    padding: 12px 20px;
  }

  .abc-popup__discount-code span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
  }

  .abc-popup__copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    transition: color 0.2s;
  }

  .abc-popup__copy-btn:hover {
    color: #C8A45C;
  }

  .abc-popup__copy-btn.copied {
    color: #4caf50;
  }

  .abc-popup__terms {
    font-size: 11px;
    color: #999;
    margin: 16px 0 0;
  }

  /* Copy Success Overlay */
  .abc-popup__copy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: copyOverlayFadeIn 0.2s ease-out;
    border-radius: 12px;
  }

  @keyframes copyOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .abc-popup__copy-overlay-content {
    text-align: center;
    animation: copyOverlayPop 0.3s ease-out;
  }

  @keyframes copyOverlayPop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
  }

  .abc-popup__copy-overlay-icon {
    color: #4CAF50;
    margin-bottom: 12px;
  }

  .abc-popup__copy-overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .abc-popup__copy-overlay-text {
    font-size: 14px;
    color: #666;
  }

  /* Success Screen Styles */
  .abc-popup__success {
    text-align: center;
    padding: 20px 0;
  }

  .abc-popup__success-icon {
    color: #4CAF50;
    margin-bottom: 16px;
    animation: successPop 0.4s ease-out;
  }

  @keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
  }

  .abc-popup__success-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
  }

  .abc-popup__success-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
  }

  .abc-popup__success-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
  }

  .abc-popup__success-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #FDF8F3;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
  }

  .abc-popup__success-list li:last-child {
    margin-bottom: 0;
  }

  .abc-popup__success-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #C8A45C;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .abc-popup__success-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
  }

  .abc-popup__progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
  }

  .abc-popup__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 4px;
    transition: width 0.1s linear;
  }
