.ss-hero {
        position: relative;
        overflow: hidden;
        margin-bottom: 5rem;
        /* break out of content-for-layout side padding */
        margin-left: -16px;
        margin-right: -16px;
    }

    @media (min-width: 750px) {
        .ss-hero {
            margin-left: -32px;
            margin-right: -32px;
        }
    }

    .ss-hero__inner {
        position: relative;
        height: calc(100vh - 100px);
        min-height: 520px;
        max-height: 860px;
    }

    @media (min-width: 768px) {
        .ss-hero__inner {
            min-height: 600px;
            max-height: 900px;
        }
    }

    .ss-hero__media {
        position: absolute;
        inset: 0;
    }

    .ss-hero__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    @media (min-width: 768px) {
        .ss-hero__image {
            object-position: center center;
        }
    }

    /* Mobile: text at top center, white */
    .ss-hero__content {
        position: absolute;
        top: 7%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0 24px;
        color: #fff;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Desktop: text vertically centered on left third, white */
    @media (min-width: 768px) {
        .ss-hero__content {
            top: 50%;
            transform: translateY(-50%);
            left: 8%;
            width: auto;
            max-width: 420px;
            text-align: left;
            align-items: flex-start;
            padding: 0;
            color: #fff;
        }
    }

    .ss-hero__title {
        font-size: 3rem;
        line-height: 1.08;
        font-weight: 400;
        margin: 0 0 1.2rem;
        color: #fff;
        letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
        .ss-hero__title {
            font-size: 4.8rem;
            margin: 0 0 1.6rem;
        }
    }

    .ss-hero__description {
        font-size: 1.4rem;
        line-height: 1.45;
        margin: 0 0 2.4rem;
        color: #fff;
        opacity: 0.95;
    }

    @media (min-width: 768px) {
        .ss-hero__description {
            font-size: 1.6rem;
            margin: 0 0 3rem;
        }
    }

    /* White pill button on both mobile and desktop, matches reference */
    .ss-hero__btn {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        background: #fff;
        color: #000;
        padding: 1.3rem 2.4rem;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-decoration: none;
        border: 1.5px solid #fff;
        transition: background 0.2s, color 0.2s;
    }

    .ss-hero__btn:hover {
        background: transparent;
        color: #fff;
    }

    .ss-hero__btn svg {
        transition: transform 0.2s;
    }

    .ss-hero__btn:hover svg {
        transform: translateX(4px);
    }

/* ===== BEST SELLERS SLIDER STYLES ===== */
    .best-sellers-section {
        padding: 5rem 0;
        overflow: hidden;
    }

    .best-sellers__container {
        max-width: 100%;
        padding: 0 1rem;
    }

    @media (min-width: 768px) {
        .best-sellers__container {
            padding: 0 1rem;
        }
    }

    @media (min-width: 992px) {
        .best-sellers__container {
            padding: 0 1rem;
        }
    }

    .best-sellers__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2.5rem;
    }

    .best-sellers__title {
        font-size: 2.4rem;
        font-weight: 400;
        margin: 0;
        letter-spacing: -0.01em;
    }

    @media (min-width: 992px) {
        .best-sellers__title {
            font-size: 3.2rem;
        }
    }

    .best-sellers__link {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-decoration: underline;
        text-underline-offset: 4px;
        color: #000;
    }

    .best-sellers__link:hover {
        opacity: 0.6;
    }

    /* Slider */
    .best-sellers__slider-wrapper {
        overflow: visible;
        margin-right: -1.6rem;
    }

    @media (min-width: 768px) {
        .best-sellers__slider-wrapper {
            margin-right: -2.4rem;
        }
    }

    @media (min-width: 992px) {
        .best-sellers__slider-wrapper {
            margin-right: -3.2rem;
        }
    }

    .best-sellers__slider {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
    }

    .best-sellers__slider::-webkit-scrollbar {
        display: none;
    }

    /* Product Card */
    .best-sellers__product {
        flex: 0 0 calc(67.5% - 2px);
        min-width: calc(67.5% - 2px);
    }

    @media (min-width: 576px) {
        .best-sellers__product {
            flex: 0 0 calc(33.333% - 3px);
            min-width: calc(33.333% - 3px);
        }
    }

    @media (min-width: 768px) {
        .best-sellers__product {
            flex: 0 0 calc(25% - 3px);
            min-width: calc(25% - 3px);
        }
    }

    @media (min-width: 992px) {
        .best-sellers__product {
            flex: 0 0 calc(20% - 3px);
            min-width: calc(20% - 3px);
        }
    }



    .best-sellers__product-wrapper {
        height: 100%;
    }

    .best-sellers__product-image {
        position: relative;
        background-color: #f5f5f5;
        padding-top: 100%;
        overflow: hidden;
    }

    .best-sellers__product-image a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .best-sellers__product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Badges */
    .best-sellers__badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #fff;
        border-radius: 2px;
        font-size: 8px;
        letter-spacing: 0.7px;
        line-height: 1;
        padding: 0.25rem 0.25rem 0.125rem 0.3125rem;
        text-transform: uppercase;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .best-sellers__badge {
            font-size: 12px;
            left: 10px;
            top: 10px;
            line-height: 13.2px;
            padding: 0.25rem 0.25rem 0.125rem;
        }
    }

    .best-sellers__savings {
        position: absolute;
        top: 8px;
        right: 8px;
        background-color: #fff;
        border-radius: 2px;
        font-size: 9px;
        letter-spacing: 0.48px;
        line-height: 1;
        padding: 0.25rem 0.25rem 0.125rem 0.3125rem;
        text-transform: uppercase;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .best-sellers__savings {
            font-size: 12px;
            line-height: 13.2px;
            padding: 0.25rem 0.25rem 0.125rem;
            right: 10px;
            top: 10px;
        }
    }

    .best-sellers__tag {
        position: absolute;
        bottom: 8px;
        left: 8px;
        color: #989898;
        font-size: 8px;
        letter-spacing: 0.7px;
        line-height: 1;
        text-transform: uppercase;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .best-sellers__tag {
            bottom: 10px;
            font-size: 12px;
            left: 10px;
        }
    }

    /* Add to Cart */
    .best-sellers__add-form {
        position: relative;
        z-index: 3;
    }

    .best-sellers__add-btn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: auto;
        height: auto;
        border-radius: 50%;
        padding: 0;
        line-height: 0;
        opacity: 1;
        transition: opacity 0.2s linear;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    @media (min-width: 768px) {
        .best-sellers__add-btn {
            bottom: 10px;
            right: 10px;
            width: auto;
            height: auto;
        }
    }

    .best-sellers__add-btn svg {
        width: 100%;
        height: 100%;
    }

    .best-sellers__add-btn:hover svg circle {
        fill: #000;
    }

    .best-sellers__add-btn:hover svg rect {
        stroke: #fff;
    }

    .best-sellers__add-btn svg circle,
    .best-sellers__add-btn svg rect {
        transition: all 0.2s linear;
    }

    .best-sellers__add-btn:hover svg circle {
        fill: #000;
    }

    .best-sellers__add-btn:hover svg rect {
        stroke: #fff;
    }

    .best-sellers__add-btn svg circle,
    .best-sellers__add-btn svg rect {
        transition: all 0.2s linear;
    }

    /* Product Info */
    .best-sellers__product-info {
        padding: 9px 8px 0;
    }

    @media (min-width: 768px) {
        .best-sellers__product-info {
            padding: 11px 10px 0;
        }
    }

    .best-sellers__product-link {
        text-decoration: none;
        color: inherit;
    }

    .best-sellers__product-title {
        font-size: 11px;
        letter-spacing: 0.02em;
        line-height: 1.3;
        text-transform: uppercase;
        margin: 0;
        font-weight: 400;
    }

    @media (min-width: 992px) {
        .best-sellers__product-title {
            font-size: 16px;
            line-height: 1.2;
        }
    }

    .best-sellers__product-variant {
        color: #989898;
        font-size: 10px;
        letter-spacing: 0.02em;
        line-height: 1.3;
        margin: 4px 0 0;
    }

    @media (min-width: 992px) {
        .best-sellers__product-variant {
            font-size: 13px;
            line-height: 1.2;
            margin-top: 7px;
        }
    }

    .best-sellers__product-price {
        font-size: 11px;
        letter-spacing: 0.02em;
        line-height: 1.3;
        margin: 4px 0 0;
    }

    @media (min-width: 992px) {
        .best-sellers__product-price {
            font-size: 16px;
            letter-spacing: 0.28px;
            line-height: 1.2;
            margin-top: 8px;
        }
    }

    .best-sellers__sale-price {
        display: inline;
    }

    .best-sellers__regular-price {
        color: #a8a8a8;
        margin-left: 4px;
        text-decoration: line-through;
        display: inline-block;
    }

/* Keep original section styles for other sections */
    .section-padding {
        padding: 5rem 0;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.4rem;
        font-weight: 400;
        margin: 0;
        letter-spacing: -0.01em;
    }

    @media (min-width: 992px) {
        .section-title {
            font-size: 3.2rem;
        }
    }

    .section-link {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-decoration: underline;
        text-underline-offset: 4px;
        color: #000;
    }

    .section-link:hover {
        opacity: 0.6;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    @media (min-width: 600px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 900px) {
        .products-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (min-width: 1200px) {
        .products-grid--slider {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    @media (min-width: 1400px) {
        .products-grid--slider {
            grid-template-columns: repeat(6, 1fr);
        }
    }

.category-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .category-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    @media (min-width: 768px) {
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media (min-width: 992px) {
        .category-grid--4col {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .category-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 0.75;
    }

    .category-card__link {
        display: block;
        height: 100%;
    }

    .category-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .category-card:hover .category-card__image {
        transform: scale(1.03);
    }

    .category-card__overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem;
    }

    .category-card__title {
        font-size: 1.6rem;
        font-weight: 400;
        color: #fff;
        margin: 0;
    }

    @media (min-width: 992px) {
        .category-card__title {
            font-size: 1.8rem;
        }
    }

    .category-card__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: #fff;
        color: #000;
        padding: 1rem 1.4rem;
        border-radius: 24px;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: fit-content;
        transition: background 0.2s, transform 0.2s;
        border: 1px solid #000;
    }

    @media (min-width: 992px) {
        .category-card__btn {
            font-size: 1.1rem;
        }
    }

    .category-card:hover .category-card__btn {
        background: #000;
        color: #fff;
    }

    .category-card__btn svg {
        transition: transform 0.2s;
    }

    .category-card:hover .category-card__btn svg {
        transform: translateX(3px);
    }
