.product {
    background-image: url('../assets/img/bg-banner.jpg');
    height: 700px;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 120px;
}


.product .img-product img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem;
}

.rating .icon {
    color: #F79009;
    font-size: 15px;
    margin-right: 5px;
}

.product h1 {
    font-family: 'BodoniMT';
    font-size: 40px;
    color: var(--primary-color);
    /* position: relative;
    z-index: 1; */
}

.product h1::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: 0;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    background-color: #EFF2FF;
}

.btn-number {
    background-color: #EFF2FF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.btn-number i {
    font-size: 16px;
}

.btn-number:hover {
    background-color: var(--white-color);
    border: 1px solid #E8E8E8;
}

.input-number {
    /* background-color: var(--light-grey-color); */
    border: 0;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    padding: 0;
}

.input-number:focus-visible {
    outline: none;
}

.product .detail .img-thumb {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.product .detail .img-btn {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    /* border-radius: 10%; */
    transition: all 0.3s;
    position: relative;
    padding: 0;
}

.product .detail .img-btn::after {
    content: "";
    max-width: 100%;
    height: 100%;
    background-color: var(--white-color);
    /* border-radius: 10%; */
    border: 2px solid transparent;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.product .detail .img-btn:hover {
    background-color: var(--primary-color);
}

.product .detail .img-product-thumb {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
    /* border-radius: 10%; */
    border: 2px solid transparent;
    transition: all 0.3s;
    transform-origin: bottom;
}