/* Banner slider*/
.slider-content {
    width: 100%;
    display: flex;
    flex: 1;
    margin: 0 auto;
    height: auto;
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px;
    margin: 20px auto;
    justify-content: space-between;
}

.slider-left {
    position: relative;
    overflow: hidden;
    height: 100%;
    flex:70%
}

.banner-left-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 5);
}

.banner-left-items {
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 100%;
}

.banner-left-items img {
    width: 100%;
    height: 100%;
}


.banner-left-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.banner-left-buttons button {
    background-color: transparent;
    color: transparent;
    border: none;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: 50px;
}
.slider-left:hover button {
    background-color:rgba(0, 0, 0, 0.1);
    color: white;
}
.banner-left-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.banner-left-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.slider-left:hover .banner-left-dots li {
    background-color: #ddd;
}

.slider-left:hover .banner-left-dots li.active {
    background-color: #333;
}

.slider-right {
    flex: 30%;
    background-color: #fffcf7;
    align-items: center;
    display: flex;
    margin-left: 8px;
}

.banner-right {
    display: flex;
    flex-wrap: wrap; 
    justify-content:space-between;
}

.banner-right img {
    width: 50%;
    object-fit: cover;
}

/* ----- Flash sales banner -----*/
.product-sales-content {
    background-color: #990000;
    justify-content: center;
    margin: 0 auto;
    height: auto;
    border-radius: 22px;
}
.product-sales-content-banner {
    background-color: #ffffff;
    display: grid; /* khớp */
}
/*item*/
.product-sales-content-items {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin: 15px 10px;
    flex-wrap: wrap;
}

.product-sales-item {
    width: 15%;
    background-color: white;
    padding: 50px 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
}
.product-sales-item:hover img{
    transform: translateY(-15px);

}
.product-sales-item img {
    max-width: 100%;
    transition: transform 0.33s ease-in-out;
    padding: 0px;
}
/*----------banner o giua--------*/
.bannermid-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 15px 0px;
}
.bannermid-items img {
    border-radius: 12px;
}
/* -----------Danh sach noi bat---------- */
.product-hot-content {
    border: 1px solid #990000;
    border-radius: 25px;
}

.hot-list {
    display: flex;
    justify-content: space-between;
    margin: 5px 10px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.hot-list-item {
    width: 17%;
    padding: 50px 12px 30px;
    border-radius: 10px;
    cursor: pointer;
}
.hot-list-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
}
.hot-list-item img {
    width: 100%;
    transition: transform 0.33s ease-in-out;
    padding: 0px;
}
.hot-list-item:hover img{
    transform: translateY(-15px);
}

.hot-title {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}
.hot-title ul {
    display: flex;
    align-items: center;
}
.hot-title ul li a {
    color: #990000;
    transition: all 0.5 ease;
}
.hot-title ul li {
    background-color: white;
    border: 1px solid #990000;
    border-radius: 25px;
    margin-left: 5px;
    padding: 5px;
    font-size: 10px;
}
.hot-title ul li:hover {
    box-shadow: 0 2px 3px #4b4b4b;
    background-color: #990000;
}
.hot-title ul li:hover a {
    color: white;
}
.hot-title h2 {
    color: #990000;
}
