/* ========== DETAIL PRODUK ========== */

.detail-container {
    padding: 60px 0;
}

.detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.detail-image {
    flex: 0 0 40%;
    text-align: center;
}

.detail-image img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ccc;
    border-radius: 12px;
}

.detail-info {
    flex: 1;
}

.kategori-tag {
    display: inline-block;
    background: #eee;
    color: #222;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin: 0;
    line-height: 1.1;
}

.harga {
    font-size: 1.8rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.specs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.specs span {
    background: #222;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.deskripsi {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.btn-beli {
    background: #222;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-beli:hover {
    background: #444;
}
.specs {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.specs span {
    background: #f8f8f8;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}
/* Tombol Beli di Halaman Detail */
.btn-beli {
    display: inline-block;
    background-color: #222;
    color: white;
    text-decoration: none; /* ⭐ HILANGKAN UNDERLINE */
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-beli:hover {
    background-color: #000;
    color: white;
    text-decoration: none; /* pastikan tetap tidak ada underline saat hover */
}
/* RESPONSIF */
@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
    }

    .detail-image {
        flex: 0 0 100%;
    }

    .detail-image img {
        max-height: 300px; /* ⭐ Di mobile, batasi 300px */
    }
}
