.new-main-container {
    display: flex;
    padding-bottom: 150px;
}

.new-main-container * {
    font-family: Onest, sans-serif;
}

.new-main-container .products {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.new-main-container .sidecart {
    flex: 0 0 483px;
}

/* Promo bar */
.new-main-container .products .product-promo-bar {
    background: #fff;
    border-radius: 11px;
    padding: 12px 14px;
    margin: 12px 21px 12px 0;
}

.new-main-container .products .product-promo-bar__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.new-main-container .products .product-promo-bar__content figure {
    margin: 0;
}

.new-main-container .products .product-promo-bar__content img {
    max-width: 24px;
}

.new-main-container .products .product-promo-bar__title {
    color: #292D35;
    margin: 0 13px 0 2px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
}

.new-main-container .products .product-promo-bar__text {
    color: #5A5D63;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
}

.new-main-container .products .product-promo-bar__text span {
    color: #7F8186;
    font-weight: 400;
}

/* Products grid */
.new-main-container .products .products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-right: 21px;
    margin-top: 20px;
}

.new-main-container .products .products__grid .product-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid #EEEEEF;
    overflow: hidden;
}

.new-main-container .products .products__grid .product-card__media {
    padding: 12px 17px;
    background: #fff;
    max-height: 212px;
    margin: 0;
    height: 100%
}

.new-main-container .products .products__grid .product-card__image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.new-main-container .products .products__grid .product-card__content {
    padding: 10px 4px 18px;
}

.new-main-container .products .products__grid .product-card__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.new-main-container .products .products__grid .product-card__meta {
    display: flex;
    padding: 0;
    justify-content: space-between;
    margin-bottom: 6px;
}

.new-main-container .products .products__grid .product-card__meta li {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    position: relative;
    flex: 1;
}

.new-main-container .products .products__grid .product-card__meta li::after {
    content: '';
    width: 1px;
    height: 20px;
    position: absolute;
    right: 0;
    background: #292D35;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
}

.new-main-container .products .products__grid .product-card__meta li:last-child:after {
    display: none;
}

.new-main-container .products .products__grid .product-card__meta span {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #7F8186;
}

.new-main-container .products .products__grid .product-card__meta strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #292D35;
}

.new-main-container .products .products__grid .product-tooltip {
    width: fit-content;
    position: relative;
    line-height: 1;
}

.new-main-container .products .products__grid .product-tooltip .tooltip-icon {
    padding: 0;
    background: transparent;
    border: none;
    padding-left: 6px;
}

.new-main-container .products .products__grid .product-tooltip__label {
    display: flex;
    align-items: center;
    color: #5A5D63;
}

.new-main-container .products .products__grid .product-tooltip .tooltip-message {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 180px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #292D35;
    padding: 5px;
    transition: all .3s ease;
}

.new-main-container .products .products__grid .product-tooltip .tooltip-message p {
    line-height: 1.1;
}

.new-main-container .products .products__grid .product-tooltip:hover .tooltip-message {
    display: block;
    opacity: 1;
}

.new-main-container .products .products__grid .product-card__offers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.new-main-container .products .products__grid .product-card__offers .offer {
    padding: 10px;
    background: #fff;
    border-radius: 50px;
    color: #557420;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.4px !important;
    text-transform: uppercase;
    border: none;
}

.new-main-container .products .products__grid .product-card__add {
    padding: 14px 44px;
    background: #A8D852;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    width: 100%;
}

/* Product modal */
.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 9999;
    inset: 0;
    transform: none;
}

.modal * {
    font-family: Onest, sans-serif;
}

.modal.is-open {
    display: block;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.modal__panel {
    position: relative;
    max-width: 777px;
    margin: 0 auto;
    background: #fff;
    padding: 12px;
    padding-right: 27px;
    border-radius: 12px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 18px;
    overflow: hidden;
}

.modal__image {
    flex: 1;
}

.modal__image img {
    width: 100%;
    background: #F6F7F7;
}

.modal__content {
    max-width: 320px;
    flex: 1;
    padding: 9px 0;
}

.modal__content .modal__product-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.modal-product-card__meta {
    display: flex;
    padding: 0;
    justify-content: space-between;
    margin-bottom: 6px;
}

.modal-product-card__meta li {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    position: relative;
    flex: 1;
}

.modal-product-card__meta li::after {
    content: '';
    width: 1px;
    height: 20px;
    position: absolute;
    right: 0;
    background: #292D35;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
}

.modal-product-card__meta li:last-child:after {
    display: none;
}

.modal-product-card__meta span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #7F8186;
}

.modal-product-card__meta strong {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #292D35;
}

.modal-product-info p {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #292D35;
}

.modal-product-info span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #7F8186;
}

.modal__close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
}

.modal-product-card__offers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.modal-product-card__offers .offer {
    padding: 12px 14px;
    background: #F8FCF1;
    border-radius: 50px;
    color: #557420;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    border: none;
}

.moda-product__quantity-control {
    padding: 6px;
    background: #292D35;
    border-radius: 50px;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.moda-product__quantity-control .qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFFFFF26;
    font-size: 30px;
    border: none;
    color: white;
    font-weight: 200;
}

.moda-product__quantity-control .qty-plus {
    background: #A8D852;
    color: #292D35;
}

.moda-product__quantity-control .qty-label {
    background: transparent;
    flex: 1;
    padding: 10px 0;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #A8D852;
}

.products-grid {
    width: 62%;
}

.order-page-layout {
    flex-wrap: wrap;
}



@media (max-width: 1599px) {
    .new-main-container .sidecart {
        flex-basis: 25%;
    }
}

@media (max-width: 1199px) {
    .new-main-container .products .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-main-container .sidecart {
        flex-basis: 30%;
    }
}

@media (max-width: 811px) {
    .modal__panel {
        flex-direction: column;
        max-width: 388px;
        padding: 0;
    }

    .modal__close {
        top: 2px;
        right: 6px;
    }

    .modal__content {
        padding: 10px 18px 18px;
        max-width: none;
    }

    .modal__image img {
        max-height: 212px;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .new-main-container .products .products__grid {
        gap: 16px;
        margin-right: 0;
    }
    .new-main-container .products .products__grid .product-card__content {
        padding: 8px 10px;
    }
    .new-main-container {
        flex-direction: column;
    }

    .new-main-container .sidecart {
        flex-basis: 100%;
    }

    .new-main-container .products .products__grid .product-card__meta span {
        font-size: 10px;
        line-height: 14px;
    }

    .new-main-container .products .products__grid .product-card__meta strong {
        font-size: 12px;
        line-height: 17px;
    }

    .new-main-container .products .products__grid .product-card__add {
        padding: 14px 10px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .new-main-container .products .products__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .new-main-container .products .products__grid .product-card__media {
        max-height: 150px;
    }
}

/* Filter drawer Overlay */
.filter-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}

/* Drawer */
.filter-drawer {
    position: fixed;
    left: -280px;
    width: 280px;
    height: 70vh;
    bottom: 0;
    background: #fff;
    padding: 16px 20px 16px 50px;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.filter-drawer h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.filter-drawer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-drawer.is-open {
    left: 0;
}

.filter-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.filter-drawer .filter-section label {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.filter-drawer .filter-section label input {
    margin: 0;
}


.filter-drawer .filter-section h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.filter-drawer .filter-section input[type="checkbox"] {
    accent-color: #557420;
    width: 22px;
    height: 22px;
    border-radius: 8px;
}

input[type="range"] {
    background:
        linear-gradient(#DA2424, #DA2424) 0/0% 100% no-repeat,
        #e5e5e5;
}


/* Close button */
.drawer-close {
    all: unset;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Filter sections */
.filter-section h4 {
    margin-bottom: 10px;
}

.filter-section label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    cursor: pointer;
}

/* Selected filters */
.product-filters {
    border-top: 1px solid #EEEEEF;
    border-bottom: 1px solid #EEEEEF;
    position: relative;
}

.product-filters::before {
    content: '';
    width: 100%;
    height: calc(100% + 2px);
    background: #fff;
    position: absolute;
    top: -1px;
    right: 100%;
    border-top: 1px solid #EEEEEF;
    border-bottom: 1px solid #EEEEEF;
}

.product-filters .filters-list {
    display: flex;
    background: #fff;
}

.product-filters .filters-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    list-style-type: none;
    overflow-x: auto;
    scrollbar-width: none;
    padding-right: 20px;
}

.product-filters .filters-list ul::-webkit-scrollbar {
    display: none;
}

.product-filters .filters-list li {
    padding: 17px 10px;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    align-content: center;
    min-width: 82px;
    text-align: center;
    transition: all .3s ease;
    border-bottom: 1px solid transparent;
    flex: 0 0 auto;
    text-transform: capitalize;
}

.product-filters .filters-list li:hover {
    background: rgb(218, 36, 36, 0.05);
    color: #DA2424;
    border-bottom: 1px solid #DA2424;
    cursor: pointer;
}

.filters-list li.selected {
    background: rgb(218, 36, 36, 0.05);
    color: #DA2424;
    border-bottom: 1px solid #DA2424;
}

.product-filters .filters-list .open-filters {
    background: transparent;
    border: none;
    padding: 13px 30px 13px 0;
    display: flex;
    align-items: center;
    font-family: Onest;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    gap: 6px;
    border-right: 1px solid #EEEEEF;
}

.product-filters .filters-list .open-filters::before {
    content: '';
    background: url(../img/category-2.png);
    width: 20px;
    height: 20px;
    display: inline-block;
}

.product-filters .filters-list ul {
    display: flex;
}



.order-page-layout {
    display: flex;
    gap: 30px;
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
}

.products-grid {
    flex: 1;
}

.cart-sidebar-column {
    width: 480px;
    flex-shrink: 0;
}

.products__grid.is-loading {
    opacity: 0.5;
    pointer-events: none;
}
/* Spinner animado */

.new-main-container .products .product-promo-bar {
    margin-top: 0;
}

.new-main-container .products .products__grid .product-card__offers .offer span.woocommerce-Price-amount.amount {
    color: #557420;
}

.new-main-container .products .products__grid .product-card__title {
    padding-left: 10px;
}

.new-main-container .products .products__grid .product-tooltip {
    padding-left: 10px;
}

button.tooltip-icon text {
    font-weight: 700;
}

button.tooltip-icon circle {
    stroke-width: 2px;
}

ul.product-card__meta.nometadata {
    height: 71px;
}

.product-card__media[data-open-modal],
.product-card__title[data-open-modal] {
    cursor: pointer;
}

.product-card__media[data-open-modal]:hover {
    opacity: 0.9;
}

.product-card__title[data-open-modal]:hover {
    color: #7C9453;
}



.dual-range-slider input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}
.dual-range-slider input.range-min {
    z-index: 2;
}

.dual-range-slider input.range-max {
    z-index: 1;
}

.dual-range-slider input[type="range"]:focus {
    z-index: 3;
}

.filter-section--categories {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.filter-section--ranges {
    padding-top: 8px;
}

/* Scrollbar for categories */
.filter-section--categories::-webkit-scrollbar {
    width: 6px;
}

.filter-section--categories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.filter-section--categories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.filter-section--categories::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.dual-range-field {
    margin-top: 11px;
}

.dual-range-field h5 {
    margin-bottom: 0 !important;
}

/* ============================================
   Single Range Sliders - Filter Drawer
   ============================================ */

.filter-section--ranges {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
}

.range-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.range-value {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Range Input Styling */
.range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #7C9453 0%, #7C9453 100%);
    outline: none;
    cursor: pointer;
}

.range-input::-webkit-slider-track {
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-top: -7px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.range-input::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

/* Firefox */
.range-input::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.range-input::-moz-range-progress {
    background: #7C9453;
    height: 6px;
    border-radius: 3px;
}

/* Focus state */
.range-input:focus {
    outline: none;
}

.range-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(124, 148, 83, 0.3);
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.btn-apply-filters {
    flex: 1;
    padding: 12px 20px;
    background: #7C9453;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-apply-filters:hover {
    background: #6a8046;
}

.btn-reset-filters {
    padding: 12px 20px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-reset-filters:hover {
    background: #e8e8e8;
}


/* ============================================
   Filter Drawer & Dual Range Sliders
   Add this to cart-sidebar.css
   ============================================ */

/* Filter Drawer Overlay */
.filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.filter-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Filter Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filter-drawer.open {
    left: 0;
}

.filter-drawer h3 {
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.drawer-close:hover {
    background: #e0e0e0;
}

.filter-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Categories Section */
.filter-section--categories {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.filter-section--categories label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.filter-section--categories input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7C9453;
}

/* Range Sliders Section */
.filter-section--ranges {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 20px;
}

/* Dual Range Container */
.dual-range-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dual-range-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Dual Range Wrapper - This holds both inputs */
.dual-range-wrapper {
    position: relative;
    height: 6px;
    margin: 12px 0;
}

/* Track - Gray background */
.dual-range-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    z-index: 1;
}

/* Selected Range - Green bar between thumbs */
.dual-range-selected {
    position: absolute;
    top: 0;
    height: 6px;
    background: #7C9453;
    border-radius: 3px;
    z-index: 2;
}

/* Both range inputs */
.dual-range-wrapper input[type="range"] {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    margin: 0;
    padding: 0;
}

/* Remove default track */
.dual-range-wrapper input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 6px;
    background: transparent;
}

.dual-range-wrapper input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}

/* Thumb styling - WebKit */
.dual-range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 0px;
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

/* Thumb styling - Firefox */
.dual-range-wrapper input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
}

.dual-range-wrapper input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Focus state */
.dual-range-wrapper input[type="range"]:focus {
    outline: none;
}

.dual-range-wrapper input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(124, 148, 83, 0.3);
}

/* Ensure max slider is above min for proper interaction */
.dual-range-wrapper .dual-range-max {
    z-index: 4;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.btn-apply-filters {
    flex: 1;
    padding: 14px 20px;
    background: #7C9453;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-apply-filters:hover {
    background: #6a8046;
}

.btn-reset-filters {
    padding: 14px 20px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-reset-filters:hover {
    background: #e8e8e8;
}

/* Open Filters Button */
.open-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.open-filters:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-drawer {
        width: 100%;
        max-width: 100%;
        left: -100%;
    }
    
    .filter-drawer.open {
        left: 0;
    }
}


/* ============================================
   Filter Drawer & Dual Range Sliders
   Add this to cart-sidebar.css
   ============================================ */

/* Filter Drawer Overlay */
.filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.filter-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Filter Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filter-drawer.open {
    left: 0;
}

.filter-drawer h3 {
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.drawer-close:hover {
    background: #e0e0e0;
}

.filter-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Categories Section */
.filter-section--categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.filter-section--categories label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.filter-section--categories input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7C9453;
}

/* Range Sliders Section */
.filter-section--ranges {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 20px;
}

/* Dual Range Container */
.dual-range-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dual-range-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Dual Range Wrapper */
.dual-range-wrapper {
    position: relative;
    height: 6px;
    margin: 10px 0 8px 0;
}

/* Track - Gray background */
.dual-range-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    z-index: 1;
}

/* Selected Range - Green bar between thumbs */
.dual-range-selected {
    position: absolute;
    top: 0;
    height: 6px;
    background: #7C9453;
    border-radius: 3px;
    z-index: 2;
}

/* Both range inputs */
.dual-range-wrapper input[type="range"] {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    margin: 0;
    padding: 0;
}

/* Remove default track */
.dual-range-wrapper input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 6px;
    background: transparent;
}

.dual-range-wrapper input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}

/* Thumb styling - WebKit */
.dual-range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 0px;
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

/* Thumb styling - Firefox */
.dual-range-wrapper input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
}

.dual-range-wrapper input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Focus state */
.dual-range-wrapper input[type="range"]:focus {
    outline: none;
}

.dual-range-wrapper input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(124, 148, 83, 0.3);
}

/* Ensure max slider is above min for proper interaction */
.dual-range-wrapper .dual-range-max {
    z-index: 4;
}

/* Value Labels Below Slider */
.dual-range-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
    position: relative;
}

.dual-range-values .range-val-min,
.dual-range-values .range-val-max {
    font-size: 13px;
    font-weight: 600;
    color: #7C9453;
    min-width: 40px;
    padding: 2px 6px;
    background: #f5f7f2;
    border-radius: 4px;
    text-align: center;
}

.dual-range-values .range-val-min {
    text-align: left;
}

.dual-range-values .range-val-max {
    text-align: right;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.btn-apply-filters {
    flex: 1;
    padding: 14px 20px;
    background: #7C9453;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-apply-filters:hover {
    background: #6a8046;
}

.btn-reset-filters {
    padding: 14px 20px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-reset-filters:hover {
    background: #e8e8e8;
}

/* Open Filters Button */
.open-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.open-filters:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-drawer {
        width: 100%;
        max-width: 100%;
        left: -100%;
    }
    
    .filter-drawer.open {
        left: 0;
    }
}



@media (min-width: 1600px) {
    .order-page-layout {
        max-width: 1600px;
    }
}



/* ============================================
   Filter Drawer & Dual Range Sliders
   Add this to cart-sidebar.css
   ============================================ */

/* Filter Drawer Overlay */
.filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.filter-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Filter Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filter-drawer.open {
    left: 0;
}

.filter-drawer h3 {
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.drawer-close:hover {
    background: #e0e0e0;
}

.filter-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Categories Section */
.filter-section--categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.filter-section--categories label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.filter-section--categories input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7C9453;
}

/* Range Sliders Section */
.filter-section--ranges {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 20px;
}

/* Dual Range Container */
.dual-range-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dual-range-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Dual Range Wrapper */
.dual-range-wrapper {
    position: relative;
    height: 6px;
    margin: 10px 0 8px 0;
}

/* Track - Gray background */
.dual-range-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    z-index: 1;
}

/* Selected Range - Green bar between thumbs */
.dual-range-selected {
    position: absolute;
    top: 0;
    height: 6px;
    background: #7C9453;
    border-radius: 3px;
    z-index: 2;
}

/* Both range inputs */
.dual-range-wrapper input[type="range"] {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    margin: 0;
    padding: 0;
}

/* Remove default track */
.dual-range-wrapper input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 6px;
    background: transparent;
}

.dual-range-wrapper input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}

/* Thumb styling - WebKit */
.dual-range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 0px;
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.dual-range-wrapper input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

/* Thumb styling - Firefox */
.dual-range-wrapper input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C9453;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    pointer-events: auto;
}

.dual-range-wrapper input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Focus state */
.dual-range-wrapper input[type="range"]:focus {
    outline: none;
}

.dual-range-wrapper input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(124, 148, 83, 0.3);
}

/* Ensure max slider is above min for proper interaction */
.dual-range-wrapper .dual-range-max {
    z-index: 4;
}

/* Value Labels Below Slider */
.dual-range-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
    position: relative;
}

.dual-range-values .range-val-min,
.dual-range-values .range-val-max {
    font-size: 13px;
    font-weight: 600;
    color: #7C9453;
    min-width: 40px;
    padding: 2px 6px;
    background: #f5f7f2;
    border-radius: 4px;
    text-align: center;
}

.dual-range-values .range-val-min {
    text-align: left;
}

.dual-range-values .range-val-max {
    text-align: right;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.btn-reset-filters:hover {
    background: #e8e8e8;
}

/* Open Filters Button */
.open-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.open-filters:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

button.btn-apply-filters {
    line-height: 15px;
}

button.btn-reset-filters {
    line-height: 15px;
}

.filter-drawer.open {
    padding-top: 80px;
}

label.dual-range-label {
    margin-bottom: 0 !important;
}

.filter-drawer-content {
    padding-left: 0;
}

.filter-drawer h3 {
    padding-left: 0;
}

.product-card__offers {
    pointer-events: none !important;
}

.filter-drawer-content {
    display: block;
}

.product-card__offers {
    flex-direction: column;
}

button.offer.offer--onetime {
    background: transparent !important;
}

.product-card__offers button.offer.offer--subscription {
    font-size: 17px !important;
}

.new-main-container .products .products__grid .product-card__offers {
    width: 250px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 12px;
}

/*.product-card__offers button.offer.offer--subscription {*/
/*    border-bottom: 2px solid #cfdbba !important;*/
/*}*/

.new-main-container .products .products__grid .product-card__offers {
    gap: 4px;
}

button.offer.offer--onetime {
    color: #000 !important;
}

button.offer.offer--onetime span {
    color: #000 !important;
}







/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-drawer {
        width: 100%;
        max-width: 100%;
        left: -100%;
    }
    
    .filter-drawer.open {
        left: 0;
    }
    .filter-section.filter-section--ranges {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .dual-range-container {
        flex: 1 0 45%;
    }
    .filter-drawer {
        padding-left: 30px !important;
    }
    .filter-drawer.open {
        padding-top: 7px;
    }
    body .drawer-close {
        margin-top: 0;
    }
    .filter-section--ranges {
        gap: 8px;
        padding-bottom: 0;
    }
    .dual-range-values .range-val-min, .dual-range-values .range-val-max {
        font-size: 10px;
        min-width: 31px;
        padding: 0px 6px;
    }
    .dual-range-container {
        gap: 3px;
    }
    .filter-drawer-content {
        gap: 0;
    }
    .filter-section--categories {
        max-height: 115px;
    }
}



.product-card__actions {
    position: relative;
    width: 100%;
}


.product-card__qty-control {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #292D35;
    border-radius: 50px;
    padding: 6px;
    width: 100%;
}


.product-card__qty-control.has-items {
    display: flex;
}

/* When qty control is visible, hide the add button */
.product-card__actions .product-card__add {
    display: block;
}

.product-card__actions .product-card__qty-control[style*="display: flex"] + .product-card__add,
.product-card__actions .product-card__qty-control.has-items ~ .product-card__add {
    display: none;
}


.product-card__qty-control .qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}

.product-card__qty-control .qty-minus {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.product-card__qty-control .qty-minus:hover {
    background: rgba(255, 255, 255, 0.25);
}

.product-card__qty-control .qty-plus {
    background: #A8D852;
    color: #292D35;
}

.product-card__qty-control .qty-plus:hover {
    background: #b8e562;
    transform: scale(1.05);
}


.product-card__qty-control .qty-label {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #A8D852;
    padding: 10px 0;
}

.product-card__qty-control.has-items {
    display: flex !important;
}

@media (max-width: 767px) {
    .product-card__qty-control {
        padding: 4px;
    }
    
    .product-card__qty-control .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .product-card__qty-control .qty-label {
        font-size: 12px;
        padding: 8px 0;
    }
}

/* Actions Container */
.product-card__actions {
    position: relative;
    width: 100%;
}

/* Quantity Control (hidden by default) */
.product-card__qty-control {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #292D35;
    border-radius: 50px;
    padding: 4px;
    width: 100%;
}

/* Show when has items */
.product-card__qty-control.has-items {
    display: flex;
}

/* When qty control is visible, hide the add button */
.product-card__actions .product-card__add {
    display: block;
}

.product-card__actions .product-card__qty-control[style*="display: flex"] + .product-card__add,
.product-card__actions .product-card__qty-control.has-items ~ .product-card__add {
    display: none;
}

/* Quantity Buttons */
.product-card__qty-control .qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}

.product-card__qty-control .qty-minus {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.product-card__qty-control .qty-minus:hover {
    background: rgba(255, 255, 255, 0.25);
}

.product-card__qty-control .qty-plus {
    background: #A8D852;
    color: #292D35;
}

.product-card__qty-control .qty-plus:hover {
    background: #b8e562;
    transform: scale(1.05);
}

/* Quantity Label */
.product-card__qty-control .qty-label {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #A8D852;
    padding: 3px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
}

/* ============================================
   Loading State
   ============================================ */

/* Loading state - disable buttons */
.product-card__qty-control.is-loading .qty-btn {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Spinner Animation */
.qty-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(168, 216, 82, 0.3);
    border-top-color: #A8D852;
    border-radius: 50%;
    animation: qty-spin 0.8s linear infinite;
}

@keyframes qty-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Also add loading state for the ADD TO ORDER button */
.product-card__add.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.product-card__add.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(41, 45, 53, 0.3);
    border-top-color: #292D35;
    border-radius: 50%;
    animation: qty-spin 0.8s linear infinite;
}

.product-card__qty-control.has-items {
    margin-top: 0px;
}

/*.cart-sidebar__summary {*/
/*    top: 0;*/
/*}*/


a.cart-sidebar__checkout-btn.is-disabled {
    background: #BDBEC0 !important;
}

aside.removemin_d .cart-sidebar__summary::before {
    background: transparent;
}

.new-main-container .products .products__grid .product-tooltip .tooltip-message {
    z-index: 100000;
}


span#cart-sidebar-original-price {
    text-decoration: line-through;
    color: #7F8186 !important;
}

span#cart-sidebar-original-price * {
    color: #7F8186 !important;
}

span#cart-sidebar-total bdi * {
    color: #557420 !important;
}

span#cart-sidebar-total bdi {
    color: #557420 !important;
}


/* MSH 2026-04-23: UserWay position override moved to style.css for site-wide effect. Previously scoped here (desktop) + mobile @media below. */
.cart-sidebar__qty-value {
    font-size: 12px;
    height: 24px;
    display: flex;
}


.cart-sidebar__item-name {
    font-size: 14px;
}

.new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
    background: transparent;
    border: 1px solid #8fb746;
    padding: 15px;
    border-radius: 6px;
}

.new-main-container .products .products__grid .product-card__offers .offer.offer--subscription span.woocommerce-Price-amount.amount {
    display: block;
    color: #000 !important;
}

.new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
    color: #000;
    font-weight: 400;
}

.product-card__offers button.offer.offer--subscription {
    font-size: 13px !important;
    text-transform: capitalize !important;
}

.product-card__offers button.offer.offer--subscription span.woocommerce-Price-amount.amount {
    font-size: 20px;
    margin-bottom: 12px;
}

.product-card__offers button.offer.offer--subscription span.woocommerce-Price-amount.amount {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}


.new-main-container .products .products__grid .product-card__image {
    width: 124%;
    height: 124%;
    object-fit: contain;
    object-position: center center;
    top: -31px;
    position: relative;
}

.product-tooltip {
    display: none;
}

.new-main-container .products .products__grid .product-card__content {
    z-index: 1;
    position: relative;
    background: #f6f7f7;
}




/* Mobile Responsive */
@media (max-width: 767px) {
    .product-card__qty-control {
        padding: 4px;
    }
    
    .product-card__qty-control .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .product-card__qty-control .qty-label {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .qty-spinner {
        width: 16px;
        height: 16px;
    }
    aside#cart-sidebar.is-expanded .cart-sidebar__summary {
        top: -8px;
    }
    .product-card__offers button.offer.offer--subscription {
        font-size: 12px !important;
    }
    .new-main-container .products .products__grid .product-card__offers {
        width: 100%;
    }
    /* MSH 2026-04-23: mobile UserWay override removed; global rule in style.css handles both viewports. */
    }
    .new-main-container .products .products__grid .product-card__image {
        top: -21px;
    }

