html {
  scroll-behavior: smooth;
}
.sale-cd-tit img{
  border-radius: 5px;
}
.mg-top-30{
  margin: 0;
}
.sticky-banner{
  display: none;
}
.breadcrumb-shop {
  display: none;
}
main{
  padding-top: 10px;
}
body{
    background-color: #3A0E6A;
    background-image: url(https://file.hstatic.net/200000837185/file/backdrop_6902f155e78546a489160d5789c10b5e.png);
    background-repeat: no-repeat;
    background-size: 100%;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
}
.container-slide{
    width: 1265px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://file.hstatic.net/200000837185/file/background2_c6e24b6e8d6c442d869b5bfed3d19a58.jpg');
    overflow: hidden;
    border-radius: 30px;
    position: relative; /* Thêm thuộc tính này để xác định vị trí tuyệt đối cho .directional */
}
/* CSS cho container-slide khi màn hình có chiều rộng nhỏ hơn hoặc bằng 768px (tablet) */
@media screen and (max-width: 768px) {
    .container-slide {
        width: 50%; /* Thu nhỏ container-slide */
        height: auto; /* Cho phép chiều cao thay đổi tự động */
        border-radius: 15px; /* Giảm độ cong của viền */
    }
}

/* CSS cho container-slide khi màn hình có chiều rộng nhỏ hơn hoặc bằng 480px (mobile) */
// @media screen and (max-width: 480px) {
//     .container-slide {
//         width: 95%; /* Thu nhỏ container-slide thêm một chút */
//         height: auto; /* Cho phép chiều cao thay đổi tự động */
//         border-radius: 10px; /* Giảm độ cong của viền */
//     }
// }

.header{
    position: absolute;
    top:0;
    width:100%;
    z-index: 1111;
    padding:10px;
}
.header .logo{
    width:40px;
    height:40px;
    display: inline-block;
}
.header ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    transform: translate(0,-14px);
}
.header li{
    display: inline-block;
    font-size: 13px;
    margin-left: 20px;
}
.directional {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.directional button {
    border: none;
    color: #333;
    font-size: 18px;
    padding: 0px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    transition: background-color 0.3s, color 0.3s;
    background: #c6c6c6;
}
.directional button img{
  width: 10px;
}
.directional button:hover {
    color: #ffffff;
}

/* .directional{
    position: fixed;
    bottom:1px;
    width:100%;
    text-align: center;
    z-index: 3;
    top: 33%;
}
.directional button{
    width:50px;
    height:50px;
    color:#fff;
    background-color: transparent;
    border:none;
    opacity: 0.2;
}
.directional button:hover{
    opacity: 1;
} */
#slide{
    position: relative;
    width:100%;
    height:100%;
    top: 15%;
}
#slide .item{
    position: absolute;
    top:-5%;
    left:0;
    width:100%;
    height:100%;
    z-index: 1;
}
#slide .item .image{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:75%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: end;
    opacity: 0;
    transform: scale(3);
    transition: 1s;
}
#slide .item .image img{
    width:35%;
    transition: 0.5s;
}
/* #slide .item .image::before{
    position: absolute;
    bottom:-30px;
    height:60px;
    width:60%;
    background-color: #000;
    content:'';
    z-index: -1;
    border-radius: 50%;
    filter:blur(30px)
} */
#slide .item .image img:hover{
    transform: scale(1.1);
}
.content .left{
    position: absolute;
    left:40px;
    top:15%;
    display: none;
}
.content .left h2{
    font-size: xx-large;
    font-weight: 700;
    margin-bottom:10px;
    margin-top: 3px;
}
.content .left .des{
    font-size: small;
    font-weight: 100;
    opacity: 0.6;
    margin-bottom:20px;
    width: 300px;
}
.content .left button{
    font-size: small;
    background-color: green;
    border:none;
    color:#fff;
    padding: 5px;
    border-radius: 5px;
}
.content .left button i:nth-child(1){
    margin-left: 10px;
}
.content .left button:hover{
    transform: scale(1.2);
    transition: 0.5s;
}
.content .right{
    position: absolute;
    right:40px;
    top:15%;
    display: none;
}
.content .right h2{
    font-size: large;
    font-weight: 500;
    margin-top:3px;
}
.content .right ul{
    padding: 0;
    margin:0;
    list-style: none;
}
.content .right li{
    font-size: small;
    position: relative;
    margin-top: 10px;
}
.content .right li::before{
    position: absolute;
    left:-20px;
    top:50%;
    transform: translate(0,-50%);
    width:8px;
    height: 8px;
    background-color: #00ff06;
    content:'';
    border-radius: 50%;
    box-shadow:  0 0 10px #00ff06;
}
.content .right li p:nth-child(2){
    font-weight: 700;
    padding:0;
    margin:0;
}
.content .right li p:nth-child(1){
    font-weight: 100;
    padding:0;
    margin:0;   
    font-size: x-small;
}
#slide .item:nth-child(1) .image{
    opacity: 0;
    transform: scale(0) translate(-100px);
}
#slide .item:nth-child(2) .image{
    opacity: 1;
    transform: scale(1);
}
#slide .item:nth-child(2){
    z-index: 3;
}
@keyframes contentOut {
    from{
        opacity: 1;
    transform: translate(0,0);
    }to{
        opacity: 0;
        transform: translate(0,-100%);
        filter:blur(113px)
    }
}
@keyframes contentIn {
    from{
        opacity: 0;
    transform: translate(0,100%);
    filter:blur(33px)
    }to{
        opacity: 1;
        transform: translate(0,0);
    }
}
#slide .item:nth-child(1) .left,
#slide .item:nth-child(1) .right,
#slide .item:nth-child(2) .left,
#slide .item:nth-child(2) .right{
    display: block;
}
#slide .item:nth-child(1) .left,
#slide .item:nth-child(1) .right{
    animation:contentOut 1s ease-in-out 1 forwards
}
#slide .item:nth-child(2) .left,
#slide .item:nth-child(2) .right{
    animation:contentIn 1s ease-in-out 1 forwards
}
.banner-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px; /* Khoảng cách với container-slide */
}

.banner-section img {
    max-width: 100%; /* Điều chỉnh kích thước hình ảnh */
    border-radius: 10px; /* Bo góc cho hình ảnh */
    transition: transform 0.3s; /* Hiệu ứng khi hover */
}
@media (min-width: 992px) {
.section-promotion.one {
        position: sticky;
        top: 100px; /*Khoảng cách với menu */
        z-index: 99;
    }
}
section{
  padding: 10px;
}
.section-promotion.one{
    background-color: #3A0E6A;
    padding: 10px 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
}
.container-fluid{
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}
.section-promotion.one .list-promo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
    .page-ldp-pc .section-promotion.one .item-promo {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        transition: all 150ms linear 0s;
    }
}
.page-ldp-pc .section-promotion.one a{
    display: block;
}
.page-ldp-pc .section-promotion.one .item-promo img{
    width: 100%;
}
.page-ldp-pc .section-promotion.one .item-promo img:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
@media (min-width: 992px) {
    .section-collection .section-content {
        margin: 0;
    }
}
// @media (min-width: 992px) {
//     .page-ldp-pc .section-collection .coll-banner {
//         -ms-flex: 0 0 26%;
//         flex: 0 0 26%;
//         max-width: 26%;
//         display: block;
//         border-radius: 4px;
//     }
// }
@media (max-width: 768px) {
  .coll-banner {
    display: none;
  }
  .coll-products {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-flex{
  display: flex;
  flex-wrap: nowrap;
}
.section-content img{
    width: 80%;
  border-radius: 5px;
  height: 100%;
}
/* .section-content img:hover{
    transition: 0.5s;
    transform: scale(1.1);
} */
@media (min-width: 992px) {
    .slick-style.style-pr .slick-arrow.slick-prev {
        left: -2px;
    }
}
@media (min-width: 992px) {
    .slick-style.style-pr .slick-arrow.slick-next {
        right: -2px;
    }
}
.slick-style.style-pr .slick-arrow svg {
    width: 18px;
    height: 18px;
    fill: #6D6E72;
    stroke: #6D6E72;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
.slick-style.style-pr .slick-arrow{
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #ECECEC;
    z-index: 1;
    outline: none;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 0px 4.80687px rgba(0, 0, 0, 0.2);
}
.page-ldp-pc .section-collection .coll-btn{
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 20px;
}
.page-ldp-pc .section-collection .coll-btn .view-more{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.page-ldp-pc .section-collection .coll-btn a.btn-more{
    font-weight: bold;
    padding: 10px;
    background: #fedc49;
    background: #fec830;
    background: linear-gradient(360deg, #fec830 0%, #fedc49 100%);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 150ms linear 0s;
    text-decoration: none;
    outline: none;
}
.page-ldp-pc .section-collection.section-collection-1 .coll-btn a.btn-more{
    color: #ffffff;
    background: #E51C2B;
}

@media (min-width: 992px) {
    .section-collection .coll-banner {
        -ms-flex: 0 0 calc(74% - 6px);
        flex: 0 0 calc(25% - 6px);
        max-width: calc(25% - 6px);
        margin-top: 6px;
    }
}
.section-collection .coll-products{
    background: #fff;
    border-radius: 4px;
    padding: 8px 4px;
}
@media (min-width: 992px) {
    .section-collection .coll-products {
        -ms-flex: 0 0 calc(74% - 6px);
        flex: 0 0 calc(74% - 6px);
        max-width: calc(74% - 6px);
        margin-top: 6px;
    }
}
.product-block .product-detail .pro-name a{
  text-align: left;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    gap: 15px; /* Khoảng cách giữa các sản phẩm */
}
.products-wrapper {
    display: flex;
    // width: 65%; /* Đặt kích thước của phần sản phẩm */
}

.product-item {
    flex: 0 0 calc(25%); /* Hiển thị 4 cột trên một hàng, với khoảng cách giữa các cột là 10px */
    margin-right: 5px; /* Khoảng cách giữa các sản phẩm */
    scroll-snap-align: start; /* Đảm bảo sản phẩm hiển thị đầy đủ trên màn hình khi cuộn */
}

.banner {
    flex: 0 0 35%; /* Đặt kích thước của banner */
    margin-left: 10px; /* Khoảng cách giữa banner và sản phẩm */
}
.product-item:nth-child(n+5) {
    display: none; /* Ẩn các sản phẩm từ vị trí thứ 7 trở đi */
}
.product-block .product-img > a img{
  width: 100%;
}
.config-tags li span{
  color: black;
}
.PC-gaming{
  display: flex;
  justify-content: center;
}
.PC-gaming img {
    width: 100%; /* Đặt chiều rộng hình ảnh bằng với phần tử cha */
    height: auto; /* Chiều cao tự động để giữ tỷ lệ */
    display: block; /* Loại bỏ khoảng trắng dưới hình ảnh */
    border-radius: 10px; /* Bo góc cho hình ảnh */
}
.products-gaming{
    background: #fff;
    border-radius: 4px;
    padding: 8px 4px;
}
.view-more.text-center img{
  width: 15px;
  margin: 5px;
  filter: invert(1);
}
a.btn-more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: red;
    align-items: center;
    width: 200px;
    margin: 5px auto;
    border-radius: 5px;
}
.title-collection {
    background-color: red;
    width: 200px;
    color: white;
    text-align: center;
    padding: 2px;
    border-radius: 5px;
}
@media (max-width: 768px) {
.mg-top-30 {
    display: none;
  }
@media (max-width: 768px) {
.mg-0 {
    display: none;
  }  