/** Shopify CDN: Minification failed

Line 464:1 Expected "}" to go with "{"

**/
/*
 * Product Responsive CSS - Mobile/Tablet Optimizations
 * 
 * Purpose: Responsive design optimizations for all screen sizes
 * Dependencies: CSS custom properties from theme
 * Used by: All product page components
 * 
 * Breakpoints:
 * - Mobile: max-width: 749px
 * - Tablet: 750px - 989px  
 * - Desktop: 990px+
 * - Large Desktop: 1200px+
 */

/* ==========================================================================
   MOBILE OPTIMIZATIONS (max-width: 749px)
   ========================================================================== */

@media screen and (max-width: 749px) {
  
  /* Product Layout */
  .product__info-container > * + * {
    margin: 1.5rem 0;
  }

  .product__info-container {
    padding: 0 1.5rem;
  }

  /* Product Title */
  .product__title h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  /* Product Price */
  .price--large .price__regular,
  .price--large .price__sale {
    font-size: 2rem;
  }

  /* Product Media */
  .product__media-list {
    margin-left: -1.5rem;
    margin-bottom: 0.5rem;
    width: calc(100% + 3rem);
  }

  .product__media-wrapper slider-component {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .slider.product__media-list {
    padding-bottom: 0;
  }

  .slider.product__media-list::-webkit-scrollbar {
    height: 0.2rem;
    width: 0.2rem;
  }

  .product__media-list::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-foreground));
  }

  .product__media-list::-webkit-scrollbar-track {
    background-color: rgba(var(--color-foreground), 0.2);
  }

  /* Product Form */
  .product-form__input {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .product-form__buttons {
    max-width: 100%;
  }

  /* Quantity selector styles moved to quantity.css for centralized control */

  /* Variant Picker */
  .product-form__input--pill input[type='radio'] + label {
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
    margin: 0.5rem 0.4rem 0.2rem 0;
  }

  /* Accordion */
  .accordion__title {
    padding: 1.2rem 0;
  }

  .accordion__title-text {
    font-size: 1.5rem;
    gap: 0.8rem;
  }

  .accordion__content {
    padding-bottom: 1.2rem;
    font-size: 1.3rem;
  }

  /* Media Modal */
  .product-media-modal__content {
    padding: 1rem;
  }

  .product-media-modal__toggle {
    top: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    padding: 1rem;
  }

  /* Product Description */
  .product__description {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  /* No Media Layout */
  .product--no-media .product__info-container {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
  }
}

/* ==========================================================================
   TABLET OPTIMIZATIONS (750px - 989px)
   ========================================================================== */

@media screen and (min-width: 750px) and (max-width: 989px) {
  
  /* Product Layout - Optimize for above-the-fold content */
  .product__info-wrapper {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .product__info-container > * + * {
    margin: 1rem 0;
  }

  /* Media Gallery Adjustments */
  .product__media-list .product__media-item:first-child {
    padding-left: 0;
  }

  .product__media-list .product__media-item:last-child {
    padding-right: 0;
  }

  /* Form Optimizations */
  .product-form__input {
    max-width: 100%;
  }

  .product-form__buttons {
    max-width: 100%;
  }

  /* Variant Picker Tablet Adjustments */
  .product-form__input--pill input[type='radio'] + label {
    padding: 0.9rem 1.8rem;
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   DESKTOP OPTIMIZATIONS (750px+)
   ========================================================================== */

@media screen and (min-width: 750px) {
  
  /* Product Layout */
  .product__column-sticky {
    display: block;
    position: sticky;
    top: 3rem;
    z-index: 2;
  }

  .product__info-wrapper {
    padding: 0 0 0 5rem;
  }

  .product__info-wrapper--extra-padding {
    padding: 0 0 0 8rem;
  }

  .product--right .product__info-wrapper {
    padding: 0 5rem 0 0;
  }

  .product--right .product__info-wrapper--extra-padding {
    padding: 0 8rem 0 0;
  }

  .product--right .product__media-wrapper {
    order: 2;
  }

  /* Product Info Container */
  .product__info-container {
    max-width: 60rem;
  }

  .product__info-container > *:first-child {
    margin-top: 0;
  }

  /* Form Buttons */
  .product-form__buttons {
    max-width: 54rem;
  }

  /* Swatch Adjustments */
  .product-form__input--swatch .swatch-input__input + .swatch-input__label {
    --swatch-input--size: 2.8rem;
  }

  /* Media Modal */
  .product-media-modal__content {
    padding-bottom: 2rem;
  }
}

/* ==========================================================================
   LARGE TABLET LAYOUT (897px - 989px)
   ========================================================================== */

@media screen and (min-width: 897px) and (max-width: 989px) {
  
  /* Large Product Layout */
  .product--large:not(.product--no-media) .product__media-wrapper {
    max-width: 60%;
    width: calc(60% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media) .product__info-wrapper {
    max-width: 40%;
    width: calc(40% - var(--grid-desktop-horizontal-spacing) / 2);
    padding: 0 0 0 2rem;
  }

  /* Medium Product Layout */
  .product--medium:not(.product--no-media) .product__media-wrapper {
    max-width: 60%;
    width: calc(60% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--medium:not(.product--no-media) .product__info-wrapper {
    max-width: 40%;
    width: calc(40% - var(--grid-desktop-horizontal-spacing) / 2);
    padding: 0 0 0 2rem;
  }

  /* Small Product Layout */
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
    padding: 0 0 0 1.5rem;
  }
}

/* ==========================================================================
   DESKTOP LAYOUT (990px+)
   ========================================================================== */

@media screen and (min-width: 990px) {
  
  /* Large Product Layout */
  .product--large:not(.product--no-media) .product__media-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media) .product__info-wrapper {
    padding: 0 0 0 4rem;
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media).product--right .product__info-wrapper {
    padding: 0 4rem 0 0;
  }

  /* Medium/Small Product Layout */
  .product--medium:not(.product--no-media) .product__media-wrapper,
  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--medium:not(.product--no-media) .product__info-wrapper,
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  /* Media Optimizations */
  .product-media-modal__content {
    padding: 2rem 11rem;
  }
}

/* ==========================================================================
   LARGE DESKTOP OPTIMIZATIONS (1200px+)
   ========================================================================== */

@media screen and (min-width: 1200px) {
  
  /* Enhanced spacing for large screens */
  .product__info-wrapper {
    padding: 0 0 0 6rem;
  }

  .product--right .product__info-wrapper {
    padding: 0 6rem 0 0;
  }

  /* Larger form elements */
  .product-form__input--pill input[type='radio'] + label {
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
  }

  /* Quantity selector styles moved to quantity.css for centralized control */

  /* Better accordion spacing */
  .accordion__title {
    padding: 2rem 0;
  }

  .accordion__content {
    padding-bottom: 2rem;
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .accordion__title .icon-caret,
  .product-form__input--pill input[type='radio'] + label,

  .accordion__content {
    transition: none;
  }

  .product-v2 .product__accordion[open] .accordion__content {
    animation: none;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  .product-form__input--pill input[type='radio']:checked + label {
    border-width: 3px;
  }

  .accordion__title {
    border-bottom: 2px solid;
  }

  /* Quantity selector styles moved to quantity.css for centralized control */
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .product__media-wrapper {
    display: none;
  }

  .product-form__buttons,
  .product__accordion,
  .share-button {
    display: none;
  }

  .product__info-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .product__title h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .price {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .product__description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* ==========================================================================
   V2 RESPONSIVE ENHANCEMENTS
   ========================================================================== */

/* Enhanced mobile experience */
@media screen and (max-width: 749px) {
  .product-v2 .product-form__input {
    margin-bottom: 2rem;
  }

  .product-v2 .product-form__input .form__label {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .product-v2 .quantity {
  /* All quantity selector styles moved to quantity.css for centralized control */
}

/* Enhanced tablet experience */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .product-v2 .product__info-container {
    padding: 0 2rem;
  }

  .product-v2 .product-form__buttons {
    max-width: 100%;
  }
}

/* Enhanced desktop experience */
@media screen and (min-width: 990px) {
  .product-v2 .product__info-container {
    max-width: 65rem;
  }

  .product-v2 .product-form__input--pill input[type='radio'] + label {
    padding: 1.2rem 2.2rem;
    font-size: 1.4rem;
  }
}