/** Shopify CDN: Minification failed

Line 251:12 Unexpected "{"
Line 251:21 Expected ":"
Line 251:28 Unexpected "{"

**/
/* CRO-Optimized Main Product Section Styles */

/* Premium Visual Hierarchy & Spacing */
.pdp-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product__title h1,
.product__title h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
  color: var(--color-foreground);
}

/* Price Section - Premium Treatment */
.pdp-price-section {
  padding: 1.5rem;
  background: var(--color-background-secondary, #f9f9f9);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price--large {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-foreground);
  letter-spacing: -0.5px;
}

.price-compare {
  font-size: 0.95rem;
  color: var(--color-foreground-secondary, #666);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.price-saving {
  display: inline-block;
  background: #ff4444;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Payment & Trust Section */
.pdp-trust-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.pdp-payment-methods {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-payment-icon {
  width: 40px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pdp-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-foreground-secondary, #666);
}

.pdp-security-badge svg {
  width: 18px;
  height: 18px;
  color: #27ae60;
}

/* Trust & Assurance Benefits */
.pdp-benefits {
  display: grid;
  gap: 0.75rem;
}

.pdp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-foreground-secondary, #666);
}

.pdp-benefit-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pdp-benefit-icon svg {
  width: 100%;
  height: 100%;
  color: #27ae60;
}

/* CTA Button Enhancement */
.product-form__submit {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-form__submit:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.product-form__submit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.product-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Secondary CTA - Buy Now Pay Later */
.pdp-secondary-cta {
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--color-foreground);
  background: transparent;
  color: var(--color-foreground);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-secondary-cta:hover {
  background: var(--color-foreground-alpha-10, rgba(0, 0, 0, 0.05));
}

.pdp-secondary-cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Quantity Selector - Enhanced */
.product-form__input {
  margin: 1rem 0;
}

.quantity {
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quantity__button {
  padding: 0.5rem 0.75rem;
  border: none;
  background: var(--color-background);
  cursor: pointer;
  transition: background 0.2s ease;
}

.quantity__button:hover {
  background: var(--color-background-secondary, #f5f5f5);
}

.quantity__input {
  border: none;
  text-align: center;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}

/* Variant Picker - Premium Treatment */
.product-form__input fieldset {
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 1rem;
  background: var(--color-background);
}

.swatch {
  border-radius: 8px;
  border: 2px solid var(--color-border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.swatch:hover {
  border-color: var(--color-foreground);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swatch[aria-checked="true"] {
  border-color: var(--color-foreground);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Inventory Status - Improved */
#Inventory-{{ section.id }} {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: #f0f8f0;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
}

/* Accordion & Details - Premium Styling */
.product__accordion details {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  transition: all 0.2s ease;
}

.product__accordion details[open] {
  background: var(--color-background-secondary, #f9f9f9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product__accordion summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
  padding: 0;
}

.product__accordion summary:hover {
  color: var(--color-accent);
}

.product__accordion .accordion__content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-foreground-secondary, #666);
  line-height: 1.6;
}

/* Product Description - Optimized Readability */
.product__description {
  color: var(--color-foreground-secondary, #666);
  line-height: 1.7;
  max-width: 60ch;
}

.product__description p {
  margin: 0.75rem 0;
}

.product__description ul,
.product__description ol {
  margin-left: 1.5rem;
  margin-top: 0.75rem;
}

.product__description li {
  margin: 0.5rem 0;
}

/* Mobile Optimization */
@media screen and (max-width: 749px) {
  .pdp-info-container {
    gap: 1.25rem;
  }

  .product__title h1,
  .product__title h2 {
    font-size: 1.5rem;
  }

  .pdp-price-section {
    padding: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .pdp-payment-methods {
    gap: 0.5rem;
  }

  .pdp-payment-icon {
    width: 36px;
    height: 26px;
    font-size: 0.65rem;
  }

  /* Sticky Mobile CTA */
  .pdp-sticky-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 30;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .pdp-sticky-cta-wrapper button {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
  }

  /* Adjust padding for sticky footer */
  .product__form-container {
    padding-bottom: 5rem;
  }

  .pdp-benefits {
    grid-template-columns: 1fr;
  }

  .pdp-payment-methods {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 750px) {
  .pdp-info-container {
    gap: 2rem;
  }

  .pdp-payment-methods {
    justify-content: flex-start;
  }

  .pdp-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Light/Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .pdp-price-section {
    background: var(--color-background-secondary, #1a1a1a);
    border-color: var(--color-border, #333);
  }

  .pdp-payment-icon {
    background: var(--color-background, #0a0a0a);
    border-color: var(--color-border, #333);
  }

  .quantity {
    border-color: var(--color-border, #333);
  }

  .product-form__input fieldset {
    background: var(--color-background);
    border-color: var(--color-border, #333);
  }
}

/* Accessibility - High Contrast Mode Support */
@media (prefers-contrast: more) {
  .pdp-price-section {
    border-width: 2px;
  }

  .pdp-payment-icon {
    border-width: 2px;
  }

  .product-form__submit {
    box-shadow: 0 0 0 2px currentColor;
  }
}

/* Animation Preference Respect */
@media (prefers-reduced-motion: reduce) {
  .product-form__submit,
  .pdp-secondary-cta,
  .quantity__button,
  .swatch,
  .product__accordion details,
  .product__accordion summary {
    transition: none !important;
  }

  @keyframes slideUp {
    from {
      transform: none;
      opacity: 0;
    }
    to {
      transform: none;
      opacity: 1;
    }
  }
}
