.hmr-product-showcase {
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

.hmr-showcase-head {
    max-width: 1180px;
    margin: 0 auto 34px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.hmr-showcase-label {
    grid-column: 1 / -1;
    margin: 0 0 -22px 0;
    color: #a85a43;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.hmr-showcase-head h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    color: #111111;
    letter-spacing: -0.06em;
}

.hmr-showcase-head p {
    margin: 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.7;
}

.hmr-carousel-wrap {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
}

.hmr-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2px 2px 16px 2px;
    scrollbar-width: none;
}

.hmr-carousel::-webkit-scrollbar {
    display: none;
}

.hmr-product-card {
    position: relative;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 28px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.04);
}

.hmr-product-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    padding: 22px;
}

.hmr-product-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    color: #111111;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hmr-product-info {
    border-top: 1px solid #eeeeee;
    padding: 22px;
    background: #ffffff;
}

.hmr-product-info p {
    margin: 0 0 10px 0;
    color: #a85a43;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hmr-product-info h3 {
    margin: 0 0 22px 0;
    color: #111111;
    font-size: 19px;
    line-height: 1.25;
}

.hmr-product-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.hmr-product-info a:hover {
    color: #d62828;
}

.hmr-carousel-btn {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    color: #111111;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

.hmr-carousel-btn:hover {
    background: #111111;
    color: #ffffff;
}

.hmr-carousel-prev {
    left: -26px;
}

.hmr-carousel-next {
    right: -26px;
}

@media (max-width: 900px) {
    .hmr-showcase-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hmr-showcase-label {
        margin: 0;
    }

    .hmr-carousel {
        grid-auto-columns: 78%;
    }

    .hmr-carousel-prev {
        left: 8px;
    }

    .hmr-carousel-next {
        right: 8px;
    }
}

@media (max-width: 520px) {
    .hmr-product-showcase {
        padding: 58px 16px;
    }

    .hmr-carousel {
        grid-auto-columns: 88%;
    }

    .hmr-product-card {
        border-radius: 22px;
        min-height: 460px;
    }

    .hmr-product-card img {
        height: 310px;
    }
}