@media all and (min-width: 1199px) {
    .product-hero-contents.content-sticky-section {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-flow: row;
        align-items: center;
        justify-content: start;
        border-radius: 0;
        padding: 12px 0;
        max-width: 1420px;
        margin: 0 auto;
        border-bottom: 1px solid #CBD5E180;
        gap: 0 !important;
    }
    
    /* Add spacing between individual elements */
    .product-hero-contents.content-sticky-section > *:not(:first-child):not(:nth-child(2)):not(:last-child) {
        margin-left: 20px;
    }
    
    /* Remove margin from product name if it's the second element */
    .product-hero-contents.content-sticky-section .product-name {
        margin-left: 0;
    }
    
    /* Add spacing between form elements */
    .product-hero-contents.content-sticky-section .flex.max-xs\:flex-col.gap-2 > * {
        margin-left: 10px;
    }

    .product-hero-contents.content-sticky-section h2 {
        font-size: 20px;
    }

    .product-hero-contents.content-sticky-section .flex.max-xs\:flex-col.gap-2 {
        margin-left: auto;
        gap: 8px !important;
        display: flex;
        flex-direction: row !important;
        align-items: center;
    }

    .product-hero-contents.content-sticky-section .hide-on-sticky {
        display: none;
    }

    /* Hide in-stock and out-of-stock indicators in sticky mode */
    .product-hero-contents.content-sticky-section #product_in_stock_tag,
    .product-hero-contents.content-sticky-section #product_out_of_stock_tag {
        display: none !important;
    }

    .product-hero-contents.content-sticky-section .product-attributes {
        padding: 0 0 0 20px;
        border: none;
        border-left: 1px solid #eaeaea;
        margin: 0 0 0 20px;
    }

    .product-hero-contents.content-sticky-section .product-add-to-cart-button {
        padding: 0 50px;
        margin-left: 5px;
        white-space: nowrap;
        height: 52px !important;
        line-height: 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px !important;
    }

    .product-hero-contents.content-sticky-section .quantity-selector-container {
        height: 52px !important;
        min-height: 52px !important;
        display: flex;
        align-items: center;
    }

    .product-hero-contents.content-sticky-section .single-product-quantity-minus,
    .product-hero-contents.content-sticky-section .single-product-quantity-plus {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-hero-contents.content-sticky-section .single-product-quantity {
        font-size: 14px;
    }

    .product-hero-contents.content-sticky-section .product-name,
    .product-hero-contents.content-sticky-section .oxiline-product-price-wrapper .price {
        font-size: 18px;
    }

    .product-hero-contents.content-sticky-section .product-add-to-cart-button {
        font-size: 16px;
    }

    .product-hero-contents.content-sticky-section .oxiline-product-price-wrapper .sale-percentage {
        font-size: 12px;
    }

    .product-hero-contents.content-sticky-section:before, 
    .product-hero-contents.content-sticky-section:after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: -1;
        width: 50vw;
        height: 100%;
        left: -50vw;
        border-bottom: 1px solid #CBD5E180;
        bottom: -1px;
    }

    .product-hero-contents.content-sticky-section:after {
        left: auto;
        right: -50vw;
    }
}

/* General styles for quantity selector that apply to all screen sizes */
.quantity-selector-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 0;
    margin: 0;
    height: 100%;
    outline: none;
    -moz-appearance: textfield; /* Remove spinner in Firefox */
}

/* Remove spinner buttons for Webkit browsers */
.single-product-quantity::-webkit-outer-spin-button,
.single-product-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product-quantity-minus,
.single-product-quantity-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

/* Tablet styles for sticky cart */
@media all and (min-width: 768px) and (max-width: 1198px) {
    .product-hero-contents.content-sticky-section {
        position: static;
        background: #fff;
        z-index: 999;
        border-radius: 16px;
        box-shadow: none;
        padding: inherit;
    }

    .product-hero-contents.content-sticky-section .hide-on-sticky {
        display: block;
    }
}

/* Mobile styles - removing sticky functionality */
@media all and (max-width: 767px) {
    .product-hero-contents.content-sticky-section {
        position: static;
        box-shadow: none;
        padding: inherit;
    }
    
    .product-hero-contents.content-sticky-section .hide-on-sticky {
        display: block;
    }
}
