.banner {
    margin-top: 15px;
}

.cart-notification {
    background: #161616;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 12px;
    width: 300px;
    display: flex;
    gap: 10px;
    margin-top: 10px;
    border-radius: 6px;
    animation: fadein 0.3s ease;
    position: relative;
}

.cart-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-notification .info {
    flex: 1;
}

.cart-notification .info .name {
    font-weight: bold;
    margin-bottom: 4px;
}

.cart-notification .info .price {
    color: var(--color-3);
}

.cart-notification .info .old-price {
    text-decoration: line-through;
    color: #FFF;
    font-size: 0.9em;
}

.cart-notification .view-cart-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 8px;
    background: var(--color-3);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85em;
}

.cart-notification.fade-out {
    animation: fadeout 0.5s forwards;
}

@keyframes fadein {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeout {
    from {opacity: 1; transform: translateY(0);}
    to {opacity: 0; transform: translateY(-20px);}
}

.banner-inner {
    display: grid;
    grid-template-columns: 20.8% auto 16.6%;
    gap: 15px;
}

/* Giá»¯ chá»— cá»‘ Ä‘á»‹nh cho slider */
.banner-slider {
  overflow: hidden;
}

/* áº¨n toÃ n bá»™ slide */
.banner-slider .item {
  display: none;
}

/* CHá»ˆ hiá»‡n slide Ä‘áº§u tiÃªn */
.banner-slider .item:first-child {
  display: block;
}

/* Khi slick Ä‘Ã£ init â†’ cho phÃ©p slick kiá»ƒm soÃ¡t */
.banner-slider.slick-initialized .item {
  display: block;
}

.banner-slider img { 
    border-radius: 5px;
    width: 100%;
    height: 345px;
    object-fit: cover;
}

.banner .img-m {
    display: none;
}

.slideshow-list .item {
    overflow: hidden;
    border-radius: 5px;
    display: block;
}

.slideshow-list .item img {
    width: 100%;
    display: block;
    height: 165px;
    border-radius: 5px;
}

.slideshow-list .item:not(:last-child) {
    margin-bottom: 15px;
}


/* product category  */
.product-category1 {
    padding: 10px 0 10px 10px;
    background-color: var(--color-1);
    border-radius: 5px;
}

.btn-menuproduct {
    cursor: pointer;
    margin: 0;
    /* height: 43px; */
    line-height: 35px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-3);
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}

.btn-menuproduct svg {
    height: 16px;
    fill: currentColor;
    margin-right: 9px;
    transform: translateY(2px);
}

.btn-menuproduct a {
    color: var(--color-3);
    font-size: 16px;
    font-weight: 500;
}

.menu-sidebar {
    position: relative;
}

.menu-sidebar ul {
    border-radius: 0 0 10px 10px;
}

.menu-sidebar ul li {
    list-style: none;
}

.menu-sidebar li {
    border-bottom: 1px solid #383838;
    padding: 9px 10px 8px 0px; 
}

.menu-sidebar li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.menu-sidebar li .name {
    display: grid;
    grid-template-columns: 22px auto;
    gap: 5px;
    align-items: center;
}

.menu-sidebar li:last-child {
    border-bottom: unset;
}

.menu-sidebar ul li a svg {
    height: 12px;
    fill: currentColor;
    margin-left: 5px;
}

.menu-sidebar li:hover .submenu-sidebar {
    display: block;
}

.submenu-sidebar {
    left: 100%;
    z-index: 20;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 5px 5px;
    background: #161616;
    height: max-content;
    display: none;
    flex-wrap: wrap;
    top: 0;
    border-radius: 5px;
    width: 240px;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    position: absolute;
    min-height: 290px;
}

.submenu-sidebar ul {
    height: fit-content;
    background: #161616;
}

.submenu-sidebar li {
    border: none;
}

/* Category  */
.home-categories {
    padding: 15px 0;
}

.category-slider .clm.hide {
    display: none;
}

.category-slider {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* gap: 10px; */
}

.btn-show-all {
    background-color: var(--color-3);
    color: var(--color-2);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    display: none;
    margin: 20px auto 0;
}

.item-category {
    background-color: var(--color-2);
    font-weight: 700;
    position: relative;
    text-align: center;
    display: block; 
    margin: 60px 0px 0;
    padding: 60px 8px 15px;
}

.item-category .wrap-img {
    padding-bottom: 70%;
    border-radius: 50%;
    width: 70%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-category .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 37px;
    font-size: 13px;
}

/* Flash sale  */
.flash-sale {
    margin-top: 15px;
}

.flash-sale .inner {
    background-color: var(--color-5);
    padding: 30px 20px;
    border-radius: 5px;
}

.flash-sale .title {
    color: var(--color-2);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    background: #ffb700;
    display: inline-block;
    padding: 7px 20px;
    height: 46px;
    margin-left: 27px;
}

.flash-sale .title-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flash-sale .title::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    border: 23px solid #ffb700;
    z-index: 0;
    left: -23px;
    border-right-width: 2px;
    border-left-color: transparent;
}

.flash-sale .title::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    border: 23px solid #ffb700;
    z-index: 0;
    border-color: #ffb700;
    right: -23px;
    border-left-width: 2px;
    border-right-color: transparent;
}

.flash-sale .time-sale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.flash-sale .time-sale span {
    margin-right: 8px;
    color: var(--color-2);
}

.flash-sale .time-sale .time {
    background-color: #ffb700;
    color: var(--color-1);
    border-radius: 5px;
    padding: 4px;
    width: 37px;
}

.flash-sale .time-sale .number {
    font-weight: 700;
}

.flash-sale .time-sale .type {
    font-size: 12px;
}

.flash-sale .see-all {
    text-align: right;
}

.flash-sale .see-all svg {
    width: 25px;
    height: 25px;
}

.flash-sale .see-all a {
    color: var(--color-2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
}

.flash-sale .item-product {
    border: none !important;
}

.product-category .product-block {
    padding-top: 16px;
    margin-top: 0;
    border-top: 1px solid var(--color-3);
}

.product-block {
    margin-top: 16px;
}

.product-block > .row {
    row-gap: 16px;
}

.item-product {
    border: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.item-product .discount {
    background: var(--color-3);
    border-radius: 5px 5px 0px 5px;
    padding: 0px 10px;
    color: var(--color-1);
    position: absolute;
    right: 5px;
    top: 5px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.item-product .discount::before {
    content: "";
    position: absolute;
    right: 0;
    top: 22px;
    border-left: 10px solid transparent;
    border-bottom: 0px solid transparent;
    border-top: 10px solid var(--color-3);
}

.item-product .wrap-img {
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
    padding-bottom: 100%;
}

.item-product .wrap-img img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
}

.item-product .wrap-img:hover img {
    transform: scale(1.05);
}

.item-product .wrap-img .image1 {
    transform: translateY(0);
}

.item-product .wrap-img .image2 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.item-product:hover .image1 {
    opacity: 0;
    transform: translateY(100%);
}

.item-product:hover .has-one .image1 {
    opacity: 1;
    transform: translateY(0%);
}

.item-product:hover .image2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.item-product .name {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-weight: 500;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 35px;
}

.item-product .des {
    margin-top: 10px;
    display: none;
}

.item-product .des ul { 
    margin-left: 18px;
}

.item-product .button-add svg {
    width: 16px;
    height: 16px;
}

.item-product .option-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.item-product .button-add {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--color-1);
    background-color: var(--color-3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-product .price-wrap {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 8px;
}

.item-product .price-new {
    font-size: 15px;
    color: var(--color-3);
    font-weight: 700;
}

.item-product .price-old {
    color: #8a919b;
    font-size: 12px;
}

.item-product .price-wrap .hot img{
    width: 35px;
}

.item-product .quick-view {
    display: flex;
}

.item-product .quick-view svg {
    width: 24px;
    height: 24px;
}

/* .item-product .add-cart-ajax {
    background-color: var(--color-5);
    color: var(--color-2);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
} */

.item-product .view-detail-btn {
    background-color: var(--color-3);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
}

.item-product .add-cart-ajax:hover {
    background-color: var(--color-3);
}

.item-product .product-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    padding-top: 12px;
    gap: 4px;
    width: 100%;
}

.item-product .product-info {
    /* background-color: #000; */
    position: relative;
    z-index: 2;
    transition: .3s;
    padding-top: 10px;
}

.shopping-day {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
}

.shopping-day img {
    width: 40px;
}

.item-product .product-thumb .brand {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.item-product .product-thumb .brand img {
    max-width: 60px;
}

.stars {
    display: flex;
    gap: 10px;
    display: none;
    align-items: center;
    margin-bottom: 5px;
}

.stars ul li {
    list-style: none;
    display: flex;
}

.stars ul {
    display: inline-flex;
}

.stars ul li svg {
    width: 20px;
    height: 20px;
}

.item-product .product-thumb {
    position: relative;
}

.flash-sale .item-product .productcount {
    display: block;
}

.item-product.sale {
    border: 5px solid var(--color-5);
}


.item-product .productcount {
    margin-top: 15px;
    margin-bottom: 5px;
    min-height: 17px;   
    display: none;
}

.item-product .productcount .countitem {
    background-color: #ffe8e6;
    border-radius: 10px;
    position: relative;
    height: 17px;
}

.item-product .productcount .fire {
    position: absolute;
    width: 22px;
    height: 22px;
    top: -9px;
    left: 0;
    z-index: 1;
}

.item-product .productcount .countdown {
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(to right, #c8103d, #f4b631);
    z-index: 0;
    left: 0;
    top: 0;
    height: 17px;
}

.item-product .productcount .number {
    font-size: 12px;
    position: absolute;
    top: 0;
    z-index: 3;
    color: var(--color-2);
    line-height: 17px;
    left: 50%;
    min-width: 70px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transform: translateX(-50%);
}

.flashsale-slider {
    padding-bottom: 30px;
    margin-top: 25px;
}

.flashsale-slider .slick-slide {
    margin: 0 8px;
}

.flashsale-slider .slick-list {
    margin: 0 -8px;
}

.flashsale-slider .slick-dots {
    bottom: -10px;
}

.review-slider .slick-dots {
    margin-top: 15px;
}

.slick-dots li {
	height: 10px;
    width: 10px;
	border: none;
	background-color: #FFF;
}

.slick-dots li.slick-active {
	background-color: #fabd5c;
}

.slick-dots li button:before {
    display: none;
}

/* Product category  */
.product-category .inner {
    background-color: #000;
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px 20px;
}

.category-child {
    text-align: right;
    overflow-x: auto;
    white-space: nowrap;
}

.category-child::-webkit-scrollbar {
    height: 5px;
}

.category-child::-webkit-scrollbar-thumb {
    background: var(--color-3); 
    border-radius: 10px;
}

.category-child li {
    display: inline-block;
}

.category-child li:not(:first-child) {
    margin-left: 5px;
}

.category-child li a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    font-weight: 400;
    font-size: 12px;
}

.category-child li a:hover {
    color: var(--color-2);
    background-color: var(--color-3);
}

.product-category .title a{
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    padding: 7px 20px;
    background: var(--color-3);
    border-radius: 5px 5px 0 0;
    margin-right: 20px;
    position: relative;
    line-height: 24px;
    display: inline-block;
}

.product-category .title a:after {
    content: '';
    display: block;
    line-height: 36px;
    background: var(--color-3);
    width: 25px;
    height: 38px;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -10px;
    transform: skewX(21deg);
    border-radius: 0 5px 0 0;
}

.product-category .banner-category {
    margin-top: 25px;
}

.product-category .banner-category .slick-slide {
    margin: 0 8px;
}

.product-category .banner-category .slick-list {
    margin: 0 -8px;
}

.product-category .banner-category img {
    border-radius: 5px;
}

/* News home  */
.news-home {
    padding: 20px 0;
}

.news-home .inner {
    padding: 25px 20px 20px;
    background-color: #000;
    border-radius: 5px;
}

.news-home .title {
    display: inline-flex;
    background: linear-gradient(0deg, var(--color-3), var(--color-4));
    border-radius: 5px;
    color: var(--color-1);
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 30px 6px 10px;
    gap: 6px;
}

.news-home .title svg {
    fill: var(--color-1) !important;
}

.news-home-block {
    margin-top: 10px;
}

.news-home .title-section-home {
    text-align: left;
}

.item-news-home.left .wrap-img {
    padding-bottom: 64.5%;
    margin-bottom: 10px;
}

.item-news-home.left .name {
    font-size: 20px;
}

.item-news-home.left .des {
    font-size: 15px;
    margin-top: 5px;
}

.item-news-home .wrap-img {
    padding-bottom: 71.5%;
}

.item-news-home .name {
    font-size: 17px;
}

.item-news-home .des {
    font-size: 14px;
    margin-top: 5px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.right .item-news-home:not(:last-child) {
    margin-bottom: 16px;
}

/* Äá»‘i tÃ¡c  */
.doi-tac-slider .slick-slide {
    margin: 0 8px;
    background-color: var(--color-2);
    padding: 5px;
    border-radius: 5px;
    height: auto;
}

.doi-tac-slider .slick-list {
    margin: 0 -8px;
}

.doi-tac-slider .item img {
    border-radius: 5px;
}

.doi-tac {
    background: linear-gradient(0deg, var(--color-3), var(--color-4));
    padding: 20px 0;
}

.form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    display: none;
    min-width: 370px;
}

.form-popup.show {
    display: block;
}

.form-popup .content img {
	height: 600px;
	cursor: pointer;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 31;
    display: none;
}

.popup-overlay.show {
    display: block;
}

.close-form-popup {
    position: absolute;
    top: -8px;
    right: 0px;
    cursor: pointer;
}

.customer .inner {
    margin-top: 20px;
} 

.title-section-home {
    text-align: center;
    text-transform: uppercase;
    color: var(--color-3);
    font-size: 22px;
    margin-bottom: 15px;
}

/* FAQ  */
.title-section-product {
    font-size: 22px;
    margin-bottom: 15px;
}

.accordion-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #383838;
    padding-bottom: 10px;
}

.accordion-title {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    padding-right: 30px;
    font-weight: 500;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 5px;
    font-size: 20px;
    transition: 0.3s;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-title::after {
    content: "\2014";
}

.accordion-item.active .accordion-title {
    color: var(--color-3);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease;
}

.accordion-content .noi-dung {
    font-size: 13px !important;
}

.accordion-content .content {
    padding-top: 15px;
}

.accordion-content p {
    margin-bottom: 5px !important;
    font-weight: 300 !important;
}

.custormer_cmt {
    font-size: 14px;
    line-height: 25px;
}

.customer_info {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    justify-content: center;
}

.customer_img {
    margin: 10px auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testi-card_icon img {
    height: 31px;
    object-fit: contain;
    width: 55px;
    margin-bottom: 8px;
    display: block;
	margin: 10px auto;
}

.customer_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border-radius: 100%;
}

.customer_name {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.customer_work {
    display: block;
    font-size: 13px;
    text-align: center;
}

.item-post .wrap-img {
	padding-bottom: 66.5%;
}

.item-post .content {
	margin-top: -10px;
	padding: 20px 0 25px;
}

.item-post .name {
    font-size: 17px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 44px;
}

.item-post .des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 10px;
}

.review-wrap,
.faq {
    background-color: #000;
    border-radius: 5px;
    padding: 25px 20px 20px;
    height: 100%;
}

.button-web {
	border-radius: 20px;
	padding: 7px 0px;
	/* color: var(--color-2) !important; */
	/* background-color: var(--color-3); */
	font-weight: 600;
	display: inline-flex;
    align-items: center;
    gap: 5px;
	cursor: pointer;
	font-size: 13px;
	text-transform: uppercase;
}

.button-web svg {
    width: 16px;
    height: 16px;
}

.button-web-wrap {
    text-align: right;
}



.form_dk {
    padding: 15px 0;
    background: var(--color-1);
    color: var(--color-2);
    border-bottom: 1px solid #383838;
}

.hotline_home {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hotline_home img {
    width: 50px;
}

.box_phonenumber .number {
    font-weight: 700;
    font-size: 25px;
    /* color: #F00; */
}

.box_form h3 {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.box_form form {
    width: 100%;
    display: grid;
    grid-template-columns: auto max-content;
}

.box_form button {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-1);
    background-color: var(--color-3);
    border-radius: 0 5px 5px 0;
    padding: 8px 15px;
}

.box_form input {
    font-size: 15px;
    border-radius: 5px 0 0 5px;
    padding: 5px 15px;
}

.box-qc-desk .inner {
    background-color: #000;
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px 20px;
}

.box-qc-desk .img-surfing {
    border-radius: 10px;
    display: flex;
}

@media (max-width: 1260px) { 
    .btn-menuproduct a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) { 
    .product-category1 {
        display: none;
    }

    .banner-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .banner-slider img {
        height: auto;
    }

    .slideshow-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .slideshow-list .item img {
        height: auto;
    }

    .slideshow-list .item:not(:last-child) {
        margin-bottom: 0;
    }
}

@media (max-width: 992px) { 
    .category-slider {
        grid-template-columns: repeat(6, 1fr);
    }

    .faq {
        margin-top: 20px;
        height: auto;
    }

    .box_phonenumber .number {
        font-size: 20px;
    }

}

@media (max-width: 768px) {
    .category-slider {
        grid-template-columns: repeat(4, 1fr);
    }

    .slick-dots li {
        height: 12px;
        width: 12px;
    }

    .category-child {
        text-align: left;
        margin-top: 12px;
    }

    .item-product .product-button {
        position: unset;
        padding-top: 5px;
    }   

    .item-product:hover .product-info {
        transform: translateY(0px);
    }

    .item-product .add-cart-ajax {
        font-size: 12px;
        padding: 5px;
    }

    .banner .img-m {
        display: block;
    }

    .banner .img-pc {
        display: none;
    }

    .product-category .product-block {
        border-top: none;
    }

    .product-category .title {
        position: relative;
    }

    .product-category .title::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-3);
    }

    .item-news-home.left .des {
        display: -webkit-box;
        margin-bottom: 15px;
        text-align: left;
    }

    .hotline_home {
        margin-bottom: 15px;
    }

    .button-web-wrap {
        display: none;
    }

    .box-qc-desk .inner {
        padding: 10px;
    }

    .box-qc-desk .row {
        row-gap: 10px;
    }

    .product-block .row.item-le .clm:last-child {
        display: none;
    }
}

@media (max-width: 576px) { 
    .category-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-home {
        padding: 20px 0;
    }

    .news-home .inner {
        padding: 15px 10px;
    }

    .item-news-home .des {
        display: none;
    }

    .news-home-block {
        margin-top: 15px;
    }

    .product-category .title {
        font-size: 20px;
    }

    .product-category .inner {
        padding: 15px 10px;
        margin-top: 20px;
    }

    .product-block {
        margin-top: 8px;
    }

    .item-product .des {
        font-size: 13px;
    }

    .product-category .category-child {
        margin-bottom: 10px;
    }

    .product-category .banner-category {
        margin-top: 15px;
    }

    .flash-sale .inner {
        padding: 15px 10px;
        position: relative;
    }

    .flashsale-slider .slick-slide {
        margin: 0 4px;
    }

    .flashsale-slider .slick-list {
        margin: 0 -4px;
    }

    .item-product .price-wrap {
        margin-top: 10px;
    }

    .flash-sale .see-all {
        position: absolute;
        top: 26px;
        right: 12px;
    }

    .flashsale-slider .slick-dots {
        bottom: -5px;
    }

    .flash-sale {
        margin-top: 5px;
    }

    .flash-sale .time-sale span {
        display: none;
    }

    .flash-sale .title-wrap {
        display: block;
        text-align: center;
    }

    .flash-sale .time-sale .time {
        display: flex;
        gap: 5px;
        align-items: center;
        width: unset;
    }

    .flash-sale .time-sale {
        background: #ffb700;
        justify-content: center;
        border-radius: 5px;
        font-size: 16px;
        gap: 10px 15px;
        margin-top: 10px;
    }

    .flash-sale .time-sale .type {
        font-size: 14px;
        transform: translateY(1px);
    }

    .category-slider .slick-slide {
        margin: 45px 8px 0;
        padding: 50px 5px 15px;
    }

    .item-product .view-detail-btn {
        font-size: 12px;
    }

    .btn-show-all {
        display: block;
        grid-column: 1 / -1;
    }
  
    .flash-sale .title {
		font-size: 16px;
      	line-height: 33px;
    	margin-left: 0px;
    }

    .customer .inner {
        margin-top: 20px;
    }

    .title-section-home {
        font-size: 20px;
    }

    .item-news-home .name {
        font-size: 15px;
    }

    .item-news-home.left .name {
        font-size: 18px;
    }
}

