/* Homepage featured products — scoped to .home-prod-section */
.home-prod-section {
    background: #f5f5f7;
    padding: 80px 0;
}

.home-prod-ch {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 48px;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}

.home-prod-chr {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-prod-ey {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 10px;
}

.home-prod-sh {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1d1d1f;
    margin: 0;
}

.home-prod-vl {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
    white-space: nowrap;
}

.home-prod-vl:hover {
    gap: 9px;
}

.home-prod-arrs {
    display: flex;
    gap: 8px;
}

.home-prod-ar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    padding: 0;
}

.home-prod-ar:hover {
    background: rgba(0, 0, 0, 0.16);
    transform: scale(1.06);
}

.home-prod-ar:disabled {
    opacity: 0.25;
    pointer-events: none;
}

.home-prod-cw {
    padding-left: 48px;
    overflow: hidden;
}

.home-prod-ct {
    display: flex;
    gap: 16px;
    will-change: transform;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    padding-right: 16px;
}

.home-prod-ct:active {
    cursor: grabbing;
}

.home-prod-pc {
    flex-shrink: 0;
    width: 360px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
}

.home-prod-pc:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.home-prod-pc-b {
    padding: 24px 24px 18px;
    flex: 1;
}

.home-prod-pc-c {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 8px;
}

.home-prod-pc-n {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.home-prod-pc-d {
    font-size: 13px;
    line-height: 1.7;
    color: #6e6e73;
    margin: 0;
}

.home-prod-pc-i {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f5f5f7;
    flex-shrink: 0;
}

.home-prod-pc-i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-prod-pc:hover .home-prod-pc-i img {
    transform: scale(1.07);
}

.home-prod-pc-plus {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1d1d1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s, background 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.home-prod-pc:hover .home-prod-pc-plus {
    transform: scale(1.12) rotate(90deg);
    background: #333;
}

@media (max-width: 1024px) {
    .home-prod-ch {
        padding: 0 24px;
    }

    .home-prod-cw {
        padding-left: 24px;
    }
}

@media (max-width: 768px) {
    .home-prod-section {
        padding: 56px 0;
    }

    .home-prod-ch {
        padding: 0 20px;
    }

    .home-prod-cw {
        padding-left: 20px;
    }

    .home-prod-pc {
        width: 280px;
    }

    .home-prod-pc-i {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .home-prod-ch {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-prod-pc {
        width: 260px;
    }
}
