
.product-detail-container {
    background-color: #ffffff;
    border-radius: 16px;
    margin: 20px;
    padding: 30px; 
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.product-image-column .product-images {
    border-radius: 12px;
    overflow: hidden; 
}
.product-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 100%;
}

#divnamaproduk h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
}

#divharga {
    background-color: transparent;
    border: none; 
    padding: 0;
    text-align: left; 
    margin-bottom: 25px;
}

#divharga p {
    font-size: 28px;
    font-weight: 600;
    color: #28a745; 
    margin: 0;
}
#divharga p::before {
    content: 'Harga';
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-bottom: 5px;
}

#tanyawa a {
    display: flex;
    align-items: center; 
    justify-content: center;  
    gap: 10px;               
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    padding: 6px 20px; 
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
#tanyawa a img {
    height: 40px;
    width: auto;
}

#tanyawa a:hover {
    background-color: #d3d4d5;
    color: #ffffff;
    transform: translateY(-2px);
}

.product-image-column {
    flex: 0 0 40%; 
    max-width: 40%;
}

.product-image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee; 
}
.product-info-column {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    gap: 15px;
}

/* Style for active tab with green background */
.nav-tabs .nav-link.active {
    background-color: #0f6c37 !important;
    color: white !important;
    border-color: #0f6c37 !important;
}

/* Optional: Hover effect for non-active tabs */
.nav-tabs .nav-link:hover:not(.active) {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column; 
        align-items: center; 
    }

    .product-image-column,
    .product-info-column {
        max-width: 100%;
        width: 100%;
    }
}