/* ========== PRODUCT PAGE ========== */

.hero {
    height: 70vh;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 100%), url('../img/banner-product.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .judul {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero .horizontal-line {
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 1rem auto 0;
    animation: fadeInUp 0.7s ease 0.4s both;
}

/* PRODUCT SECTION */
.about {
    padding: 6rem 0;
    background: var(--light);
}

.about .judul {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.about .horizontal-line-judul {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 0.75rem auto 1rem;
    border-radius: 2px;
}

.about .subjudul {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(232,130,12,0.25); }

.product-card-img {
    height: 260px;
    display: flex; align-items: center; justify-content: center;
    background: var(--light);
    overflow: hidden;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.product-card-img img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-card-tag {
    display: inline-block;
    background: rgba(232,130,12,0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.product-card-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-body);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-light);
}

.product-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    margin: 4rem 0;
    position: relative;
}

.product-section-divider::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 7px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
}

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