/* ===== SMART SPACING SYSTEM ===== */

.kreatifitas-section {
    margin-top: auto;
    position: relative;
    z-index: 2;
    padding-top: clamp(140px, 18vw, 220px);
}

/* 🔥 FADE PANJANG SAMPAI BAWAH */
.kreatifitas-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 20%,
        rgba(255, 255, 255, 0.85) 45%,
        rgba(255, 255, 255, 0.96) 70%,
        #ffffff 100%
    );

    pointer-events: none;
    z-index: 0;
}

/* pastikan konten di atas gradient */
.kreatifitas-section > * {
    position: relative;
    z-index: 2;
}

.product-card {
    background: white;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    display: flex;
    /* 🔥 penting */
    flex-direction: column;
    /* 🔥 penting */
    height: 100%;
    /* 🔥 penting */
}

.btn-product {
    width: 100%;
    margin-top: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px;

    border-radius: 30px;

    background: linear-gradient(90deg, #ff8a00, #ffb347);
    color: #fff;

    font-weight: 600;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* icon box */
.btn-icon {
    width: 20px;
    height: 20px;

    border: 1px solid #fff;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* svg */
.btn-icon svg {
    width: 12px;
    height: 12px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* hover */
.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    /* 🔥 kunci keseragaman */
    object-fit: cover;
    /* 🔥 biar tidak gepeng */
    border-radius: 12px;
}

.product-card .btn-orange {
    margin-top: auto;
    /* 🔥 magic align bawah */
    align-self: flex-start;
}

.btn-orange {
    background: #f7931e;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

/* ===== BUTTON MICRO INTERACTION ===== */
.btn-orange,
.btn-wa {
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.btn-orange:hover,
.btn-wa:hover {
    transform: translateY(-2px);
}

.btn-orange:active,
.btn-wa:active {
    transform: translateY(0);
}
