@font-face {
    font-family: 'yekan';
    src: url('/assets/fonts/BYekan.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body, body * {
    font-family: yekan, sans-serif;
}
:root {
    --primary-color: #fe8047;
    --secondary-color: #fa1258;
    --gradient-main: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    --gradient-vertical: linear-gradient(
        180deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    --bg-body: #fafafa;
    --bg-white: #ffffff;
    --bg-pattern: #faf5f5;
    --bg-light-orange: #fff6f3;
    --bg-card-light: #fff5f0;
    --bg-gray-dark: #484848;
    --bg-overlay-blur: rgba(217, 217, 217, 0.03);
    --text-black: #000000;
    --text-white: #ffffff;
    --text-dark: #484848;
    --text-gray-dark: #414141;
    --text-gray-medium: #646464;
    --text-gray: #727272;
    --text-gray-light: #a7a7a7;
    --text-muted: #9aa8bc;
    --text-placeholder: #bbbbbb;
    --text-link-inactive: #c2c2c2;
    --text-price-symbol: #bdbdbd;
    --text-peach: #ffbb9d;
    --border-peach: #ffdcca;
    --border-peach-dark: #ffbb9d;
    --border-gray-light: #ededed;
    --border-gray-medium: #dfdfdf;
    --border-input: #ffe6d9;
    --shadow-soft: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-card: 0px 0px 26.1px 1px rgba(0, 0, 0, 0.03);
    --shadow-orange: 4px 0px 4.3px rgba(254, 128, 71, 0.5)
}
* {
    box-sizing: border-box;
    font-family: "Yekan Bakh",Vazirmatn
}
button {
    cursor: pointer;
    transition: all .3s cubic-bezier(.25,.8,.25,1)
}
button:hover {
    transform: translateY(-2px)
}
button:active {
    transform: translateY(1px) scale(.98)
}
body {
    margin: 0;
    background-color: var(--bg-body)
}
ol,
ul {
    list-style: none;
    padding: 0
}
button {
    background: 0 0;
    border: none;
    cursor: pointer
}
a {
    text-decoration: none
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}
#banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 93.5%;
    height: 67px;
    background: var(--gradient-main);
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    font-family: Ray,Vazirmatn
}
#banner span {
    font-weight: 950;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-white)
}
#banner div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 209px;
    height: 34px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 950;
    font-size: 20px;
    line-height: 32px;
    margin-right: 10px
}
#header-top {
    display: flex;
    width: 90%;
    height: 66px;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    margin: 38px auto 14px auto
}
#header-logo img {
    width: 162px;
    height: 66px
}
#header-search-wrapper {
    width: 337px
}
#header-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 100%;
    height: 49px;
    background: var(--bg-light-orange);
    border: 1px solid var(--border-peach);
    border-radius: 110px
}
#searchBox {
    background: 0 0;
    border: none
}
#searchBox:focus {
    outline: 0
}
#searchBox::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-placeholder)
}
#header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-right: auto
}
#header-actions a,
#header-actions button {
    display: flex;
    justify-content: center;
    align-items: center
}
#terms-link {
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-link-inactive)
}
.login-button {
    width: 153px;
    height: 49px;
    background: var(--gradient-main);
    border: 1px solid var(--border-peach);
    box-shadow: var(--shadow-soft);
    border-radius: 110px;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: var(--text-white);
    gap: 8px
}
.cart-button {
    position: relative;
    width: 51px;
    height: 51px;
    background: var(--bg-white);
    border: 1px solid var(--primary-color);
    border-radius: 100%
}
.cart-button .cart-count {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 4px;
    top: -4px;
    border-radius: 100%;
    background: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    line-height: 19px;
    color: var(--text-white)
}
#header-bottom {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 93%;
    height: 115px;
    background: var(--bg-white);
    border: 1px solid var(--border-gray-light);
    box-shadow: var(--shadow-card);
    border-radius: 110px;
    margin: 0 auto;
    padding: 0 34px;
    gap: 35px;
    z-index: 10
}
.category-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px
}
.category-toggle span {
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    color: var(--text-gray)
}
#header-divider {
    width: 0;
    height: 34px;
    border: 1px solid var(--primary-color)
}
#header-bottom nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px
}
#header-bottom nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 137px;
    height: 39px;
    border-radius: 48px;
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    color: var(--text-gray);
    transition: all .3s ease
}
#header-bottom nav a.active,
#header-bottom nav a:hover {
    background: var(--gradient-main);
    color: var(--text-white)
}
#header-bottom nav a.active svg path,
#header-bottom nav a:hover svg path {
    fill: #fff
}
#phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    margin-right: auto;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    color: var(--primary-color)
}
#gallery-home {
    display: flex;
    position: relative;
    width: 93%;
    height: 425px;
    background: var(--bg-white);
    border-radius: 20px;
    margin: 48px auto 0 auto
}
#gallery-home-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden
}
#gallery-home-wrapper::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 75px;
    width: 150px;
    height: 100px;
    background-color: var(--bg-body);
    z-index: 5;
    clip-path: path(
        "M 0,100 A 140,140 0,0,0 50,75 A 65,100 0,0,1 100,75 A 140,140 0,0,0 150,100 Z"
    )
}
#gallery-home-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    pointer-events: none
}
#gallery-home-wrapper a.active {
    opacity: 1;
    pointer-events: auto
}
#gallery-home-wrapper picture {
    display: block;
    width: 100%;
    height: 100%
}
#gallery-home img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}
#gallery-home-dots {
    position: absolute;
    bottom: -21px;
    right: 127px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10
}
#gallery-home-dots .dot {
    width: 4px;
    height: 19px;
    border-radius: 100px;
    background: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease
}
#gallery-home-dots .dot.active {
    height: 40px;
    background: var(--primary-color);
    border-radius: 100px
}
#trending-news {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 93.5%;
    gap: 35px;
    margin: 42px auto 79px auto
}
#news-divider {
    width: 20px;
    height: 135px;
    border-radius: 100px;
    background: linear-gradient(to bottom,var(--primary-color) 0,#fa1a57 100%)
}
#news-featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 180px;
    background-color: var(--bg-white);
    box-shadow: 0 0 36.5px rgba(0,0,0,.02);
    border-radius: 39px;
    overflow: hidden
}
#news-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}
#trending-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 41px
}
#trending-header {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-right: 11px;
    width: 363px;
    height: 146px;
    right: -41px;
    background: var(--bg-gray-dark);
    border-radius: 20px;
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    color: var(--text-white)
}
#trending-links {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    justify-items: center;
    align-items: center;
    gap: 11px;
    padding: 11px;
    width: 457px;
    height: 180px;
    background: linear-gradient(77.65deg,var(--primary-color) 33.45%,var(--secondary-color) 96.43%);
    box-shadow: var(--shadow-card);
    border-radius: 30px;
    z-index: 10
}
#trending-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    padding: 5px 10px;
    font-size: 10px;
    color: var(--secondary-color);
    background-color: var(--bg-white);
    border-radius: 15px;
    white-space: nowrap;
    transition: background-color .2s
}
#flash-sales-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 93.5%;
    height: 347px;
    gap: 13px;
    margin: 0 auto
}
#flash-sales-banner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    gap: 10px;
    min-width: 226px;
    height: 100%;
    background: var(--gradient-vertical);
    border-radius: 29px
}
#flash-sales-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 100px;
    background-color: var(--bg-body);
    z-index: 20;
    clip-path: path(
        "M 0,100 A 100,100 0,0,0 45,65 A 40,40 0,0,1 105,65 A 100,100 0,0,0 150,100 Z"
    )
}
#logo-wrapper-sales {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    z-index: 25
}
#logo-wrapper-sales picture {
    display: flex;
    width: 100%;
    height: 100%
}
#logo-wrapper-sales img {
    display: flex;
    width: 100%;
    height: 100%
}
#flash-sales-banner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 126px;
    height: 32px;
    background: var(--bg-white);
    border-radius: 48px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: var(--secondary-color)
}
#flash-sales-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth
}
.sale-product-card {
    display: flex;
    flex: 0 0 calc(25% - 15px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    min-width: 234px;
    height: 100%;
    background: var(--bg-white);
    border: 1px solid rgba(254,128,71,.21);
    box-shadow: var(--shadow-card);
    border-radius: 20px;
    padding: 6px;
}
.sale-product-card > * {
    width: 100%
}
.product-image-wrapper img {
    width: 120px;
    height: 144px;
    object-fit: contain
}
.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9px;
    width: 100%
}
.product-spec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px
}
.sale-percent {
    width: 30px;
    height: 22px;
    padding: 4px;
    background: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    color: var(--text-white)
}
.ram-spec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 53px;
    height: 35px;
    background: var(--bg-card-light);
    border: .3px solid #ffceb8;
    border-radius: 5px;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: var(--primary-color)
}
.storage-spec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 54px;
    height: 30px;
    background: var(--bg-card-light);
    border: .3px solid #ffceb8;
    border-radius: 5px;
    font-weight: 400;
    font-size: 8px;
    line-height: 12px;
    color: var(--primary-color)
}
.product-info-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 8px
}
.product-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    height: 100px;
}
.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px
}
.product-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -.04em;
    color: var(--text-gray)
}
.product-des {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    text-align: right;
    letter-spacing: -.04em;
    color: var(--text-muted)
}
.regular-price .price {
    font-weight: 900;
    font-size: 20px;
    line-height: 31px;
    color: var(--primary-color)
}
.regular-price .price-symbol {
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: -.04em;
    color: var(--text-price-symbol)
}
.old-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px
}
.old-price span {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: -.04em;
    color: #bebebe;
    text-decoration: line-through;
    text-align: center
}
.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 0 10px;
    bottom: 0px;
}
.action-buttons button {
    display: flex;
    justify-content: center;
    align-items: center
}
.see-product {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 2;
    height: 36px;
    background: var(--primary-color);
    box-shadow: var(--shadow-orange);
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -.04em;
    color: var(--text-white)
}
.compare,
.save {
    flex: 1;
    min-width: 36px;
    height: 36px;
    background: var(--bg-card-light);
    border-radius: 5px
}
#category-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 115px auto 0 auto;
    overflow: hidden
}
#category-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 66px;
    height: 100%;
    width: 71%;
    padding-bottom: 60px
}
#category-section picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1
}
#category-section img {
    object-fit: cover;
    width: 100%;
    height: 100%
}
#category-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}
.brand-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px
}
.brand-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column
}
.brand-text-title {
    font-weight: 900;
    font-size: 16px;
    line-height: 25px;
    color: var(--text-gray-medium)
}
.brand-text-des {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: var(--text-peach)
}
#category-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    justify-items: center;
    align-items: center;
    gap: 20px;
    width: 100%
}
.category-filter-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 29px
}
.filter-category {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px
}
.filter-icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-radius: 100%
}
.filter-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}
.filter-label:nth-child(1) {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: var(--text-gray)
}
.filter-label:nth-child(2) {
    font-weight: 900;
    font-size: 32px;
    line-height: 50px;
    color: var(--text-gray-dark)
}
.filter-options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px
}
.filter-options-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px
}
.filter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 171px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-peach);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-gray);
    transition: all .3s ease;
    cursor: pointer
}
.filter-button.active,
.filter-button:active,
.filter-button:hover {
    background: #fe8047;
    border-color: #fe8047;
    color: #fff
}
.filter-button.active span,
.filter-button:active span,
.filter-button:hover span {
    color: #fff
}
.filter-button.active svg path,
.filter-button:active svg path,
.filter-button:hover svg path {
    fill: #fff
}
.filter-button span {
    font-weight: 900;
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-color);
    margin-right: 4px;
    transition: color .3s ease
}
.filter-button svg {
    margin-right: 8px
}
.filter-button svg path {
    transition: fill .3s ease
}
.filter-indicator {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--bg-gray-dark)
}
#products-sec {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 93.5%;
    margin: 130px auto 0 auto
}
#products-sec-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%
}
#products-sec-header div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 168px
}
#products-sec-header-title {
    width: max-content;
    font-weight: 900;
    font-size: 15px;
    line-height: 55px;
    color: var(--primary-color)
}
#products-sec-header-border {
    width: 100%;
    height: 1px;
    background-color: var(--border-input)
}
#see-all-products {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 32px;
    background: var(--bg-card-light);
    border: 1px solid var(--border-peach-dark);
    box-shadow: 5px 0 4px var(--border-peach);
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    color: var(--primary-color)
}
#products-sec-content {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(234px,1fr));
    justify-items: center;
    align-items: start;
    width: 100%;
    gap: 20px;
    height: 100%;
}
#brand-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 93.5%;
    height: 200px;
    margin: 61px auto 71px auto;
    gap: 17px
}
.brand-card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}
.brand-card picture {
    display: flex;
    width: 100%;
    height: 100%
}
.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.site-address {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: 400;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: .23em;
    color: rgba(217,217,217,.29)
}
#footer-about-badge,
#footer-site-address,
.site-address {
    font-family: Wallpoet,Vazirmatn
}
#best-brands-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 67px 0 117px 0;
    width: 100%
}
#best-brands-banner {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 128px;
    gap: 16px;
    background: linear-gradient(91.7deg,var(--primary-color) 13.82%,var(--secondary-color) 51.49%);
    box-shadow: 0 0 17.6px 3px rgba(0,0,0,.04)
}
#best-brands-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background-color: var(--bg-white)
}
#best-brands-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}
#best-brands-text span:nth-child(1) {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: var(--text-white)
}
#best-brands-text span:nth-child(2) {
    font-weight: 900;
    font-size: 32px;
    line-height: 50px;
    color: var(--text-white)
}
#best-brands-bg-wrapper {
    flex: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 128px;
    width: 100%
}
#best-brands-bg {
    display: flex;
    width: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden
}
#best-brands-bg picture {
    display: flex;
    width: 100%
}
#best-brands-bg img {
    display: flex;
    width: 100%
}
#best-brands-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-14px);
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto
}
.best-brands {
    flex-shrink: 1;
    display: flex;
    z-index: 10;
    width: auto;
    min-width: 60px;
    max-width: 200px;
    height: auto
}
.best-brands picture {
    display: flex;
    width: 100%
}
.best-brands img {
    display: flex;
    width: 100%
}
#phone-sort-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 52px;
    width: 93.5%;
    margin: 0 auto
}
#phone-sort-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 39px;
    width: 100%
}
#sort-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px
}
#sort-btn-wrapper button {
    width: 184px;
    height: 57px;
    background: var(--bg-white);
    box-shadow: 0 0 44.5px -3px rgba(255,187,157,.23);
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    line-height: 171.2%;
    text-align: center;
    color: var(--text-dark)
}
#sort-btn-wrapper button.active {
    background: var(--primary-color);
    box-shadow: 0 0 44.5px -3px rgba(101,70,237,.1);
    color: var(--text-white);
    transition: all .3s ease
}
#sort-container {
    width: 100%;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    overflow-x: auto
}
#sort-container table {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: auto
}
#sort-container thead th {
    padding: 15px 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    color: #aeaeae;
    border-bottom: 1px solid var(--border-gray-medium);
    white-space: nowrap
}
#sort-container tbody td:nth-child(1),
#sort-container thead th:nth-child(1) {
    width: 8%;
    min-width: 60px
}
#sort-container tbody td:nth-child(2),
#sort-container thead th:nth-child(2) {
    width: 20%;
    min-width: 150px
}
#sort-container tbody td:nth-child(3),
#sort-container thead th:nth-child(3) {
    width: 30%;
    min-width: 200px
}
#sort-container tbody td:nth-child(4),
#sort-container thead th:nth-child(4) {
    width: 18%;
    min-width: 120px
}
#sort-container tbody td:nth-child(5),
#sort-container thead th:nth-child(5) {
    width: 12%;
    min-width: 90px
}
#sort-container tbody td:nth-child(6),
#sort-container thead th:nth-child(6) {
    width: 12%;
    min-width: 90px
}
#sort-container tbody td {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500
}
.rank-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 100%;
    margin: 0 auto;
    font-weight: 700;
    font-size: 14px
}
#sort-container tbody td:nth-child(2) {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.04em;
    color: var(--text-gray)
}
#sort-container tbody td:nth-child(3) {
    color: var(--text-muted);
    font-weight: 500
}
#sort-container tbody td:nth-child(4) {
    font-weight: 400;
    font-size: 15px;
    color: #5f5f5f
}
#sort-container tbody tr:nth-child(even) {
    background: var(--bg-card-light)
}
#sort-container tbody tr:nth-child(even) td:first-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}
#sort-container tbody tr:nth-child(even) td:last-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}
#sort-container button {
    width: 80px;
    height: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-peach-dark);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease
}
#sort-container button:hover {
    background: var(--primary-color);
    color: var(--text-white)
}
#sort-container a {
    width: 80px;
    height: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-peach-dark);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    display: block;
    padding: 7px;
}
#sort-container a:hover {
    background: var(--primary-color);
    color: var(--text-white)
}
#home-bottom-sec {
    display: flex;
    flex-direction: column;
    gap: 106px;
    width: 93.5%;
    margin: 130px auto 260px auto
}
#latest-news {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 33px;
    width: 100%;
    padding: 50px 40px;
    margin: 0 auto;
    border-radius: 40px;
    background: linear-gradient(to bottom,rgba(254,128,71,.2) 0,transparent 100%),url(/assets/new/images/Group.png);
    background-repeat: repeat;
    background-size: auto
}
#latest-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}
#latest-news-header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-bottom: solid 1px rgba(114,114,114,.48);
    padding: 20px 0 20px 70px
}
#latest-news-header-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px
}
#latest-news-header-text span:nth-child(1) {
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color)
}
#latest-news-header-text span:nth-child(2) {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-black)
}
#latest-news-flash-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}
#latest-news-flash-btns button:first-of-type svg path {
    fill: var(--primary-color)
}
#latest-news-flash-btns button:last-of-type svg path {
    fill: var(--text-dark)
}
#flash-btns-border {
    border: 1px dashed var(--text-black);
    height: 29px
}
#latest-news-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth
}
#latest-news-content .news-card {
    flex: 0 0 calc(25% - 15px)
}
.news-dots-decoration {
    width: 82px;
    height: 97px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-image: radial-gradient(rgba(165,165,165,.29) 2px,transparent 2px);
    background-size: 10px 10px;
    z-index: -1
}
.news-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    min-width: 309px;
    background: var(--bg-white);
    border: 1px solid rgba(255,206,184,.62);
    box-shadow: 0 0 8.3px rgba(0,0,0,.04);
    border-radius: 17px
}
.news-pic {
    width: 100%;
    height: 172px;
    border-radius: 17px;
    overflow: hidden
}
.news-pic picture {
    display: flex;
    width: 100%;
    height: 100%
}
.news-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.news-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 14px
}
.news-title {
    font-weight: 700;
    font-size: 13.5px;
    line-height: 24px;
    color: var(--text-black)
}
.news-cat {
    font-weight: 400;
    font-size: 10px;
    color: var(--primary-color)
}
.news-border {
    width: 127px;
    height: 1px;
    background-color: var(--border-peach)
}
.news-p {
    font-weight: 400;
    font-size: 10px;
    line-height: 171.2%;
    color: var(--text-gray-light)
}
.news-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}
.news-marks-bottom {
    font-weight: 400;
    font-size: 10px;
    color: var(--text-black)
}
.news-date {
    color: var(--text-gray)
}
.see-news {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 24px;
    background: var(--border-gray-light);
    border-radius: 20px;
    transition: all .3s ease
}
.see-news:active,
.see-news:focus,
.see-news:hover {
    background-color: var(--primary-color);
    cursor: pointer
}
.see-news:active svg path,
.see-news:focus svg path,
.see-news:hover svg path {
    stroke: var(--text-white)
}
#faq-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 65%;
    gap: 32px
}
#faq-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-radius: 100%;
    font-weight: 900;
    font-size: 32px;
    color: var(--primary-color)
}
#faq-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 19px
}
#faq-header {
    font-weight: 900;
    font-size: 32px;
    color: var(--primary-color)
}
#faq-des {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-black)
}
#faq-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%
}
.faq-slide-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    cursor: pointer
}
.faq-slide-icon {
    width: 55px;
    height: 55px;
    background: var(--border-peach);
    border-radius: 100%;
    border: solid 1px var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    flex-shrink: 0
}
.faq-slide-icon svg {
    transition: transform .3s ease
}
.faq-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    background: var(--bg-white);
    border: 1px solid var(--primary-color);
    border-radius: 46px;
    padding: 20px;
    transition: all .3s ease
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.02em;
    color: var(--text-black);
    transition: color .3s ease
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease-out,opacity .4s ease-out,padding .4s ease;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-black);
    width: 100%;
    text-align: right;
    line-height: 24px
}
.faq-slide-wrapper.active .faq-slide-icon {
    background: var(--primary-color)
}
.faq-slide-wrapper.active .faq-slide-icon svg {
    transform: rotate(-90deg)
}
.faq-slide-wrapper.active .faq-slide-icon svg path {
    fill: var(--text-white)
}
.faq-slide-wrapper.active .faq-slide {
    border-radius: 40px;
    background-color: rgba(254,128,71,.05)
}
.faq-slide-wrapper.active .faq-question {
    color: var(--secondary-color)
}
.faq-slide-wrapper.active .faq-answer {
    max-height: 300px;
    opacity: 1
}
#footer-main-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 93.5%;
    height: auto;
    margin: 129px auto 0 auto;
    background: linear-gradient(97.96deg,#fe9647 53.38%,var(--secondary-color) 108.11%);
    border-radius: 30px;
    padding-bottom: 20px
}
#jump-up-sec {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 100px;
    background-color: var(--bg-gray-dark);
    z-index: 20;
    clip-path: path(
        "M 0,100 A 100,100 0,0,0 50,65 A 50,100 0,0,1 100,65 A 100,100 0,0,0 150,100 Z"
    )
}
#jump-up-sec button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 39px;
    height: 39px;
    background-color: var(--bg-white);
    border-radius: 100%
}
#footer-top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 5%;
    gap: 60px;
    width: 100%
}
#footer-about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -8px;
    right: 80px;
    width: 95px;
    height: 31px;
    background: var(--bg-gray-dark);
    border-radius: 7px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-white)
}
#footer-logo {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-radius: 10px;
    overflow: hidden
}
#footer-logo picture {
    display: flex;
    width: 100%;
    height: 100%
}
#footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
#logo-wrapper-footer picture {
    display: flex;
    width: 100%;
    height: 100%
}
#logo-wrapper-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
#footer-right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: -webkit-fill-available;
    gap: 35px
}
#footer-right-column p {
    font-weight: 400;
    font-size: 13px;
    color: #fff
}
#footer-brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px
}
#footer-brand-title {
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    color: var(--text-white)
}
#footer-brand-subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-white)
}
#footer-top-text-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px
}
#footer-site-address {
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    color: #ffb87a;
    margin-right: auto
}
.footer-top-border-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}
.footer-top-border1 {
    display: flex;
    flex: 1;
    min-width: 34px;
    height: 4px;
    border-radius: 100px;
    background-color: var(--bg-gray-dark)
}
.footer-top-border2 {
    display: flex;
    flex: 4;
    min-width: 133px;
    height: 2px;
    border-radius: 100px;
    background-color: var(--border-peach)
}
#footer-links-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    gap: 10%
}
#footernav-container-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    gap: 5%
}
#footer-right p {
    font-weight: 400;
    font-size: 13px;
    line-height: 170.41%;
    color: var(--text-white)
}
.footernav-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px
}
.footernav-container .footer-top-border1 {
    height: 3;
    min-width: 14px
}
.footernav-container .footer-top-border2 {
    height: 1px;
    min-width: 36px
}
.footernav-container h3 {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-white)
}
.footernav-container a {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-white)
}
.footernav-container ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px
}
.footernav-container li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px
}
.footernav-container li span {
    display: flex;
    width: 6px;
    height: 6px;
    background-color: var(--bg-gray-dark);
    border-radius: 100%
}
#footer-banner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    height: 100%
}
.footer-banner-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    width: 220px;
    height: 100%;
    padding: 0 10px;
    background: rgba(255,230,217,.13);
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    color: var(--border-peach)
}
#footer-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 374px;
    width: 100%;
    background: linear-gradient(180.05deg,#000 4.24%,#636363 99.96%);
    border-radius: 15px;
    padding: 40px 30px;
    gap: 16px;
    transform: translateY(-140px)
}
.footer-left-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--bg-card-light);
    border-radius: 5px
}
#footer-left-title {
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-white)
}
#footer-left-title span {
    color: #ffa04d
}
.footer-left-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px
}
.contact-details {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3px
}
.footer-left-tile-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--border-peach)
}
.footer-left-tile-text {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-white)
}
#footer-left-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    width: 100%
}
#footer-signup-news {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    width: 100%
}
#footer-signup-news label {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-white)
}
.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background: var(--bg-card-light);
    border-radius: 3px;
    padding: 0 5px 0 15px;
    gap: 10px
}
.newsletter-input-wrapper input {
    flex: 1;
    background: 0 0;
    border: none;
    outline: 0;
    font-weight: 400;
    font-size: 12px;
    color: #d6d6d6
}
.newsletter-input-wrapper input::placeholder {
    color: #d6d6d6;
    font-weight: 400;
    font-size: 12px
}
.newsletter-input-wrapper button {
    width: 33px;
    height: 25px;
    background: var(--primary-color);
    box-shadow: 0 0 11.9px rgba(255,116,53,.8);
    border-radius: 3px;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-white);
    cursor: pointer;
    flex-shrink: 0
}
#trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.namad {
    flex: 1;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease
}
.namad:hover {
    transform: translateY(-5px)
}
#footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px var(--text-white);
    width: 90%;
    padding: 20px 0 0 0
}
#footer-bottom span {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-white)
}
#footer-bottom-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}
.social-icon {
    display: flex
}
#footer-bg {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 100px;
    background: var(--bg-gray-dark);
    border-radius: 20px;
    z-index: -1
}
#footer-bg button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 39px;
    height: 39px;
    background-color: var(--bg-white);
    border-radius: 100%
}
#footer-rights {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: var(--border-peach);
    font-weight: 400;
    font-size: 11px;
    color: var(--text-dark);
    margin-top: 63px
}
#jum-up-sec {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 100px;
    background-color: var(--bg-gray-dark);
    z-index: 20;
    clip-path: path(
        "M 0,100 A 100,100 0,0,0 50,65 A 50,100 0,0,1 100,65 A 100,100 0,0,0 150,100 Z"
    )
}
#jum-up-sec button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    background-color: var(--bg-white);
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}
@media screen and (max-width:1200px) {
    #header-bottom {
        padding: 0 20px;
        gap: 15px
    }
    #header-bottom nav a {
        width: 115px;
        height: 36px;
        font-size: 13px;
        gap: 5px
    }
    #phone-number {
        font-size: 14px
    }
}
@media screen and (max-width:992px) {
    #jum-up-sec {
        display: none
    }
    #footer-links-section {
        flex-direction: column
    }
    #footernav-container-wrapper {
        height: auto;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px
    }
    #header-divider {
        display: none
    }
    #main-content {
        padding-top: 20px
    }
    #banner,
    #flash-sales-section,
    #footer-main-container,
    #phone-sort-sec,
    #trending-news {
        width: 95%
    }
    #header-top {
        gap: 15px;
        margin: 20px auto 10px auto
    }
    #header-logo img {
        width: 120px;
        height: 48px
    }
    #header-search-wrapper {
        width: 250px
    }
    .login-button {
        width: 120px;
        height: 40px;
        font-size: 12px
    }
    .cart-button {
        width: 40px;
        height: 40px
    }
    #header-bottom {
        height: 80px;
        border-radius: 50px;
        padding: 0 20px;
        gap: 15px
    }
    #header-bottom nav {
        display: none
    }
    #phone-number {
        display: none
    }
    #gallery-home {
        height: 300px;
        margin-top: 20px
    }
    #trending-news {
        flex-direction: column;
        gap: 20px;
        margin: 40px auto
    }
    #news-divider {
        display: none
    }
    #news-featured-image {
        width: 100%;
        height: 150px
    }
    #trending-container {
        margin-right: 0;
        width: 100%
    }
    #trending-header {
        display: none
    }
    #trending-links {
        width: 100%;
        height: auto;
        row-gap: 11px
    }
    #flash-sales-section {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px
    }
    #flash-sales-banner {
        width: 100%;
        min-width: unset;
        height: auto;
        border-radius: 20px;
        padding: 20px;
        flex-direction: row;
        justify-content: space-between
    }
    .sale-product-card {
        width: 45%;
        min-width: unset;
        flex-grow: 0
    }
    #products-sec-content {
        grid-template-columns: repeat(2,1fr);
        gap: 20px
    }
    #products-sec-content .sale-product-card {
        width: 100%
    }
    #brand-card-wrapper {
        flex-direction: column;
        height: 600px
    }
    #category-content {
        width: 85%
    }
    .footernav-container {
        width: unset
    }
    #footer-main-container {
        width: 100%;
        border-radius: 0;
        margin-top: 60px
    }
    .footer-banner-style {
        width: 100%
    }
    #footer-top-section {
        flex-direction: column;
        padding: 60px 15px;
        gap: 30px
    }
    #footer-top-section p,
    #footer-top-section span {
        font-size: 13px;
        line-height: 1.6
    }
    #footer-left {
        width: 100%;
        max-width: unset;
        height: auto;
        padding: 20px;
        transform: unset
    }
    #trust-badges {
        flex-wrap: wrap;
        gap: 8px;
        height: auto
    }
    .namad {
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
        height: 80px
    }
    #footer-links-section {
        flex-direction: column;
        align-items: center;
        gap: 40px
    }
    #footernav-container-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 30px
    }
    .footernav-container {
        width: auto;
        align-items: center;
        text-align: center
    }
    #footer-banner {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        height: 200px
    }
}
@media screen and (max-width:768px) {
    #banner svg,
    #category-section {
        display: none
    }
    .faq-slide-wrapper {
        flex-direction: column
    }
    #faq-sec {
        width: 93.5%
    }
    #best-brands-sec {
        display: none
    }
    #phone-sort-sec {
        margin-top: 71px
    }
    #phone-sort-content {
        flex-direction: column
    }
    #sort-btn-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        width: 100%
    }
    #sort-btn-wrapper button {
        width: 100%;
        font-size: 16px
    }
    #banner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 10px
    }
    #banner span {
        font-size: 18px;
        text-align: center
    }
    #banner div {
        font-size: 18px;
        text-align: center
    }
    #header-top {
        flex-wrap: wrap;
        height: auto;
        justify-content: space-between;
        gap: 10px;
        padding: 0 10px
    }
    #header-logo img {
        width: 100px;
        height: 40px
    }
    #header-search-wrapper {
        order: 3;
        width: 100%
    }
    #header-actions {
        margin-right: 0;
        gap: 10px
    }
    .login-button {
        display: none
    }
    #header-bottom {
        height: 60px;
        border-radius: 10px;
        padding: 0 10px;
        justify-content: space-between
    }
    .category-toggle span {
        font-size: 16px
    }
    #header-divider {
        display: none
    }
    #flash-sales-section {
        margin-top: 20px;
        flex-direction: column
    }
    #flash-sales-banner {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border-radius: 10px;
        padding: 60px 20px
    }
    .product-title {
        font-size: 16px
    }
    .product-des {
        font-size: 14px
    }
    .price {
        font-size: 18px
    }
    #footer-right p,
    #footer-right-column p {
        font-size: 15px;
        line-height: 1.8
    }
    .footernav-container h3 {
        font-size: 18px
    }
    .footernav-container ul li a {
        font-size: 16px
    }
    .sale-product-card {
        width: 100%
    }
    #faq-des {
        font-size: 16px;
        text-align: center
    }
    #products-sec-content {
        grid-template-columns: 1fr
    }
    #products-sec-content .sale-product-card {
        width: 100%
    }
    #latest-news-content {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        gap: 10px
    }
    #latest-news-content .news-card {
        min-height: 400px;
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px)
    }
    .site-address {
        font-size: 46px
    }
    #header-top {
        padding: unset;
        width: 93%
    }
}
@media screen and (max-width:500px) {
    #gallery-home-dots,
    #gallery-home-wrapper::before {
        right: unset;
        left: 50%;
        transform: translateX(-50%)
    }
    #jump-up-sec {
        display: none
    }
    #footer-logo,
    #footer-site-address,
    #header-actions a:nth-child(1),
    #products-sec-header-border,
    .site-address {
        display: none
    }
    #latest-news-content {
        min-height: 450px
    }
    #flash-sales-content {
        min-height: 500px
    }
    .sale-product-card {
        min-height: 450px;
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px)
    }
    #latest-news-flash-btns {
        display: none
    }
    #footer-brand-section {
        justify-content: flex-start
    }
}
.news-p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}
.news-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}
.timer_shegeftane{
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    direction: ltr;
    margin-bottom: 6px;
}
.countdown{
    /* display: flex; */
}
.countdown_item{
    display: inline-block;
    margin-right: 10px;
}
.countdown_item:last-child .time{
    background:#ef473a;
    color:white;
}
.countdown .time{
    background-color: #eeeeee;
    display: inline-block;
    /* padding: 1px 7px; */
    border-radius: 6px;
    color: #5e5c5c;
    font-size: 12px;
    width: 24px;
    height: 21px;
    line-height: 20px;
    text-align: center;
}
.countdown span{
    display: block;
    font-size: 10px;
    color: blue;
    margin-top: 4px;
}
.blogpageitem {
    margin: 10px 74px;
    margin-top: 10px;
    background-color: white;
    padding: 10px 23px;
    border-radius: 14px;
}
.titleweblog{

}
.dateblog{

}
.contentweblog{

}
.blogpageitem .contentweblog p,.weblogpage1 .contentweblog li{
    font-size: 17px;
    line-height: 35px;
    text-align: justify;
}
.blogpageitem .contentweblog .imgckeditor {
    text-align: center;
}
.blogpageitem .contentweblog .imgckeditor img{
    max-width: 100%;
}
.filter_item_content .slider-wrapper {
    position: relative;
    height: 29px;
    top: 13px;
}
.filter_item_content .slider {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}
.filter_item_content input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: transparent;
    outline: none;
    position: absolute;
    pointer-events: none;
}
.filter_item_content input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 7px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index:2;
    left:-2px;
    box-shadow: inset 0 0 0 4px #FF9346;
}
.filter_item_content input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 7px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index:2;
    box-shadow: inset 0 0 0 4px #FF9346;
}
.filter_item_content .range-highlight {
    position: absolute;
    height: 3px;
    background: #BBBBBB;
    top: -2px;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}
.filter_item_content .price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
}
.filter_item_content .min_max_price{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
.filter_item_content .min_max_price > div{
    text-align: center;
    line-height: 16px;
}
.filter_item_content .min_max_price > div > span{
    display: block;
}
.filter_item_content .min_max_price .val{}
.filter_item_content .min_max_price .txt{color: #bbbbbb;}
.filter_item_content #max_price_val{}
.filter_item_content #min_price_val{}
.filter_item_content .min_max_price_input{
    display: flex;
    justify-content: space-between;
    column-gap: 32px;
}
.filter_item_content .min_max_price_input > div{}
.filter_item_content .min_max_price_input > div > label{}
.filter_item_content .min_max_price_input > div > input{
    padding: 4px;
}
.filter_item_content .min_max_price_input #to_price{}
.filter_item_content .min_max_price_input #from_price{}
.custominput {
    width: 100%;
    padding: 10px;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.625;
    color: #444050;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #d1d0d4;
    border-radius: 6px;
    transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}
.filter_item_content .min_max_price_input>div>input {
    padding: 4px;
}
.empty_product_outer{
    display: none;
}
.empty_product{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 13px;
}
.empty_product img{
    width: 200px;
}
.empty_product div.txt{
    margin-top: 17px;
}
.empty_product div span{
    color: red;
}

/* Styling for the overlay */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Styling for the popup */
#popup-overlay #popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Popup visible state */
#popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

#popup-overlay.active #popup {
    transform: scale(1);
    opacity: 1;
}

/* Popup title */
#popup h2 {
    margin-top: 0;
    font-size: 24px;
}

/* Buttons */
.popup-button {
    margin-top: 20px;
    padding: 0px 20px;
    border: none;
    background-color: #ff005e;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup-button:hover {
    background-color: #0056b3;
}
.message_pop{
    width: 100%;
}
.message_pop .row_message{
    text-align: right;
    width: 100%;
    margin-top: 10px;
}
.message_pop .row_message label{
    display: block;
}
.message_pop .row_message input{}
.message_pop .b_b_code{
    margin-top: 10px;
}
.message_pop .btn_pop_up{
    box-shadow: 0 0.125rem 0.375rem 0 rgba(115, 103, 240, 0.3);
    margin-top: 11px;
    transition: all 0.135s ease-in-out;
    transform: scale(1.001);
    cursor: pointer;
    color: #fff;
    background-color: #7367f0;
    border-color: #7367f0;
    border-radius: 9px;
    padding: 0px 17px;
}
.message_pop .btn_pop_up:hover{
    color: #fff !important;
    background-color: #685dd8 !important;
    border-color: #685dd8 !important;
}
.message_pop .timer_count_down{}
.message_pop .timer_count_down span{}
.message_pop .b_b_code_b{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}
.custominput{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.625;
    color: #444050;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #d1d0d4;
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.custominput:focus{
    outline:none;
    border-color: #7367f0 !important;
    box-shadow: 0 2px 6px 0 rgba(115, 103, 240, 0.3);
    padding-right:15px ;
}
.message_pop .enter-code-pop {
    margin: 10px 0px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.message_pop .enter-code-pop input {
    position: relative;
    width: 10%;
    margin: 0px;
    outline: none;
    border: none;
    border-bottom: 1px solid #9b9999;
    text-align: center;
    margin-right: 6px;
}
.message_pop .error_pop{
    margin-top: 10px;
    display: none;
}
.message_pop .error_pop span{color: red;}
.message_pop .btn_pop_up_l{box-shadow: 0 0.125rem 0.375rem 0 rgba(40, 199, 111, 0.3);transition: all 0.135s ease-in-out;transform: scale(1.001);color: #fff;background-color: #28c76f;border-color: #28c76f;cursor: pointer;padding: 0px 17px;border-radius: 9px;display: inline-block;}
.message_pop .btn_pop_up_d{box-shadow: 0 0.125rem 0.375rem 0 rgb(199 40 40 / 30%);transition: all 0.135s ease-in-out;transform: scale(1.001);color: #fff;background-color: rgb(234, 84, 85);border-color: rgb(234, 84, 85);cursor: pointer;padding: 0px 17px;border-radius: 9px;/* display: inline-block; */}
.message_pop .section1_a{}
.message_pop .b_b_code_r{
    margin-top: 12px;
    display: none;
}
.message_pop .row_message2{
    display: none;
}
.message_pop .timer_count_down{
    display: none;
}
.message_pop #edit_number{
    display: none;
}
.message_pop #login_with_code{
    display: none;
}
.message_pop .b_b_code_r{
    display: none;
}
.message_pop .p_add_to_card{display: grid;grid-template-columns: 1fr 2fr;}
.message_pop .right_p_a_c{

}
.message_pop .right_p_a_c img{width: 100%;}
.message_pop .left_p_a_c{text-align: right;}
.message_pop .left_p_a_c span{

}
.message_pop .outercardpop{}
.message_pop .outercardpop a{
    padding: 0px 20px;
    border: none;
    background-color: #2d8bd1;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.page_page{
    padding: 29px 72px;
}
.page_page .page_title{
    font-size: 20px;
}
.page_page .page_inner_page{}
.product_page{
    margin: 42px;
}
.product_page .section1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F4F4F4;
    padding: 21px;
    border-radius: 11px;
    column-gap: 22px;
}
.product_page .inner_product_page{}
.product_page .p_p_right_section{}
.product_page .product_slider{
    position: relative;
    direction: ltr;
}
.product_slider .outer_product_slider{
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* margin: 0px 45px; */
    direction: ltr;
}
.product_slider .slider_product{
    overflow: hidden;
    position: relative;
    border: 1px solid #a19c9c;
    border-radius: 6px;
}
.product_slider .slider_product_container{
    display: flex;
    /* transition: transform 0.5s ease; */
}
.product_slider .product_slide{
    min-width: 100%;
    box-sizing: border-box;
    /* padding: 40px; */
    background-color: #ddd;
    text-align: center;
    font-size: 1.5em;
}
.product_slider .product_slide img{
    width: 100%;height: 100%;
}
.product_slider .nav_product_buttons{
    position: absolute;
    top: 0px;
}
.product_slider .prev_product{
    /* padding-left: 7px; */
    /* padding-right:15px; */
    /* border-top-right-radius: 22px; */
    /* border-bottom-right-radius: 22px; */
    position: absolute;
    top: 45%;
    left: 16px;
    /* transform: translateY(-50%); */
    font-size: 27px;
}
.product_slider .next_product{
    padding-right: 7px;
    padding-left:15px;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    position: absolute;
    top: 45%;
    right: 17px;
    transform: translateY(-50%);
    font-size: 27px;
    cursor: pointer;
}
.product_slider .pagination_product{
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.product_slider .pagination_product .dot_p {
    /* width: 10px; */
    /* height: 10px; */
    margin: 5px;
    /* background-color: #333; */
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}
.product_slider .pagination_product .dot_p.active {
    opacity: 1;
    /* background-color: #666; */
}
.product_slider .pagination_product .dot_p img {width: 91px;border-radius: 7px;}
.product_slider .pagination_product .dot_p.active img {
}
.product_page .section1 .prev_next{
    left: 20px;
}
.product_page .section1 .arrow_next{
    right: 20px;
}
.p_p_left_section{
    background: white;
    padding: 20px;
    border-radius: 11px;
}
.p_p_left_section .summary_p{}
.p_p_left_section .p_name{
    font-size: 22px;
    font-weight: bold;
}
.p_p_left_section .garanty{
    display: flex;
    border-top: 1px solid #e9e5e5;
    border-bottom: 1px solid #e9e5e5;
    padding: 10px 0px;
}
.p_p_left_section .garanty img{}
.p_p_left_section .garanty span{
    margin-right: 11px;
}
.p_p_left_section .property{
    margin-top: 13px;
    padding-bottom: 5px;
}
.p_p_left_section .property .row_p{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 5px;
}
.p_p_left_section .property .row_p > div{
    display: flex;
    justify-content: space-between;
    padding-right: 11px;
    align-items: center;
}
.p_p_left_section .property .row_p > div > span{}
.p_p_left_section .property .row_p > div > div{
    background: #F1F1F1;
    width: 66%;
    text-align: center;
    color: #3F3F3F;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 47px;
    border-radius: 5px;
}
.p_p_left_section .price_s{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid #e9e5e5;
    padding-top: 8px;
}
.p_p_left_section .section_right{}
.p_p_left_section .section_right img{}
.p_p_left_section .section_right span{
    color: #7F7F7F;
    font-size: 14px;
}
.p_p_left_section .section_left{}
.p_p_left_section .takhf{
    /* display: flex; */
}
.p_p_left_section .old_price{
    text-decoration: line-through;
    display: inline-block;
    color: #7F7F7F;
    font-size: 14px;
}
.p_p_left_section .old_val{}
.p_p_left_section .old_txt{}
.p_p_left_section .takh_price{
    display: inline;
    background: #E82C64;
    color: white;
    padding: 0px 9px;
    border-radius: 11px;
    margin-right: 5px;
}
.p_p_left_section .p_a_takh{
    color: #FF145A;
    font-size: 23px;
    text-align: left;
}
.p_p_left_section .after_val{}
.p_p_left_section .after_txt{}
.p_p_left_section .add_to_card_p_page{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 14px;
}
.box_increment{
}
.box_increment .inner_box_increment{
    display: inline-flex;
    background: #F5F5F5;
    line-height: 28px;
    gap: 9px;
    padding: 4px 4px 0px 4px;
    border-radius: 8px;
}
.box_increment .inner_box_increment > div{
    line-height: 16px;
}
.box_increment .outerimgb{
    cursor: pointer;
}
.box_increment .outerimgb img{}
.box_increment .input_val{text-align: center;}
.box_increment .value_q{
    display: inline-block;
    margin-top: 7px;
    color: #b9b2b2;
}
.box_increment .value_txt{
    display: block;
    color: red;
    display: none;
    font-size: 12px;
}
.add_to_card_p_page .left_section_a{

}
.add_to_card_p_page .right_section_a{

}
.p_p_left_section .mojodi{
    color: #E82C64;
    padding: 0px 10px;
    display: inline-block;
    border-radius: 10px;
    line-height: 31px;
    padding-bottom: 2px;
    background: #FF145A26;
    margin-left: 14px;
    display: none;
}
.p_p_left_section .mojodi .val{}
.p_p_left_section .mojodi .txt{}
.p_p_left_section .addtocard{
    background: #FF5C4D;
    display: inline-block;
    color: white;
    padding: 8px 39px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
}
.product_page .section2{
    margin-top: 24px;
}
.product_page .section2 .tabs{
    padding: 10px 0px;
    z-index: 3;
    width: 100%;
    background: white;
}
.product_page .section2 .tabs > div {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 9px;
    cursor: pointer;
}
.product_page .section2 .tabs > div.active {
    background-color: #FF5C4D;
    color: white;
}
.product_page .section2 .c_p_d{
    border-top: 2px solid;
    border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 92, 77, 0.5) 100%);
    border-image-slice: 1;
}
.product_page .section2 .inner_c_p_d{}
.product_page .section2 .desc_full{}
.product_page .section2 .inner_c_p_d > div {
    margin-top: 21px;
}
.product_page .section2 .property_full{}
.product_page .section2 .inner_desc_full{}
.product_page .section2 .inner_property_full{}
.inner_property_full .title_property {
    background: #D7D7D766;
    padding: 7px 20px;
    border-radius: 9px;
}
.inner_property_full .property_row{
    display: grid;
    grid-template-columns: 1fr 3fr;
    line-height: 46px;
    padding-right: 17px;
}
.inner_property_full .right_property{
    color: #545454;
}
.inner_property_full .left_property{}
.select_color{
    margin: 10px;
    border-top: 1px solid #e9e5e5;
    padding-top: 4px;
}
.select_color .color_txt{
    display: flex;
}
.select_color .c_txt_txt{}
.select_color .c_txt_val{
    margin-right: 5px;
}
.select_color .color_list{
    margin-top: 9px;
}
.select_color .color_item{
    display: inline-flex;
    align-items: center;
    margin-left: 14px;
    padding: 5px 11px;
    border-radius: 7px;
    cursor: pointer;
}
.select_color .color_item.active{
    border: 1px solid blue;
}
.select_color .icon_color{
    line-height: 0px;
    display: inline-block;
    border-radius: 5px;
}
.select_color .icon_txt{
    display: inline;
    margin-right: 4px;
}

.select_color .icon-check {
    display: inline-block;
    width: 32px;
    height: 28px;
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
}

.select_color .icon-check::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%) rotate(45deg);
    box-sizing: border-box;
}
.counter_product_page{
    direction: ltr;
    display: inline-block;
    margin-left: 13px;
}
.tabsscrool{
    position: fixed;
}
.product_page .section2 .tabsscrool > div{
    padding: 3px 30px;
    line-height: 30px;
}
.header2scroll{
    padding: 12px 0px;
    position: fixed;
}
.header1_mobilescroll{
    position: fixed;
}
.inner_header2_mobile{
    display: flex;
}
.rating {
    display: flex;
    direction: ltr;
    cursor: pointer;
    line-height: 9px;
}

.rating span {
    color: #ccc;
    transition: color 0.2s ease;
    font-size: 44px;
}

.rating span.hovered,
.rating span.selected {
    color: #f5c518;
}
.comment_full{}
.comment_full .inner_comment_full{
}
.comment_full .new_comment{
    background: #F4F4F4;
    padding: 15px;
    border-radius: 11px;
}
.comment_full .inner_new_comment{}
.comment_full .titlenewcomment{}
.comment_full .rownewc{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.comment_full .itemnc{}
.comment_full .itemnc label{
    display: block;
}
.comment_full .itemnc input{
    display: block;
    width: 82%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.comment_full .itemnc input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.comment_full .messagetext:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.comment_full .score{
    display: inline-block;
    margin-top: 14px;
}
.comment_full .messagebox{
    position: relative;
}
.comment_full .messagebox label{
    display: block;
}
.comment_full .messagetext{
    display: inline-block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    min-height: 100px;
}
.comment_full .messagebox img{
    position: absolute;
    bottom: 16px;
    left: 14px;
    width: 32px;
    cursor: pointer;
}
.comment_list{
    margin-top: 35px;
}
.comment_list .comment_l_item{
    border-bottom: 1px solid #d5cccc;
}
.comment_list .comment_t{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F4F4F4;
    padding: 7px;
    border-radius: 7px;
}
.comment_list .comment_i{
    display: flex;
    align-items: center;
    column-gap: 13px;
}
.comment_list .c_img{}
.comment_list .c_img img{
    width: 55px;
}
.comment_list .d_c_2{}
.comment_list .name_c{}
.comment_list .date_c{
    color: #aba6a6;
    font-size: 12px;
}
.comment_list .score_c{
    display: flex;
    align-items: center;
    column-gap: 19px;
}
.comment_list .count_score{
    display: inline-block;
}
.comment_list .view_score{
    display: inline-block;
}
.comment_list .rating_copy{
    display: flex;
    direction: ltr;
    line-height: 9px;
}
.comment_list .rating_copy span{
    color: #ccc;
    transition: color 0.2s ease;
    font-size: 44px;
}
.comment_list .rating_copy span.selected {
    color: #f5c518;
}
.comment_list .comment_txt{
    padding: 11px 13px;
    color: #aba6a6;
}
.comment_t_title{
    border-top: 1px solid red;
    padding-right: 14px;
}
.card_page{
    padding: 72px 100px;
}
.inner_card_page{
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 24px;
}
.card_page .list_section{}
.card_page .title_card{}
.card_page .list_card{
    border: 1px solid #BDBDBD;
    border-radius: 13px;
    padding: 11px 30px;
}
.card_page .card_item{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #BDBDBD;
    margin-bottom: 10px;
}
.card_page .section1{}
.card_page .section1 img{
    width: 100%;
}
.card_page .section2{
    padding-right: 7px;
}
.card_page .nameitem{}
.card_page .deitem{
    color: #A7A7A7;
    font-size: 13px;
}
.card_page .i1{}
.card_page .i2{}
.card_page .section3{
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-around;
}
.card_page .takh_card{
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
}
.card_page .takh_p{
    color: #A7A7A7;
    text-decoration: line-through;
}
.card_page .takh_darsad{
    background: #E82C64;
    color: white;
    padding: 0px 14px;
    border-radius: 9px;
    line-height: 32px;
}
.card_page .p_a_c{
    text-align: left;
}
.card_page .out_increment{
    text-align: left;
    line-height: 24px;
}
.card_page .total_card{
    border: 1px solid #BDBDBD;
    border-radius: 13px;
    padding: 11px 30px;
}
.card_page .box_total{
    line-height: 36px;
}
.card_page .row_total{
    display: flex;
    justify-content: space-between;
}
.card_page .shiptotal{
    color:#858585
}
.card_page .price_k{
}
.card_page .right_r{}
.card_page .right_r span{}
.card_page .right_r .card_count{}
.card_page .left_r{}
.card_page .cal_takh{
    color: #E82C64;
}
.card_page .priceforpay{
    margin-top: 50px;
    border-top: 1px solid #BDBDBD;
}
.card_page .btncard{
    text-align: center;
    margin-top: 9px;
}
.card_page .btnc{
    box-shadow: 0px 3px 9.4px 0px #00000040;
    background-color: #FF5C4D;
    color: white;
    padding: 2px 45px;
    border-radius: 7px;
    cursor: pointer;
}

.address_main {
    width: 100%;
    background: #fff;
    display: none;
    border-bottom: 1px solid #bdb6b6;
    padding-bottom: 10px;
}
.address_main .custom-form {
    width: 100%;
}
.address_main .form-title {
    font-size: 1.5rem;
    margin-bottom: 0px;
    text-align: right;
    color: #333;
    margin-top: 4px;
}
.address_main .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 0px;
}
.address_main .form-group {
    text-align: right;
}
.address_main label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
.address_main .form-control {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    text-align: right;
}
.address_main .form-control:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.btn-primary {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    word-wrap: break-word;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.address_main .full-width {
    grid-column: span 2;
}
.address_main textarea.form-control {
    resize: none;
}


.custom-select-container {
    position: relative;
}
.custom-search {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.custom-select-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}
.custom-select-container.active .custom-select-dropdown {
    display: block;
}
.custom-select-dropdown .option {
    padding: 10px;
    cursor: pointer;
}
.custom-select-dropdown .option:hover,
.custom-select-dropdown .option.highlight {
    background: #f0f0f0;
    color: #333;
}
.sign_a{
    color: #e70202;
    font-size: 21px;
    line-height: 1px;
    margin-right: 5px;
}
.outer_address_main{
    display: none;
}
.address_list{
    margin-top: 22px;
    display: none;
}
.address_list .address_item{
    /* display: flex; */
    align-items: center;
    border-bottom: 1px solid #cbc5c5;
    /* justify-content: space-between; */
    padding: 10px;
}
.address_list .value_add{}
.address_list .value_add input{}
.address_list .txt_value{
    font-size: 16px;
    padding-right: 12px;
    cursor: pointer;
}
.address_list .action_list_address{
    padding-right: 34px;
}
.address_list .edit_add{
}
.address_list .remove_edit{
    background-color: #f52929;
}
.address_list .edit_add,.address_list .remove_edit{
    padding: 0px 6px;
    margin: 0px;
    margin-right: 20px;
    line-height: 25px;
    display: inline-block;
    width: auto;
}
.address_list .outer_input_label{
    display: flex;
}
.address_list .title_address{

}
.address_list .address_row{padding-right: 22px;font-size: 12px;color: #a9a3a3;}
.address_list .span_txt{

}
.address_list .span_value{

}
.address_list .span_txt,.address_list .span_txt{

}
.address_list .a_item_row{

}
.address_list .address_item.active{background: #efebeb;}
#confirm_remove_add{
    background-color: #0056b3;
}
.selected_address{
    display: flex;
    justify-content: space-between;
    border: 1px solid #2793ef;
    padding: 11px;
    border-radius: 16px;
}
.selected_address .right_s_a{}
.selected_address .title_s_a{}
.selected_address .content_s_a{
    padding-right: 31px;
    font-size: 12px;
    color: #a9a3a3;
}
.selected_address .list_c_s_a{}
.selected_address .item_s_a{}
.selected_address .txt_s{}
.selected_address .val_s{}
.selected_address .left_s_a{}
.selected_address #change_selected_address{
    padding: 0px 10px;
    white-space: nowrap;
}
.addnew_address{
    margin: 10px 4px;
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
}
.addnew_address #addnew_address{
    padding: 1px 10px;
    display: inline-block;
    width: auto;
}

.shipping_main{
    border: 1px solid #2793ef;
    padding: 11px;
    border-radius: 16px;
    margin-top: 10px;
}
.shipping_main .title_shipping{}
.shipping_main .item_shipping{}
.shipping_main .row_shippping{
    cursor: pointer;
    display: flex;
}
.shipping_main .row_shippping.active{
    background: #ff9346;
    border-radius: 7px;
    color: white;
}
.shipping_main .row_shippping input{}
.shipping_main .row_shippping label{
    cursor: pointer;
    display: block;
    width: 100%;
}
.shipping_main .title_visit{}
.shipping_main .title_visit_address{
    font-size: 13px;
    padding-right: 22px;
}
.shipp_address{
    display: none;
}
.add_address_new{display: flex;justify-content: center;align-items: center;gap: 21px;}
.add_address_new #cancel_address{width: auto;padding: 0px 10px;display: inline-block;background-color: red;}
.add_address_new #save_address{
    width: auto;
    padding: 0px 10px;
    display: inline-block;
}
.ship_title_n{
    margin-top: 0px;
}
.ship_title_n #disply_card{
    padding: 1px 10px;
    display: inline-block;
    width: auto;
    margin-top: 0px;
}
.pay_with_wallet{
    border-top: 1px solid #a19c9c;
    border-bottom: 1px solid #a19c9c;
    padding-bottom: 10px;
}
.pay_with_wallet .wallet_value{
    display: flex;
    justify-content: space-between;
}
.pay_with_wallet .txt_w_v{}
.pay_with_wallet .val_w_v{
    color: #0fe70f;
}
.pay_with_wallet .wallet_btn{
    text-align: center;
    margin-top: 10px;
    display: none;
}
.pay_with_wallet #pay_by_wallet{
    padding: 2px 19px;
}













@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .ba_takhfif{}
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
    .price_range .inner_price_range {
        grid-template-columns: 1fr 1fr 1fr ;
    }
    .price_range .section1 img {
        width: 87%;
    }
    .ba_takhfif{padding: 8px 68px;}
}
@media only screen and (min-width: 600px) and (max-width: 900px){

    .price_range .inner_price_range {
        grid-template-columns: 1fr 1fr ;
    }
    .price_range .section1 img {
        width: 75%;
    }
}
@media only screen and (min-width: 600px) and (max-width: 710px){


}
@media screen and (max-width: 700px){
    .inner_product_box_info{
        grid-template-columns: 2fr 3fr;
    }
    .product_box_info .p_det .add_p_b img{
        width:20px
    }
    .product_box_info .p_price_after{
        font-size:15px;
    }
    .product_box_info .p_o_p{
        font-size:12px;
    }
    .product_box_info .img_section img{
        width:100%;
        height: auto;
    }
}

@media screen and (max-width: 900px){
    .footer .section2_footer_2 {
        grid-template-columns: 1fr 1fr;
    }
    .section2_footer_2 .item4_f {
        display: contents;
    }
    .brand_top{
        display: block;
    }
    .section2_image .section2_1 img{
        border-radius:10px;
    }
    .section2_image .section2_1 .txt_s_1{
        font-size: 11px;
        color: black;
    }
    .section2_image{
        margin:10px;
    }
    .price_range{
        padding-top:0px;
    }
    .card_page .section2{
        padding-right:0px;
    }
    .card_page{
        padding: 23px 6px;
    }
    .card_page .card_item{
        grid-template-columns: 1fr;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .inner_card_page{
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .title_all .txt_left{
        font-size:11px;
    }
    .title_all .left_t {
        column-gap: 4px;
    }
    .save_close_filter{
        display: block;
    }
    .icon_for_mobile {
        display: flex;
        font-size: 11px;
    }
    .title_all .inner_right{
        display: block;
        padding: 25px;
    }
    .title_all .right_txt{
        display: none;
    }
    .p_list_p .inner_p_list_p {
        grid-template-columns: 1fr 1fr ;
    }
    .product_list .inner_product_list{
        grid-template-columns: 1fr;
    }
    .title_all .right_t{
        display:none;
        position: fixed;
        bottom: 0px;
        background-color: white;
        z-index: 23;
        width: 100%;
        right: 0px;
    }
    .product_list{
        padding: 24px 10px;
    }
    .product_list .filter_p{
        position: absolute;
        width: 100%;
        right: calc(-100% - 5px);
        z-index: 10;
    }
    .comment_list .rating_copy span{
        font-size:20px;
    }
    .comment_full .itemnc input{
        width:100%;
    }
    .comment_full .rownewc{
        grid-template-columns: 1fr;
    }
    .product_page .section1{
        grid-template-columns: 1fr;
    }
    .section4 {
        padding: 10px;
    }
    .section4 .inner_section4{
        grid-template-columns: 1fr 1fr;
        column-gap: 1em;
    }
    .section4 .item_section4{
        margin-top:15px;
    }
    .footer .item2_f {
        padding-right: 0px;
    }
    .footer .inner_footer {
        grid-template-columns: 1fr;
        padding: 34px 20px;
    }
    .weblog_list .inner_weblog{
        grid-template-columns: 1fr;
        column-gap: 2em;
    }
    .weblog_list .weblog_item{
        margin-top: 19px;
    }
    .popular_weak .txt_weak{
        text-align:center;
    }
    .popular_weak{
        padding: 10px 0px;
    }
    .tree_item .product_in_slider{
        flex: 0 0 50%;
    }
    .popular_weak .inner_weak{
        padding: 0px 18px;
    }
    .outer_slider_product .arrow_next{
        top: -17px;
        right: 13px;
    }
    .outer_slider_product .prev_next{
        top: -17px;
        left: 13px;
    }
    .product_slider_main_page{
        padding-top: 8px;
    }
    .product_main_page > div > .title{
        display: block;
        text-align: center;
    }
    .product_main_page{
        padding: 10px 21px;
    }
    .foure_item .product_in_slider{
        flex: 0 0 50%;
    }
    .section2_image .innser_section2_item {
        grid-template-columns: 1fr;
        column-gap: 7em;
    }
    .section2_image .section2_1:last-child{
        margin-top:30px;
    }
    .header1_mobile{
        display:flex;
    }
    .header2_mobile{
        display: block;
        width: 100%;
    }
    .header1{
        display:none;
    }
    .header2{
        display:none;
    }
    .product_box_info .darsad_takh{
        padding: 0px 8px;
        line-height: 25px;
    }
    .ba_takhfif .ba_takhfif_txt span{
        font-size:18px;
    }
    .ba_takhfif{padding: 15px 0px 0px 0px;}
    .ba_takhfif .ba_takhfif_txt{
        display:block;
        text-align: center;
    }
    .ba_takhfif .ba_takh_slider{
        display:block;
        width:100%;
        margin-top: 22px;
    }
    .ba_takhfif .inner_ba_takhfif{
        display: block;
    }
    .outer_slider_product .prev_slider_p{
        top: -12px;
        left: 5px;
    }
    .outer_slider_product .next_slider_p{
        top: -10px;
        right: 5px;
    }
}
@media screen and (max-width: 600px){
    .p_p_left_section .property .row_p{
        grid-template-columns: 1fr;
        row-gap: 5px;
    }
    .price_range .inner_price_range {
        grid-template-columns: 1fr  ;
    }
    .price_range .section1 img {
        width: 75%;
    }
    .inner_product_box_info{
        display: block;
    }
    .inner_property_full .property_row{
        display:block;
    }
    .inner_property_full .property_row > div{
        display:inline-block;
    }
    .inner_property_full .left_property{
        margin-right:15px;
    }
    .inner_property_full .left_property span {
        word-break: break-word;
        color: #ff5c4d;
    }
    .inner_property_full .right_property:after{
        content:':';
    }
    .product_page .section2 .inner_c_p_d > div{
        padding:5px;
    }
    .inner_property_full .property_row{
        padding-right:2px;
    }
    .product_page{
        margin:10px;
    }
    .product_page .section1{
        padding:5px;
    }
    .product_slider .pagination_product .dot_p img{
        width:40px;
    }
    .p_p_left_section .addtocard{
        padding: 6px 18px;
        line-height: 26px;
    }
    .product_page .section2 .tabs > div{
        padding: 3px 23px;
    }
}
@media (max-width: 768px) {
    .address_main .form-grid {
        grid-template-columns: 1fr;
    }
}
