.section-hero {
    display: flex;
    background: #000;
    position: relative;
}

.section-hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
            to bottom,
            rgba(255, 212, 0, 0) 0%,
            rgba(255, 212, 0, 0.8) 20%,
            rgba(255, 212, 0, 1) 50%,
            rgba(255, 212, 0, 0.8) 80%,
            rgba(255, 212, 0, 0) 100%
    );
}

.section-hero .tags-wrap {
    position: relative;
    padding: 25px 0;
    text-align: center;
}

.section-hero .tags-wrap::before,
.section-hero .tags-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FDE100, transparent);
}

.section-hero .tags-wrap::before {
    top: 0;
}

.section-hero .tags-wrap::after {
    bottom: 0;
}

.section-hero .hero-block {
    width: 50%;
}

.section-hero .hero-image {
    position: relative;
    /*height: 420px;*/
    overflow: hidden;
}

.section-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.section-hero .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.4);*/
}

.section-hero .hero-top {
    position: absolute;
    top: 60px;
    left: 40px;
    z-index: 2;
    color: #fff;
}

.section-hero .hero-top h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.section-hero .hero-top p {
    margin: 20px 0 20px;
    color: #ccc;
    font-size: 20px;
}

.section-hero .btn {
    background: #FDE100;
    color: #000;
    padding: 12px 22px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
}

.section-hero .hero-content {
    padding: 20px;
}

.section-hero .tags span {
    border: 2px solid #FDE100;
    padding: 3px 6px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    line-height: 100%;
    letter-spacing: 0;
}

.section-hero .hero-content h3 {
    color: #FDE100;
    margin: 20px 0;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    line-height: 100%;
    letter-spacing: 0;
}

.product-list.mobile-scroll {
    display: flex;
    gap: 15px;
}

.section-hero .product-item {
    /*background: #fff;*/
    border-radius: 10px;
    padding: 10px;
    width: 32%;
}

.product-item.product-style img {
    border-radius: 15px;
}

.product-item.product-style .name {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin: 15px 0;
}

.product-item.product-style .price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    font-weight: bold;
    gap: 10px;
}

.product-item.product-style .price .price-current {
    color: #FDE100;
}

.product-item.product-style .price .price-old {
    color: #707072;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 500;
}


.section-new-product {
    position: relative;
    padding: 30px 20px;
    background: #000;
}

.section-new-product::before,
.section-new-product::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FDE100, transparent);
}

.section-new-product::before {
    top: 0;
}

.section-new-product::after {
    bottom: 0;
}

.section-new-product .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}


.section-new-product .product-item {
    width: calc(100% / 6 - 20px);
}

.section-best-seller {
    position: relative;
    padding: 30px 20px;
    background: #000;
}

.section-best-seller::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FDE100, transparent);
}

.section-best-seller .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.best-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.best-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.best-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.best-item span {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 25px;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    text-align: center;
}

.section-sale {
    position: relative;
    padding: 30px 20px;
    background: #000;
}

.section-sale::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FDE100, transparent);
}

.section-sale .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sales-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sales-banner img {
    width: 100%;
    display: block;
}
.sale-tabs span {
    display: inline-block;
    color: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.sale-tabs .active {
    background: #FDE100;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
}

.section-sale .product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sale-tabs {
    margin-bottom: 15px;
}

.section-size {
    padding: 30px 20px;
    background: #000;
    position: relative;
}

.section-size .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.size-wrap {
    display: flex;
    gap: 20px;
}

.size-box {
    flex: 1;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
}

.size-box h3 {
    color: #FDE100;
    margin-bottom: 15px;
}

.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-list span {
    display: inline-block;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.size-list span:hover {
    border-color: #FDE100;
    color: #FDE100;
}
.section-size::after, .store-system-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FDE100, transparent);
}
.store-system-banner {
    padding: 30px 20px;
    background: #000;
    position: relative;
}
.store-system-banner .store-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.section-blog {
    position: relative;
    padding: 30px 20px;
    background: #000;
    border-bottom: 1px solid #9C9C9C;
}

.section-blog .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content h3 {
    font-size: 20px;
    color: #C8A5A5;
    margin-bottom: 10px;
    line-height: 24px;
    letter-spacing: 0;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    color: #111111;
    line-height: 20px;
    letter-spacing: 0;
}
.section-blog .blog-item {
    padding: 12px;
}
.section-blog .blog-item img {
    border-radius: 6px;
}
.section-blog .blog-item .blog-content {
    padding-top: 15px;
}

.section-policy {
    padding: 30px 20px;
    background: #000;
}

.section-policy .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.policy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.policy-items {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.policy-items .icon {
    font-size: 40px;
    color: #e74c3c;
    border-right: 1px solid #E6E6E6;
    padding-right: 40px;
}
.policy-items .icon img {
    width: 80px;
    height: 80px;
}

.policy-items h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.policy-items p {
    font-size: 18px;
    color: #919191;
    line-height: 100%;
}


@media (max-width: 768px) {
    .section-hero {
        flex-direction: column;
    }

    .section-hero .hero-block {
        width: 100%;
    }

    .section-hero::after {
        display: none;
    }

    .section-hero .hero-top {
        top: 40px;
        left: 20px;
    }

    .section-hero .hero-top h2 {
        font-size: 28px;
    }

    .section-hero .tags {
        overflow-x: auto;
        white-space: nowrap;
    }

    .section-hero .tags span {
        display: inline-block;
        margin-right: 8px;
    }

    body .mobile-scroll {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-behavior: smooth;
    }

    .mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .product-item.product-style {
        min-width: 160px;
        flex: 0 0 70%;
    }

    .scroll-bar {
        height: 3px;
        background: rgba(255, 255, 255, 0.2);
        margin-top: 8px;
        position: relative;
        border-radius: 2px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .scroll-bar-inner {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 80px;
        background: #fff;
        border-radius: 2px;
    }

    .best-item {
        flex: 0 0 70%;
    }

    .section-sale .product-list {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-behavior: smooth;
    }
    .size-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .size-box {
        padding: 15px;
    }

    .size-list span {
        padding: 6px 10px;
        font-size: 13px;
    }
    .blog-item {
        flex: 0 0 80%;
    }
    .policy-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .policy-items {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 15px;
        gap: 10px;
    }

    .policy-items .icon {
        padding-right: 10px;
    }
    .policy-items .icon img {
        width: 50px;
        height: 50px;
    }

    .policy-item h3 {
        font-size: 22px;
    }

    .policy-item p {
        font-size: 18px;
    }
}


#header_chir #main_header, .box-vertical-megamenus h4.title span.btn-open-mobile, .box-vertical-megamenus .title .title-menu {
    background: #000;
}
.open-menu, .open-menu:before, .open-menu:after  {
    background: #fff !important;
}
.cart_mobile span i, .open-user i {
    color: #fff;
    font-size: 25px;
}
#count_Cart_mobile {
    right: -10px !important; ;
    background: #fff !important;
    color: #000;
}
.div-user-control {
    width: unset;
    height: unset;
}
#cartItemsCount .fa-shopping-cart, .div-user-control .fa-user-circle {
    font-size: 20px;
    color: #fff;
}
.ul-control-box .info {
    margin: unset;
}
#count_Cart.header-cart-count {
    top: -14px;
    right: -10px;
}
.text-2-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.seo-title {
    position: absolute;
    left: -9999px;
}