/* Product Detail Page Styles */

.product-detail-gallery {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.product-detail-info {
    padding: 20px;
}

.product-price-tag {
    font-size: 2rem;
    color: rgb(0, 192, 255);
    font-weight: 700;
}

.product-description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.whatsapp-contact-btn {
    background-color: #25d366;
    color: #fff !important;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.whatsapp-contact-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.product-image-main {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    background: #f9f9f9;
}

.thumb-gallery img {
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.thumb-gallery img:hover {
    opacity: 0.8;
}
