/* ============================================
   HERO SECTION — Solusi Tekstil Terlengkap
   ============================================ */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.product-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}
.product-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Text Content */
.product-hero-text {
    max-width: 550px;
}
.product-hero-text .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFE500;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.2s forwards;
}
.product-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #FFE500;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.4s forwards;
}
.product-hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.6s forwards;
}

/* Right Cards */
.product-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s 0.8s forwards;
}

.product-type-card {
    width: 180px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease;
    will-change: transform;
    text-decoration: none;
}
.product-type-card:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: #FFE500;
    background: rgba(255, 229, 0, 0.06);
    box-shadow: 0 12px 40px rgba(255, 229, 0, 0.12);
}

.product-type-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    padding: 14px;
    transition: border-color 0.3s ease, transform 0.4s ease;
}
.product-type-card:hover .product-type-icon {
    border-color: #FFE500;
    transform: rotate(5deg) scale(1.08);
}
.product-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.product-type-card:hover .product-type-icon img {
    filter: brightness(1) invert(0) sepia(1) hue-rotate(10deg) saturate(10) brightness(1);
}

.product-type-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.product-type-card:hover .product-type-label {
    color: #FFE500;
}

/* Floating glow accent */
.product-type-card::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,229,0,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.product-type-card:hover::before {
    opacity: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE — Product Page Only
   ============================================ */
@media (max-width: 900px) {
    .product-hero {
        min-height: auto;
    }
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 24px 60px;
    }
    .product-hero-text {
        text-align: center;
        max-width: 100%;
    }
    .product-hero-text p {
        max-width: 100%;
    }
    .product-cards {
        justify-content: center;
    }
    .product-type-card {
        width: 150px;
        height: 190px;
    }
    .product-type-icon {
        width: 65px;
        height: 65px;
        padding: 12px;
    }
    .product-type-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .product-hero-content {
        padding: 90px 16px 50px;
    }
    .product-cards {
        gap: 16px;
    }
    .product-type-card {
        width: 135px;
        height: 170px;
        border-radius: 18px;
    }
    .product-type-icon {
        width: 55px;
        height: 55px;
        padding: 10px;
    }
    .product-type-label {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }
}
