﻿/* =======================
   Product Main Image Box
   ======================= */
.product-main-box {
    width: 100%;
    max-width: 485px;
    height: 400px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .product-main-box:hover {
        transform: translateY(-4px);
    }

    .product-main-box .easyzoom img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

/* =======================
   Thumbnails
   ======================= */
.thumbnail-image {
    cursor: pointer;
    width: 114px;
    height: 80px;
    object-fit: cover;
    margin: 5px 5px 5px 0;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .thumbnail-image.selected,
    .thumbnail-image:hover {
        border: 2px solid #4a5bcf;
        transform: scale(1.05);
    }

/* =======================
   Product Info
   ======================= */
.bb-single-pro-contact {
    padding: 10px 0px;
}

.bb-sub-title h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bb-single-rating span,
.bb-read-review a {
    font-size: 13px;
    color: #666;
}

.bb-single-price h4 {
    font-size: 20px;
    color: #4a5bcf;
    font-weight: 700;
}

.mrp p {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

/* =======================
   Variant Cards
   ======================= */
.variant-cards {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.variant-btn {
    display: inline-block;
    width: 100px;
    padding: 10px;
    margin: 8px 8px 8px 0;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

    .variant-btn:hover {
        transform: translateY(-4px);
        border-color: #4a5bcf;
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .variant-btn.selected {
        border: 2px solid #4a5bcf;
        font-weight: bold;
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .variant-btn img {
        width: 70px;
        height: 45px;
        object-fit: cover;
        border-radius: 8px;
    }

    .variant-btn .original-price span {
        text-decoration: line-through;
        color: #888;
        font-size: 12px;
    }

    .variant-btn .discounted-price {
        color: #6c7fd8;
        font-weight: bold;
        font-size: 14px;
        margin-top: 4px;
    }


/* =======================
   Quantity & Buttons
   ======================= */
.bb-single-qty {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.qty-plus-minus {
    margin-right: 15px;
}

.qty-input {
    width: 60px;
    padding: 5px 10px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.buttons {
    margin-right: 10px;
}

    .buttons input,
    .buttons button,
    .buttons .aspNetButton {
        padding: 10px 18px;
        background-color: #4a5bcf;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .buttons input:hover,
        .buttons button:hover,
        .buttons .aspNetButton:hover {
            background-color: #3a48a8;
            transform: translateY(-2px);
        }

/* =======================
   Features/Highlights
   ======================= */
.bb-single-list {
    margin-top: 20px;
}

.feature-btn {
    display: inline-block;
    background-color: #f0f4ff;
    color: #4a5bcf;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    margin: 5px 5px 5px 0;
    border-radius: 25px;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

    .feature-btn:hover {
        background-color: #4a5bcf;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

/* =======================
   Responsive
   ======================= */
@media (max-width: 768px) {
    .variant-cards {
        justify-content: center;
    }

    .product-main-box {
        height: 300px;
    }

    .thumbnail-image {
        width: 70px;
        height: 55px;
    }
}
