/* ============== BANNER ============== */
.home-banner {
    background-image: url("../img/home-banner-img.jpg");
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    position: relative;
}

.home-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 1;
    z-index: 1;
}

.home-banner-info {
    position: relative;
    z-index: 2;
    color: var(--light-white);
}

.home-banner-info .banner-heading {
    font-weight: var(--fw-bold);
    font-size: var(--banner-heading);
}

.home-banner-info .banner-text {
    font-weight: var(--fw-medium);
    font-size: var(--common-size);
}

.home-banner .home-banner-info button {
    padding: 8px 20px;
    font-weight: var(--fw-normal);
    font-size: var(--common-size);
    border-radius: 50px;
    color: var(--dark);
}



/* ============== product-show ============== */

.product-show {
    background-color: var(--light-white);
}

.product-show .left-img {
    width: 100%;
    height: 460px;
}

.product-show .right-img {
    width: 100%;
    height: 460px;
}

.product-show .right-img .img1 {
    height: 216px;
}

.product-show .right-img .img2 {
    height: 216px;
}


/* toggle-group button */
.product-show .toggle-group {
    display: flex;
    border-radius: 12px;
    box-shadow: 0px 0px 6px -2px var(--dark);
    overflow: hidden;
    width: fit-content;
    background: #F8F9FD;
    margin: 20px auto;
}

.product-show .toggle-group .toggle-btn {
    font-size: var(--mediuum-size);
    padding: 12px 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
    font-weight: var(--fw-medium);
}


.product-show .toggle-group .toggle-btn.active {
    background-color: var(--border);

}
