.home-product-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    margin: 8px 0 clamp(42px, 7vw, 84px);
    padding: clamp(22px, 4vw, 44px);
    overflow: hidden;
    border: 1px solid #dde2e8;
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 12%, rgba(217, 23, 36, .09), transparent 32%),
        linear-gradient(145deg, #ffffff 0%, #f7f8fa 100%);
    box-shadow: 0 24px 62px rgba(15, 23, 42, .10);
}

.home-product-showcase::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -120px;
    border-radius: 999px;
    background: rgba(217, 23, 36, .06);
    pointer-events: none;
}

.home-product-visual,
.home-product-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.home-product-visual {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .12);
}

.home-product-visual img {
    display: block;
    width: min(100%, 420px);
    height: auto;
    max-height: 510px;
    object-fit: contain;
    border-radius: 18px;
}

.home-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 11px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.home-product-copy {
    display: grid;
    align-content: center;
    gap: 16px;
}

.home-product-copy h2 {
    max-width: 650px;
    margin: 0;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.home-product-copy > p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.home-product-features {
    display: grid;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.home-product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #e2e6eb;
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
}

.home-product-features li span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #d91724;
    color: #fff;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.home-product-features li strong {
    min-width: 0;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.home-product-actions {
    display: grid;
    justify-items: start;
    gap: 9px;
    margin-top: 4px;
}

.home-trendyol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f27a1a;
    border-color: #f27a1a;
    color: #fff;
}

.home-trendyol-btn:hover {
    background: #d9650c;
    border-color: #d9650c;
    color: #fff;
}

.home-product-actions small {
    max-width: 520px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

@media (max-width: 920px) {
    .home-product-showcase {
        grid-template-columns: 1fr;
    }

    .home-product-visual {
        min-height: 0;
    }

    .home-product-copy {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .home-product-showcase {
        padding: 18px;
        border-radius: 22px;
    }

    .home-product-visual {
        padding: 12px;
        border-radius: 18px;
    }

    .home-product-visual img {
        max-height: 430px;
        border-radius: 14px;
    }

    .home-product-actions,
    .home-product-actions .btn {
        width: 100%;
    }
}
