.product-showcase {
    position: relative;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    padding: 140px 0;
    overflow: hidden;
}

.product-showcase::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240,78,48,0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.product-showcase::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.showcase-title {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #f04e30, #ff7a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 100px;
}

.showcase-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
    padding: 60px;
    backdrop-filter: blur(12px);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-row:hover {
    transform: translateY(-10px);
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse * {
    direction: ltr;
}

.showcase-image {
    display: flex;
    justify-content: center;
}

.showcase-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.showcase-image {
    position: relative;
}

.showcase-image::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(240,78,48,0.25), transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.showcase-content {
    max-width: 480px;
    transition: transform 0.4s ease;
}

.showcase-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ED5437;
}

.showcase-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6b7b;
}

.showcase-row:hover .showcase-content {
    transform: translateY(-5px);
}

/* ================= SAFE ANIMATION ================= */
.showcase-title,
.showcase-row {
    transform: translateY(30px);
}

.showcase-title.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.showcase-row.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.showcase-row.loaded .showcase-content {
    animation: fadeUp 0.8s ease forwards;
}

.showcase-row.loaded .showcase-image img {
    animation: imageEnter 0.9s ease forwards, floatProduct 4s ease-in-out infinite 1s;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .product-showcase {
        padding: 100px 20px;
    }

    .showcase-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .showcase-image::before {
        width: 200px;
        height: 200px;
    }

    .showcase-title {
        font-size: 34px;
    }
}