.hot-shelf-wrapper {
    position: relative;

    /* background nam giua 2 khoang trong 2 ben  */
    /* width: 100%; */

    /* background full screen  */
    /* width: 100vw; */
    width: 99.6vw;
    margin-left: calc(50% - 50vw);
    
    /* aspect-ratio: 1; */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(7, 10, 33, 1);
    overflow: hidden;
}

/* SHELF CONTAINER */
.hot-shelf-wrapper .shelf-container {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.hot-shelf-wrapper .shelf-item {
    position: absolute;
    width: 12%;
    height: auto; 
    transform: translate(-50%, -50%);
    transition: filter 0.3s ease;
    will-change: filter;
}

.hot-shelf-wrapper .shelf-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hot-shelf-wrapper .shelf-item:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    cursor: pointer;
    z-index: 100;
}

.hot-shelf-banner {
    position: absolute;
    top: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hot-shelf-banner-img {
    width: 50%;
}


@media screen and (max-width: 992px) {
    .hot-shelf-wrapper {
      width: 125vw;
      margin-left: calc(50% - 125vw / 2);
    }
}

@media screen and (max-width: 768px) {
    .hot-shelf-wrapper {
      width: 150vw;
      margin-left: calc(50% - 150vw / 2);
    }
}
