/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 453:0 Unexpected "{"
Line 453:1 Expected identifier but found "%"

**/
{%- style -%}
  .bottom-purchase-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .bottom-purchase-bar.visible {
    transform: translateY(0);
  }
  
  .purchase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 92px;
  }
  
  .product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 300px;
  }
  
  .product-image {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
    background: #f8f9fa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
  }
  
  .product-details {
    min-width: 0;
    flex: 1;
  }
  
  .product-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: rgba(var(--color-foreground), 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .variant-selector {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: wrap;
    max-width: 400px;
    min-height: 52px;
  }
  
  .variant-selector .variant-input {
    min-height: auto;
  }
  
  .variant-selector .swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .variant-selector .swatch:hover {
    transform: scale(1.05);
    border-color: rgba(0, 0, 0, 0.2);
  }
  
  .variant-selector .swatch.selected,
  .variant-selector .swatch:has(input:checked) {
    border-color: rgb(var(--color-foreground));
    box-shadow: 0 0 0 3px rgba(var(--color-foreground), 0.1);
    transform: scale(1.05);
  }
  
  .variant-selector select,
  .variant-selector .variant-select {
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    border: 2px solid rgba(var(--color-foreground), 0.15);
    border-radius: 12px;
    background: rgb(var(--color-background));
    font-size: 1rem;
    font-weight: 500;
    color: rgb(var(--color-foreground));
    cursor: pointer;
    transition: all 0.25s ease;
    height: 52px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
  }

  .variant-selector select:hover,
  .variant-selector .variant-select:hover {
    border-color: rgba(var(--color-foreground), 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .variant-selector select:focus,
  .variant-selector .variant-select:focus {
    outline: none;
    border-color: rgb(var(--color-foreground));
    box-shadow: 0 0 0 3px rgba(var(--color-foreground), 0.1);
  }
  
  .price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 120px;
    min-height: 52px;
    flex: 0 0 auto;
  }
  
  .price {
    font-size: 1.65rem;
    font-weight: 700;
    color: rgb(var(--color-foreground));
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  
  .price--sale {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }
  
  .price--sale .price-item--regular {
    text-decoration: line-through;
    color: rgba(var(--color-foreground), 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    order: 1;
    margin-bottom: 0.25rem;
  }
  
  .price--sale .price-item--sale {
    font-size: 1.65rem;
    font-weight: 700;
    color: #e74c3c;
    order: 2;
  }
  
  .price--sale {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }
  
  .price--sale .price-item--regular {
    text-decoration: line-through;
    color: rgba(var(--color-foreground), 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    order: 1;
    margin-bottom: 0.25rem;
  }
  
  .price--sale .price-item--sale {
    font-size: 1.65rem;
    font-weight: 700;
    color: #e74c3c;
    order: 2;
  }
  
  .purchase-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 180px;
    min-height: 52px;
  }
  
  .btn-add-to-cart {
    background: linear-gradient(135deg, rgb(var(--color-foreground)) 0%, rgba(var(--color-foreground), 0.85) 100%);
    color: rgb(var(--color-background));
    border: none;
    padding: 0.875rem 2.25rem;
    height: 52px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(var(--color-foreground), 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .btn-add-to-cart:hover::before {
    left: 100%;
  }
  
  .btn-add-to-cart:hover {
    background: linear-gradient(135deg, rgba(var(--color-foreground), 0.9) 0%, rgba(var(--color-foreground), 0.8) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-foreground), 0.25);
  }
  
  .btn-add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(var(--color-foreground), 0.2);
  }
  
  .btn-add-to-cart:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  .btn-add-to-cart:disabled::before {
    display: none;
  }
  
  .payment-methods {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(var(--color-foreground), 0.7);
    font-weight: 500;
  }
  
  .payment-icons {
    display: flex;
    gap: 0.25rem;
    align-items: center;
  }
  
  .payment-icon {
    width: 28px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  
  .payment-icon:hover {
    opacity: 1;
  }
  
  .close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(var(--color-foreground), 0.05);
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    color: rgba(var(--color-foreground), 0.6);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
  }
  
  .close-btn:hover {
    background: rgba(var(--color-foreground), 0.1);
    color: rgb(var(--color-foreground));
    transform: scale(1.1);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .purchase-content {
      flex-direction: column;
      gap: 1.5rem;
      padding: 2rem 1.5rem;
      text-align: center;
    }
    
    .product-info {
      justify-content: center;
      max-width: none;
      gap: 1.25rem;
    }
    
    .product-image {
      width: 80px;
      height: 80px;
    }
    
    .product-details h3 {
      font-size: 1.1rem;
      white-space: normal;
      text-align: center;
      line-height: 1.4;
    }
    
    .variant-selector {
      justify-content: center;
      max-width: none;
    }
    
    .variant-selector select,
    .variant-selector .variant-select {
      width: 240px;
      height: 36px;
      padding: 0.875rem 2.5rem 0.875rem 1rem;
      font-size: 1rem;
    }
    
    .price-section {
      align-items: center;
      text-align: center;
      min-height: 48px;
    }
    
    .price {
      font-size: 1.5rem;
    }
    
    .purchase-actions {
      width: 100%;
      min-width: auto;
    }
    
    .btn-add-to-cart {
      width: 100%;
      min-width: auto;
      height: 48px;
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }
    
    .close-btn {
      top: 0.5rem;
      right: 0.5rem;
    }
    
    .payment-methods {
      font-size: 0.8rem;
    }
  }
  
  /* Extra small mobile */
  @media (max-width: 480px) {
    .purchase-content {
      gap: 1.25rem;
      padding: 1.75rem 1rem;
    }
    
    .product-image {
      width: 70px;
      height: 70px;
    }
    
    .product-details h3 {
      font-size: 1rem;
      line-height: 1.3;
    }
    
    .variant-selector select,
    .variant-selector .variant-select {
      width: 220px;
      font-size: 0.95rem;
    }
    
    .price {
      font-size: 1.4rem;
    }
    
    .btn-add-to-cart {
      padding: 0.75rem 1.5rem;
      height: 48px;
      font-size: 0.95rem;
    }
    
    .payment-methods {
      font-size: 0.75rem;
    }
  }
{%- endstyle -%}
