.body-hero {
    position: relative;
    height: 60vh;
    background-color: transparent;
    background-image: url('/images/product/body_product.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 0;
}

.body-hero-content {
    max-width: 500px;
    color: #333;
}

.body-hero-content h1 {
    font-family: var(--pd-font-brand);
    font-size: var(--banner-title-size-desktop);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.body-hero-content p {
    font-family: var(--pd-font-body);
    font-size: var(--text-lede);
    font-weight: var(--fw-light, 300);
    line-height: 1.45;
}

.product-section {
    padding: 60px 0;
}

.product-section p {
    color: var(--color-black);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title-group h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.view-all {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 170px;
    border: 0;
    border-bottom: 1px solid #8f8a83;
    padding: 0 0 6px;
    line-height: 1;
}

.view-all-arrow {
    margin-left: auto;
    padding-left: 16px;
    display: inline-flex;
    align-items: center;
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 40px;
}

.shower-layout {
    grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
    align-items: start;
}

.category-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shower-feature {
    display: flex;
    align-items: flex-start;
}

.shower-feature img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.shower-right-column {
    min-width: 0;
}

.shower-right-column .product-card-tile .product-image img {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}

.section-header-inline {
    display: block;
    align-items: initial;
    margin-bottom: 10px;
}

.section-header-inline .section-title-group h2,
.section-header .section-title-group h2 {
    font-family: var(--pd-font-brand);
    font-size: clamp(2.6rem, 2.2rem + 1.05vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: clamp(1.35rem, 1.1rem + 0.9vw, 2rem);
}

.section-header-inline .section-title-group p,
.section-header .section-title-group p {
    font-family: var(--pd-font-body);
    font-size: var(--text-lede);
    font-weight: var(--fw-light, 300);
    line-height: 1.45;
    margin: 0;
}

.section-header-inline .view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: var(--text-lede);
    font-weight: var(--fw-regular, 400);
    padding-left: 10px;
    padding-right: 10px;
}

.section-header .view-all {
    font-size: var(--text-lede);
    font-weight: var(--fw-regular, 400);
    padding-left: 10px;
    padding-right: 10px;
}

.product-grid {
    display: grid;
    gap: 40px 20px;
}

.body-page .product-grid-listing {
    grid-template-columns: repeat(var(--desktop-columns, 4), minmax(0, 1fr));
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
    text-align: center;
}

.product-card img {
    max-width: 100%;
    margin-bottom: 20px;
}

.body-page .product-card-tile {
    text-align: center;
    align-items: center;
}

.body-page .product-card-tile .product-info,
.body-page .product-card-tile .product-form,
.body-page .product-card-tile .size-group,
.body-page .product-card-tile .product-link,
.body-page .product-card-tile .product-image {
    width: 100%;
}

.body-page .product-card-tile .size-group {
    text-align: left;
}

.product-card h3,
.body-page .product-card-tile h3 {
    font-size: var(--product-list-title-size);
    font-weight: var(--fw-bold, 700);
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 4px;
    text-align: center;
}

.product-sub,
.body-page .product-subtitle {
    font-size: var(--product-list-subtitle-size);
    line-height: 1.45;
    color: #3f3d39;
    font-weight: var(--fw-regular, 400);
    margin-bottom: 12px;
    text-align: center;
    padding: 0;
}

.size-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 0.85rem;
    margin-bottom: 10px;
    background: #fff;
}

.size-container,
.body-page .size-group {
    text-align: left;
}

.size-container label,
.body-page .size-group label {
    display: block;
    font-size: var(--product-list-label-size);
    margin-bottom: 4px;
    color: #6f6a63;
    font-weight: var(--fw-regular, 400);
}

.size-select-wrap,
.body-page .select-wrapper {
    border: 1px solid #333;
    border-radius: 1.51px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.size-select-wrap::after,
.body-page .select-wrapper::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #333;
    border-bottom: 1.5px solid #333;
    transform: translateY(-93%) rotate(45deg);
    pointer-events: none;
}

.size-select-wrap .size-select,
.body-page .select-wrapper select {
    height: 35px;
    min-height: 35px;
    padding: 0 30px 0 12px;
    border: none;
    margin-bottom: 0;
    background: transparent;
    text-align: center;
    text-align-last: center;
    font-size: var(--product-list-label-size);
    font-weight: var(--fw-regular, 400);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    cursor: pointer;
}

.price,
.body-page .product-price {
    font-size: var(--product-list-price-size);
    font-weight: var(--fw-bold, 700);
    margin-bottom: 8px;
    text-align: center;
}

.add-to-cart,
.body-page .add-to-cart-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    height: 35px;
    min-height: 35px;
    padding: 0 12px;
    border-radius: 1.51px;
    font-size: var(--product-list-btn-size);
    font-weight: var(--fw-regular, 400);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart:hover,
.body-page .add-to-cart-btn:hover {
    background: #333;
    border-color: #333;
}

@media (max-width: 75rem) {
    .layout-split {
        grid-template-columns: 1fr 1.8fr;
        gap: 28px;
    }

    .shower-layout {
        grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .body-page .product-grid-listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 62rem) {
    .body-hero {
        height: auto;
        min-height: 360px;
        padding: 64px 0;
        align-items: flex-start;
        background-position-x: 58%;
        background-position-y: center;
    }

    .body-hero-content h1 { margin-bottom: 14px; }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }

    .layout-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shower-layout {
        grid-template-columns: 1fr;
    }

    .shower-layout .shower-feature {
        display: none;
    }

    .category-feature img {
        max-height: 380px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .body-page .product-grid-listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 48.0625rem) and (max-width: 62rem) {
    .body-hero-content {
        max-width: min(22rem, 40vw);
    }
}

@media (max-width: 48rem) {
    .body-hero {
        --body-hero-bg-x: 45%;
        --body-hero-bg-y: 20%;
        background-size: auto 118%;
        background-position-x: var(--body-hero-bg-x);
        background-position-y: var(--body-hero-bg-y);
        height: 50vh;
        min-height: 0;
        box-sizing: border-box;
        padding: 0;
        align-items: center;
        overflow: hidden;
    }

    @supports (height: 50dvh) {
        .body-hero {
            height: 50dvh;
        }
    }

    .body-hero .product-box-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .body-hero-content {
        max-width: min(22rem, 80vw);
    }

    .body-hero-content h1 {
        font-size: var(--banner-title-size-tablet);
        line-height: 1.12;
        margin-bottom: clamp(1.35rem, 3.8vw, 2rem);
    }

    .body-hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-header-inline .section-title-group h2,
    .section-header .section-title-group h2 {
        font-size: clamp(1.02rem, 0.97rem + 0.35vw, 1.1rem);
        line-height: 1.2;
        margin-bottom: clamp(0.75rem, 0.5rem + 1vw, 1.1rem);
    }

    .section-header-inline .section-title-group p,
    .section-header .section-title-group p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-header-inline .view-all {
        font-size: 0.95rem;
    }

    .section-header .view-all {
        font-size: 0.95rem;
    }

    .product-section {
        padding: 42px 0;
    }

    .section-title-group h2 {
        font-size: 1.25rem;
    }

    .section-title-group p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .product-grid {
        gap: 28px 14px;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }

    .product-sub {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .size-select {
        padding: 10px;
    }

    .price {
        margin-bottom: 8px;
    }
}

@media (max-width: 36rem) {
    .body-hero-content {
        max-width: min(20rem, 78vw);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .body-page .product-grid-listing {
        grid-template-columns: 1fr;
    }

    .view-all {
        font-size: 0.85rem;
    }

    .body-hero-content h1 {
        font-size: var(--banner-title-size-mobile);
        line-height: 1.12;
        margin-bottom: clamp(1.25rem, 3.6vw, 1.85rem);
    }

    .body-hero-content p {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .section-header-inline .section-title-group h2,
    .section-header .section-title-group h2 {
        font-size: clamp(0.98rem, 0.92rem + 0.45vw, 1.05rem);
        line-height: 1.2;
        margin-bottom: clamp(0.65rem, 0.45rem + 0.9vw, 1rem);
    }

    .section-header-inline .section-title-group p,
    .section-header .section-title-group p {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .section-header-inline .view-all {
        font-size: 0.88rem;
    }

    .section-header .view-all {
        font-size: 0.88rem;
    }
}
