/* ===================== Modern Amazon-like Skin — Full Drop-in ===================== */
/* Imports شما دست‌نخورده */
@import "normalize.css";
@import "bootstrap.min.css";
@import "bootstrap-icon/bootstrap-icons.min.css";
@import "color.css";
@import "mega-menu.css";

/* ---------------- پایه و پالت (Site-wide) ---------------- */
@font-face {
    font-family: "dana";
    src: url("../fonts/dana/dana-fanum-regular.woff2") format("woff2");
    font-weight: normal
}

@font-face {
    font-family: "dana";
    src: url("../fonts/dana/dana-fanum-bold.woff2") format("woff2");
    font-weight: bold
}

@font-face {
    font-family: "noora";
    src: url("../fonts/noora/Noora-Regular.woff") format("woff2");
    font-weight: bold
}

:root {
    /* پالت جدید هماهنگ با سبک آمازون */
    --main-color-one: #2563eb;
    /* Primary */
    --main-color-one-hover: #1d4ed8;
    --main-color-one-light: #3b82f6;
    --main-color-one-shadow: rgba(37, 99, 235, .12);

    --main-color-two: #f59e0b;
    /* Accent */
    --main-color-two-hover: #d97706;
    --main-color-two-light: #fbbf24;
    --main-color-two-shadow: rgba(245, 158, 11, .22);

    --main-color-three: #16a34a;
    /* Success */
    --main-color-three-hover: #0f8a3d;

    --main-color-green: #16a34a;
    --main-color-green-hover: #0f8a3d;

    --bg-site: #f5f7fb;
    --color-site: #0f172a;

    --text-muted: #64748b;
    --text-muted-two: #64748b;

    --border-muted: #e5e7eb;

    /* سایه‌ها */
    --shadow-sm: 0 1px 2px rgba(2, 6, 23, .06);
    --shadow: 0 1px 3px rgba(2, 6, 23, .08), 0 1px 2px rgba(2, 6, 23, .06);
    --shadow-md: 0 6px 14px rgba(2, 6, 23, .10);
    --shadow-lg: 0 12px 24px rgba(2, 6, 23, .12);
    --shadow-xl: 0 20px 40px rgba(2, 6, 23, .14);
    --shadow-2xl: 0 25px 50px rgba(2, 6, 23, .18);

    --shadow-box: 0 14px 32px rgba(2, 6, 23, .12) !important;
    --shadow-inner: inset 0 2px 12px 4px rgba(2, 6, 23, .05);

    /* تایپوگرافی */
    --font-size: 14px;
    --font-site: 'dana';
}

html {
    color: var(--color-site);
    font-size: 16px;
    line-height: 1.6
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-size: var(--font-size);
    font-family: var(--font-site), serif;
    font-weight: normal;
    color: var(--color-site);
    /* بک‌گراند گرادیانی نرم که کل صفحه را به اسکین جدید می‌برد */
    background:
        radial-gradient(900px 420px at 100% -10%, rgba(37, 99, 235, .08), transparent 60%),
        radial-gradient(700px 380px at -10% 110%, rgba(245, 158, 11, .10), transparent 60%),
        var(--bg-site);
    position: relative;
}

img {
    max-width: 100%
}

a,
p,
span,
.nav-link {
    color: var(--color-site)
}

p {
    line-height: 36px;
    margin-bottom: 0;
    font-size: 16px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    margin-bottom: 0;
    color: var(--color-site);
    line-height: 1.5
}

.tooltip {
    font-family: var(--font-site), serif;
    font-size: 12px !important
}

/* اسکرول‌بار مدرن */
::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: var(--main-color-one);
    border: 3px solid #fff;
    border-radius: 20px
}

/* دکمه‌ها و افکت هایلایت */
.btn {
    transition: .25s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.btn:not(.no-highlight)::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent)
}

.btn:hover::before {
    transition: 800ms;
    left: -100%
}

.btn:active {
    transform: translateY(1px)
}

.btn:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15)
}

/* رنگ‌های کمکی قدیمی → نگه‌داری با پالت جدید */
.main-color-one-bg {
    background: var(--main-color-one) !important;
    color: #fff !important
}

.main-color-one-bg:hover {
    background: var(--main-color-one-hover) !important;
    color: #fff !important
}

.main-color-two-bg {
    background: var(--main-color-two) !important;
    color: #fff !important
}

.main-color-two-bg:hover {
    background: var(--main-color-two-hover) !important
}

.main-color-three-bg {
    background: var(--main-color-three) !important;
    color: #fff !important
}

.main-color-three-bg:hover {
    background: var(--main-color-three-hover) !important
}

.main-color-one-color {
    color: var(--main-color-one) !important
}

.main-color-two-color {
    color: var(--main-color-two) !important
}

.main-color-three-color {
    color: var(--main-color-three) !important
}

.main-color-one-outline {
    border-color: var(--main-color-one)
}

.main-color-one-outline:hover {
    background: var(--main-color-one);
    color: #fff
}

/* Utilities */
.text-muted-two {
    color: var(--text-muted-two)
}

.border-muted {
    border-color: var(--border-muted) !important
}

.shadow-box {
    box-shadow: var(--shadow-box)
}

.shadow-sm {
    box-shadow: var(--shadow-sm)
}

.shadow {
    box-shadow: var(--shadow)
}

.shadow-md {
    box-shadow: var(--shadow-md)
}

.shadow-lg {
    box-shadow: var(--shadow-lg)
}

.shadow-xl {
    box-shadow: var(--shadow-xl)
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl)
}

.shadow-inner {
    box-shadow: var(--shadow-inner)
}

.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.text-overflow-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.text-overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.text-overflow-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

/* خط زیر عنوان‌ها */
.title-line-bottom,
.title-line-bottom-center {
    position: relative;
    padding-bottom: 10px
}

.title-line-bottom::before,
.title-line-bottom-center::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65px;
    height: 5px;
    background: var(--main-color-one)
}

.title-line-bottom-center::before {
    right: 50%;
    transform: translateX(50%)
}

/* لینک هاشوری نرم */
.span-primary {
    display: inline;
    background: rgba(37, 99, 235, .07);
    border: 1px dashed rgba(37, 99, 235, .35);
    padding: 4px 8px;
    color: var(--main-color-one);
    border-radius: 10px
}

/* ========================== Header ========================== */
.header-logo img {
    width: 150px;
    filter: drop-shadow(0 10px 24px rgba(2, 6, 23, .12))
}

.header-btn-group {
    border: 1px solid var(--border-muted);
    padding: 6px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.header-selector-city {
    position: relative
}

.header-selector-city::before {
    content: "";
    position: absolute;
    bottom: -46%;
    left: -3%;
    width: 170px;
    height: 10px;
    background: var(--main-color-two);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 10px 24px var(--main-color-two-shadow)
}

.menu-responsive-logo {
    width: 200px
}

/* جستجو */
.search-filed {
    position: relative
}

.search-filed .search-input {
    border-radius: 999px;
    background: #0b122003;
    border: 1px solid var(--border-muted);
    padding: 14px 18px;
    font-size: 14px
}

.search-filed .search-input:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15)
}

.search-filed .search-btn {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%)
}

.search-filed .search-btn i {
    color: #fff
}

/* ========================== Home Slider ========================== */
.home-slider {
    position: relative;
    height: 432px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg)
}

.home-slider .swiper,
.home-slider .swiper-slide,
.home-slider .swiper-slide img {
    border-radius: 16px
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
    background: #fff;
    border: 1px solid var(--border-muted);
    padding: 6px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    top: auto;
    bottom: 16px
}

.home-slider .swiper-button-prev {
    right: 16px
}

.home-slider .swiper-button-next {
    right: 72px
}

.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after {
    color: #0f172a !important
}

.home-slider .swiper-pagination {
    top: 28px !important;
    right: 0 !important;
    left: 0 !important;
    margin: auto;
    width: auto !important;
    background: rgba(255, 255, 255, .72);
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm)
}

.home-slider .swiper-pagination-bullet {
    width: 6px !important;
    height: 14px !important;
    margin: 0 3px !important;
    border-radius: 8px !important;
    background: var(--main-color-one) !important;
    opacity: .5
}

.home-slider .swiper-pagination-bullet-active {
    height: 22px !important;
    opacity: 1
}

/* Progress خطی */
.swiper-progress-bar {
    position: absolute;
    top: 14%;
    width: 95%;
    height: 3px;
    margin: 7px auto;
    display: block;
    z-index: 1
}

.swiper-progress-bar .slide_progress-bar {
    position: absolute;
    height: 3px;
    background: rgba(148, 163, 184, .35);
    opacity: 0;
    inset: 0
}

.swiper-progress-bar .slide_progress-bar:after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--main-color-one);
    width: 0
}

.swiper-progress-bar.active .slide_progress-bar {
    opacity: 1
}

.swiper-progress-bar.animate .slide_progress-bar:after {
    transition: width 3s linear;
    width: 100%
}

/* ========================== Product Card ========================== */
.product-box {
    background: #fff;
    border: 1px solid var(--border-muted);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-box)
}

.product-box.free-mode {
    width: 300px
}

.product-header-btn {
    display: flex
}

.product-header-btn a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid var(--border-muted);
    transition: .2s;
    box-shadow: var(--shadow-sm)
}

.product-header-btn a:hover {
    background: #eef2ff
}

.product-header-btn a i {
    font-size: 16px
}

.product-header-btn a:not(:last-child) {
    margin-left: 5px
}

.product-box .product-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.product-box .product-timer .timer-label {
    padding: 5px 10px;
    background: rgba(245, 158, 11, .15);
    border: 1px dashed rgba(245, 158, 11, .45);
    border-radius: 10px
}

.product-box .product-timer .timer-label span {
    color: #7a4a00;
    font-size: 13px
}

.product-box .product-image {
    height: 140px;
    display: flex;
    margin: 20px 0 5px;
    position: relative
}

.product-box .product-image img {
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 10px auto;
    transition: .5s ease
}

.product-box .two-image {
    z-index: -1;
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: transform 1.2s, visibility .4s, opacity .4s
}

.product-box:hover .one-image {
    opacity: 0;
    visibility: hidden
}

.product-box:hover .two-image {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transform: scale(1.05)
}

.product-box .product-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    height: 44px;
    margin-top: 16px
}

.product-box .product-title .title p {
    margin: 7px 0;
    font-weight: 800;
    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-box .product-title .title span {
    color: var(--text-muted-two) !important;
    font-size: 12px
}

.product-rating {
    display: flex;
    align-items: center
}

.product-rating .icon {
    margin-right: 5px
}

.product-rating .icon i {
    color: #fbbf24;
    font-size: 14px;
    vertical-align: middle
}

.new-price {
    line-height: 1;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    color: #0f172a
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center
}

.product-box .product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 10px
}

.product-box .product-action .link {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-muted);
    box-shadow: var(--shadow-sm)
}

/* ========================== Feature ========================== */
.feature {
    padding: 20px 0
}

.feature-item {
    height: 100%;
    padding: 10px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-muted);
    box-shadow: var(--shadow-sm)
}

.feature-item .feature-desc h6 {
    font-weight: 800;
    color: #0f172a
}

.feature-desc p {
    font-size: 13px
}

.feature-icon img {
    width: 50px
}

.feature-desc {
    margin-right: 10px
}

/* ========================== Category Card ========================== */
.category-card-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px 10px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-muted)
}

.category-card-item-image {
    position: relative;
    padding: 10px
}

.category-card-item-image img {
    width: 120px;
    border-radius: 20px
}

/* ========================== Product Slider Title ========================== */
.product-slider-box-title {
    padding-bottom: 7px;
    border-bottom: 2px solid rgba(15, 23, 42, .06);
    margin-bottom: 30px;
    position: relative
}

.product-slider-box-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 170px;
    height: 2px;
    background: var(--main-color-two)
}

.product-slider-box-title.white::before {
    background: #fff
}

.product-slider-box-title-title.dot {
    position: relative;
    padding-right: 20px
}

.product-slider-box-title-title.dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--main-color-one)
}

.product-slider-box-title.white .product-slider-box-title-title.dot::before {
    background: #fff
}

/* ========================== Amazing (Hero) ========================== */
.amazing {
    position: relative;
    padding-bottom: 90px;
    color: #fff;
    background:
        radial-gradient(700px 300px at 10% -10%, rgba(255, 255, 255, .12), transparent 60%),
        linear-gradient(135deg, #0b1220 0%, #101B38 100%);
}

.free-mode .swiper-button-next,
.free-mode .swiper-button-prev {
    background: #fff;
    padding: 3px 20px;
    border-radius: 10px;
    top: 92%;
    border: 1px solid var(--border-muted);
    box-shadow: var(--shadow-lg)
}

.free-mode .swiper-button-prev {
    right: 47.5% !important
}

.free-mode .swiper-button-next {
    right: 51% !important
}

.free-mode .swiper-button-next::after,
.free-mode .swiper-button-prev::after {
    color: var(--color-site)
}

.amazing-image {
    width: 180px
}

/* ========================== Section Product Slider ========================== */
.pro-slider {
    position: relative;
    border-radius: 20px;
    padding: 20px 6px;
    min-height: 420px
}

.pro-slider::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10px;
    height: 270px;
    border-radius: 20px 20px 5px 5px;
    background: linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(37, 99, 235, .18))
}

.site-slider .swiper {
    padding-bottom: 100px
}

.site-slider .swiper-button-next,
.site-slider .swiper-button-prev {
    background: #fff;
    padding: 3px 20px;
    border-radius: 10px;
    top: 88%;
    right: 51% !important;
    border: 1px solid var(--border-muted)
}

.site-slider .swiper-button-prev {
    right: 47.5% !important
}

.site-slider .swiper-button-next::after,
.site-slider .swiper-button-prev::after {
    color: var(--color-site)
}

/* ========================== Quick Select ========================== */
.quick-select-item-select {
    background: #fff;
    border: 1px solid var(--border-muted);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: .25s ease
}

.quick-select-item-select:hover {
    border-color: var(--main-color-two);
    box-shadow: 0 10px 24px rgba(245, 158, 11, .15)
}

/* ========================== Offer (Deal) ========================== */
.offer {
    height: auto;
    border-radius: 16px;
    background: #fff;
    position: relative;
    box-shadow: var(--shadow-lg)
}

.offer .swiper-pagination-bullet-active {
    background: var(--main-color-one);
    width: 15px;
    height: 7px;
    border-radius: 10px
}

.offer-discount {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    min-height: 100px;
    min-width: 140px;
    border-radius: 20px
}

.offer-discount span {
    border-radius: 0;
    min-height: 30px;
    min-width: 137px;
    font-weight: 600;
    margin: 0;
    z-index: 9;
    background: var(--main-color-one);
    color: #fff;
    width: 154px;
    font-size: 16px;
    position: absolute;
    text-align: center;
    padding: 30px 4px 4px;
    right: -46px;
    top: -15px;
    transform: rotate(35deg);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .28)
}

.offer-img {
    width: 300px;
    height: 300px;
    text-align: center;
    margin: 10px auto;
    border-left: 1px solid #e5e7eb;
    padding-left: 10px
}

.offer-title {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background: #f8fafc;
    box-shadow: var(--shadow)
}

.offer-title h4 {
    font-size: 18px;
    color: #334155
}

.offer-title span {
    color: #fff;
    background: var(--main-color-one);
    padding: 2px 8px;
    border-radius: 8px
}

.offer-desc-price {
    margin: 10px auto
}

.offer-desc-price .old {
    font-size: 17px;
    color: #cbd5e1;
    text-decoration: line-through
}

.offer-desc-price .new {
    color: #16a34a;
    font-weight: 800;
    font-size: 30px;
    margin-right: 10px
}

.offer-timer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 7px 0
}

.offer-timer-item {
    color: var(--main-color-one);
    width: 60px;
    height: 60px;
    border: 1px solid #eef2f7;
    box-shadow: var(--shadow);
    padding: 5px;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

.offer-timer-item .number {
    font-weight: 800;
    font-size: 16px
}

/* ========================== Product Row ========================== */
.product-row {
    position: relative;
    margin: 20px 0;
    padding: 30px 0 0
}

.product-row-item {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-muted);
    transition: .25s
}

.product-row-item:hover {
    border-color: var(--main-color-two);
    box-shadow: 0 12px 30px rgba(245, 158, 11, .18)
}

.product-row-item img {
    width: 150px;
    display: block;
    margin: auto
}

.cart-canvas-add {
    background: var(--main-color-one);
    text-align: center;
    border-radius: 15px;
    padding: 0
}

.cart-canvas-add a i {
    color: #fff
}

/* ========================== Blog ========================== */
.blog-item {
    background: #fff;
    box-shadow: var(--shadow-box);
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border-muted)
}

.blog-item-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 10px 25px;
    transition: .25s
}

.blog-item-desc {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.blog-item-title h6 {
    font-weight: 800;
    font-size: 20px
}

.blog-item-date h6 {
    font-size: 22px;
    color: var(--main-color-two)
}

.blog-item-date span {
    color: #334155
}

/* ========================== Footer ========================== */
footer {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important
}

.small-slider .swiper-button-next,
.small-slider .swiper-button-prev {
    padding: 15px;
    background: transparent;
    color: var(--color-site);
    box-shadow: none
}

.small-slider .swiper-button-prev::after,
.small-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color-one)
}

.social-link {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.social-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    transition: .25s;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px
}

.social-link a:hover {
    transform: translateY(-7px)
}

.copy-right {
    text-align: center;
    background: #fff
}

.copy-right p {
    font-size: 14px;
    text-align: right
}

/* ========================== Accordion (FAQ) ========================== */
.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 15px;
    border: none
}

.accordion-style .card-header {
    border: 0;
    background: none;
    padding: 0;
    border-bottom: none
}

.accordion-style .btn-link {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-muted) !important;
    display: block;
    width: 100%;
    font-size: 18px;
    border-radius: 12px;
    text-align: right;
    white-space: normal;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: #0f172a;
    padding: 22px 60px
}

.accordion-style .btn-link.collapsed {
    background: #f8fafc !important;
    color: var(--color-site);
    border-radius: 12px;
    border: 1px solid var(--border-muted)
}

.accordion-style .card-body {
    padding: 20px;
    border: 1px solid var(--border-muted);
    border-top: none;
    border-radius: 0 0 12px 12px;
    line-height: 36px;
    font-size: 16px;
    color: #475569;
    background: #fff
}

/* ========================== Mobile Menu (Footer) ========================== */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: #fff;
    border-top: 1px solid var(--border-muted);
    padding: 18px 47px;
    box-shadow: 0 -10px 22px rgba(2, 6, 23, .08)
}

.mobile-footer i {
    font-size: 25px
}

.mobile-footer .parent {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-footer .parent .item.item-float {
    position: absolute;
    right: 50%;
    transform: translateX(33px);
    text-align: center;
    line-height: 70px;
    top: -50px;
    width: 70px;
    height: 70px;
    background: var(--main-color-one);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .35)
}

.mobile-footer .item.item-float i {
    color: #fff
}

.mobile-footer .menu-cart-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: translate(50%, -50%);
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    min-width: 22px;
    background: #ef4444;
    text-align: center;
    padding: 0 5px;
    color: #fff;
    border-radius: 11px;
    box-shadow: 0 0 0 1px #fff
}

.mobile-footer li.active i {
    color: var(--main-color-one)
}

.mobile-footer ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center
}

/* ========================== Cart Drawer ========================== */
.cart-canvas-parent li:not(:last-child) {
    border-bottom: 1px solid var(--border-muted);
    margin-bottom: 20px;
    padding-bottom: 20px
}

.cart-canvas-delete a {
    background: #fee2e2;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 12px;
    padding: 0
}

.cart-canvas-delete a i {
    color: #ef4444
}

.cart-canvas-delete a:hover {
    background: #fecaca
}

.cart-canvas-foots {
    border-top: 1px solid var(--border-muted);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px
}

/* ========================== Product Page ========================== */
.product-gallery {
    padding: 5px
}

.product-gallery img {
    max-width: 80%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: auto
}

.product-gallery .swiper-pagination {
    bottom: 20px
}

.product-gallery .swiper-slide {
    border: 1px solid var(--border-muted);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 10px 10px 60px;
    background: #fff
}

.product-gallery .swiper-slide .swiper-zoom-container {
    padding: 10px
}

.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
    background: #eef2f7;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px
}

.product-gallery .swiper-button-next::after,
.product-gallery .swiper-button-prev::after {
    color: var(--color-site)
}

.product-gallery-thumb {
    padding: 12px;
    border: 1px solid var(--border-muted);
    border-radius: 12px
}

.product-gallery-thumb img {
    display: block;
    max-width: 80%;
    height: 100px;
    object-fit: cover;
    margin: auto;
    opacity: .6;
    transition: .25s;
    cursor: pointer
}

.product-gallery-thumb img:hover {
    opacity: 1
}

.product-gallery-thumb .swiper-slide {
    border-radius: 10px;
    transition: .1s;
    padding: 10px;
    border: 2px solid transparent
}

.product-gallery-thumb .swiper-slide-thumb-active {
    border-color: var(--main-color-one)
}

.product-gallery-thumb .swiper-slide-thumb-active img {
    opacity: 1
}

/* آیکون‌های شناور محصول */
.icon-product-box {
    z-index: 9;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.icon-product-box-item {
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #eef2f7;
    padding: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm)
}

.icon-product-box-item i {
    font-size: 16px;
    display: inline-block
}

/* متاهای محصول */
.product-meta-title {
    border-bottom: 2px solid #eef2f7;
    padding-bottom: 10px
}

.product-meta-title img {
    max-width: 100px
}

.rating-star {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fef3c7;
    text-align: center;
    border-radius: 50%;
    color: #7c5800;
    font-size: 16px
}

.product-meta-feature {
    margin-top: 20px
}

.product-meta-feature-items ul {
    margin-top: 15px;
    position: relative;
    padding-right: 20px
}

.product-meta-feature-items ul::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e2e8f0;
    border-radius: 10px
}

.product-meta-feature-items ul::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 25px;
    background: #64748b;
    border-radius: 10px
}

.product-meta-feature-items ul li {
    color: var(--text-muted)
}

.product-meta-feature-items ul li:not(:last-child) {
    margin-bottom: 10px
}

.product-meta-feature-items ul li span {
    font-weight: 800
}

.product-meta-feature-items ul li strong {
    margin-right: 7px;
    color: var(--text-muted);
    font-weight: normal
}

.product-meta-color {
    margin-top: 20px
}

.product-meta-color h5 {
    margin-bottom: 15px
}

.product-meta-color-items {
    margin-top: 10px
}

.product-meta-color-items label {
    background: #f1f5f9;
    font-size: 14px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid var(--border-muted)
}

.product-meta-color-items label:hover {
    background: #e2e8f0 !important
}

.product-meta-color-items .btn-check:checked+.btn {
    border-color: var(--main-color-two) !important
}

.product-meta-color-items .btn-check:checked+.btn:hover {
    background: transparent !important
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    padding: 10px 50px !important
}

/* تب‌ها و محتوا */
.product-desc {
    position: relative
}

.product-desc-tab {
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 10px
}

.product-desc-tab::-webkit-scrollbar {
    display: none
}

.product-desc-tab ul {
    min-width: 450px;
    flex-wrap: nowrap
}

.product-desc-tab ul li {
    margin-left: 5px;
    margin-bottom: 10px
}

.product-desc-tab ul li button {
    border: 2px solid transparent;
    background: #f1f5f9;
    padding: 18px 60px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    position: relative
}

.product-desc-tab ul li button.active::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 50%;
    height: 2px;
    background: var(--main-color-two)
}

.product-desc-tab-content {
    padding: 20px 0
}

.product-desc-content p {
    line-height: 35px
}

.product-desc-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto
}

/* کامنت‌ها و امتیازدهی */
.comment {
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    background: #fff !important
}

.comment .title {
    background: #f8fafc;
    padding: 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm)
}

.star i.bi-star {
    color: #cbd5e1
}

.star i.bi-star-fill,
.star i.bi-star-half {
    color: #fbbf24
}

.comment-replay {
    background: rgba(37, 99, 235, .06) !important
}

/* امتیاز کلی محصول */
.product-rateing .title {
    padding-bottom: 20px
}

.product-rateing .number {
    text-align: center;
    padding: 20px 30px;
    border: 1px solid var(--border-muted);
    border-radius: 8px
}

.product-rateing .number h2 {
    margin: 30px 0;
    color: #0f172a;
    font-size: 40px
}

.product-rateing .number .star {
    padding: 5px;
    background: #f1f5f9;
    border-radius: 10px
}

.product-rateing .number .star .bi-star {
    color: #cbd5e1
}

.product-rateing .number .star .bi-star-fill {
    color: #f59e0b
}

.product-rateing .prog-rating {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-muted);
    border-radius: 8px
}

/* جدول‌ها */
.table-custom table {
    position: relative;
    z-index: 10
}

.table-custom table::before {
    content: "";
    background: var(--main-color-one);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0
}

.roundedTable {
    border-radius: 20px;
    border-spacing: 0;
    margin-bottom: 0
}

.roundedTable tr:not(:last-child) {
    border-bottom: 1px solid var(--border-muted)
}

/* صفحه‌بندی */
.my-paginate ul {
    flex-wrap: wrap;
    align-items: center
}

.my-paginate li {
    margin-left: 5px;
    margin-bottom: 5px
}

.my-paginate li a {
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    padding: 5px 15px;
    color: #334155;
    background: #fff;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    border: 1px solid var(--border-muted)
}

.my-paginate li.active a {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
    color: #fff;
    font-weight: 800
}

/* ========================== Auth / OTP ========================== */
.auth-form {
    padding: 15px;
    border: 1px solid var(--border-muted);
    border-radius: 14px;
    box-shadow: var(--shadow-sm)
}

.comment-item {
    position: relative
}

.comment-item label.label-float {
    position: absolute;
    top: -14px;
    background: #fff;
    right: 16px;
    padding: 5px 10px
}

.comment-item input.form-control,
.comment-item select {
    padding: 16px 14px;
    text-align: right;
    border-radius: 10px;
    font-size: 14px;
    border-color: var(--border-muted)
}

.comment-item input.form-control:focus,
.comment-item select:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12)
}

#otp-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    column-gap: 8px
}

#otp-input input {
    text-align: center;
    padding: 10px 8px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    height: 64px;
    width: 50px
}

#otp-input input:focus {
    border-color: var(--main-color-one)
}

/* ========================== Shipping / Payment ========================== */
.delivary-payment-bank-item {
    border: 1px solid var(--border-muted);
    text-align: center;
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 14px;
    padding: 20px;
    background: #fff
}

.delivary-payment-bank-item.active {
    background: #ecfeff;
    border-color: #06b6d4
}

.payment {
    text-align: center
}

.payment-icon i {
    font-size: 8em;
    color: var(--main-color-green)
}

.payment-title {
    padding-bottom: 5px;
    border-bottom: 2px solid #e5e7eb
}

.payment-title h5 {
    font-size: 30px;
    color: var(--main-color-green)
}

.detail-order {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 10px
}

/* ========================== Alerts / Payment Status ========================== */
.alert-box {
    position: relative;
    text-align: center;
    width: 100%;
    background: #fff;
    box-shadow: var(--shadow-box);
    padding: 20px;
    border-radius: 14px
}

.alert-box.ab-success {
    border-top: 16px solid #22c55e
}

.alert-box.ab-nsuccess {
    border-top: 16px solid #ef4444
}

.payment-status .icon {
    margin-bottom: 15px;
    text-align: center
}

.payment-status .icon i {
    font-size: 70px;
    color: #16a34a
}

.payment-status.fail-pay .icon i {
    color: #ef4444
}

.payment-status .title {
    text-align: center
}

.payment-status .title h3 {
    font-size: 25px;
    color: #16a34a
}

.payment-status.fail-pay .title h3,
.payment-status.fail-pay .title p {
    color: #ef4444
}

.payment-status .title p {
    margin-bottom: 0;
    margin-top: 15px;
    color: #16a34a;
    font-size: 18px
}

.payment-status .pay-table {
    border-radius: 10px;
    padding: 15px;
    background: #fff
}

.payment-status .pay-table .pay-table-title {
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 7px;
    border-bottom: 3px solid #e5e7eb
}

.payment-status .pay-table .pay-table-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* ========================== Steps (Order Process) ========================== */
.steps .step {
    display: block;
    width: 100%;
    margin-bottom: 35px;
    text-align: center
}

.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center
}

.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    width: 50%;
    height: 3px;
    margin-top: -1px;
    background: #e2e8f0;
    z-index: 1
}

.steps .step .step-icon-wrap::before {
    left: 0
}

.steps .step .step-icon-wrap::after {
    right: 0
}

.steps .step .step-icon {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #374151;
    font-size: 38px;
    line-height: 81px;
    z-index: 5
}

.steps .step .step-title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #606975;
    font-size: 14px;
    font-weight: 600
}

.steps .step.completed .step-icon {
    border-color: var(--main-color-one);
    background: var(--main-color-one);
    color: #fff
}

.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after {
    background: var(--main-color-two)
}

.step.completed .step-title {
    font-weight: 800;
    padding-right: 15px;
    position: relative
}

.step.completed .step-title::before {
    content: "\F26A";
    position: absolute;
    bottom: -35px;
    right: 50%;
    transform: translateX(50%);
    font-family: 'bootstrap-icons', serif;
    font-size: 20px;
    color: var(--main-color-one)
}

/* ========================== Contact Us ========================== */
.single-address-parent {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-box)
}

.single_address {
    overflow: hidden;
    margin-bottom: 20px;
    padding-right: 5px
}

.single_address i {
    background: #fff;
    color: var(--main-color-one);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    float: right;
    margin-left: 14px;
    font-size: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-muted);
    margin-bottom: 20px;
    transition: .25s
}

.single_address:hover i {
    background: var(--main-color-two);
    color: #fff
}

.single_address h4 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--main-color-one)
}

.single_address p {
    margin-top: 5px;
    text-align: justify;
    font-size: 14px;
    line-height: 30px
}

.time-work {
    line-height: 35px;
    margin-left: 20px;
    background: rgba(37, 99, 235, .10);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--main-color-one)
}

.time-work i {
    margin-left: 10px
}

/* ========================== Compare ========================== */
.compare-title {
    padding: 10px 0;
    margin-bottom: 15px;
    display: flex
}

.compare-title i {
    margin-left: 10px
}

.compare-title h6 {
    font-weight: 800;
    font-size: 20px
}

.compare table {
    border: 1px double #e2e8f0
}

.compare table tr th,
.compare table tr td {
    font-size: 14px;
    vertical-align: middle;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
    border: 1px double #e2e8f0;
    padding: 10px 20px
}

.compare table tr td:nth-child(1) {
    font-weight: 800
}

.compare-delete span i {
    cursor: pointer;
    transition: .2s
}

.compare-delete span i:hover {
    color: #ef4444
}

/* ========================== 404 ========================== */
.error-container {
    text-align: center;
    font-size: 106px;
    font-weight: 800;
    margin: 70px 15px
}

.error-container>span.zero {
    background: linear-gradient(-45deg, transparent 0%, rgba(0, 0, 0, .06) 50%, transparent 51%), linear-gradient(109.6deg, #3b82f6 11.2%, #1e3a8a 91.1%);
}

/* ========================== Panel / Profile (گزیدهٔ کلیدی) ========================== */
.profile__sidebar {
    position: relative;
    padding: 90px 5px 15px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 25px;
    box-shadow: var(--shadow-lg)
}

.profile__sidebar__navigation li a {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 8px 20px;
    color: #0e1935
}

.profile__sidebar__navigation li a:hover,
.profile__sidebar__navigation li a.active {
    color: var(--main-color-one) !important
}

.profile__sidebar__navigation li a:hover::before,
.profile__sidebar__navigation li a.active::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 3px;
    background: var(--main-color-one)
}

/* ========================== Blog List & Single (گزیده) ========================== */
.blog-post-card {
    padding: 20px;
    border: 1px solid var(--border-muted);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.blog-post-card:hover {
    border-color: var(--main-color-two)
}

.blog-post-card-thumbnail img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px
}

/* ========================== Pagination Style 2 (گزیده) ========================== */
.pagination.pagination-2 a,
.pagination.pagination-2 span {
    border: none;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: rgba(0, 0, 0, .5);
    background: transparent;
    box-shadow: none
}

.pagination.pagination-2 a.active,
.pagination.pagination-2 span.active {
    background: var(--main-color-one);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 10px 27px -20px rgba(0, 0, 0, .33)
}


    #amazon-landing{--amz-primary:#2563eb;--amz-accent:#f59e0b;--amz-dark:#0f172a;--amz-muted:#64748b;--amz-grad1:#0b1220;--amz-grad2:#101B38}
    #amazon-landing .amz-hero{position:relative;overflow:hidden;background:
      radial-gradient(1200px 600px at 100% -10%, rgba(37,99,235,.25), transparent 60%),
      radial-gradient(800px 400px at -10% 110%, rgba(245,158,11,.25), transparent 60%),
      linear-gradient(135deg, var(--amz-grad1) 0%, var(--amz-grad2) 100%);color:#fff}
    #amazon-landing .container{max-width:1200px;margin:0 auto;padding-left:16px;padding-right:16px}
    #amazon-landing .amz-hero .container{padding-top:64px;padding-bottom:64px}
    #amazon-landing .amz-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);
      padding:.4rem .75rem;border-radius:999px;font-size:.9rem;margin-bottom:1rem}
    #amazon-landing .amz-title{font-weight:800;line-height:1.2;margin:0 0 1rem 0;font-size:2rem}
    @media(min-width:992px){#amazon-landing .amz-title{font-size:2.6rem}}
    #amazon-landing .amz-sub{font-size:1.05rem;color:#cbd5e1;max-width:720px;margin:0}
    #amazon-landing .amz-cta{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.25rem}
    #amazon-landing .amz-btn{display:inline-block;border-radius:.9rem;padding:.85rem 1.15rem;font-weight:800;text-decoration:none}
    #amazon-landing .amz-btn--primary{background:var(--amz-accent);color:#111;border:none}
    #amazon-landing .amz-btn--outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.35)}
    #amazon-landing .amz-bullets{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1.1rem}
    #amazon-landing .amz-chip{display:flex;align-items:center;gap:.45rem;background:rgba(255,255,255,.08);border:1px dashed rgba(255,255,255,.25);
      padding:.5rem .75rem;border-radius:.7rem;color:#e2e8f0;font-size:.95rem;white-space:nowrap}
    #amazon-landing .amz-hero-card{background:#0f172a;border:1px solid rgba(255,255,255,.08);border-radius:1rem;padding:1rem}
    #amazon-landing .amz-hero-card .item{display:flex;gap:.8rem;padding:.65rem;border-radius:.75rem;align-items:flex-start}
    #amazon-landing .amz-hero-card .item + .item{margin-top:.25rem}
    #amazon-landing .amz-hero-card .icon{width:22px;height:22px;fill:var(--amz-accent);margin-top:.15rem;flex:none}
    #amazon-landing .amz-hero-note{margin-top:.75rem;font-size:.85rem;color:#94a3b8}

    #amazon-landing .amz-steps{background:#fff}
    #amazon-landing .amz-steps .container{padding-top:48px;padding-bottom:48px}
    #amazon-landing .amz-sec-title{font-weight:900;font-size:1.6rem;color:#0f172a;margin-bottom:1.25rem}
    #amazon-landing .amz-grid{display:grid;gap:12px}
    @media(min-width:768px){#amazon-landing .amz-grid{grid-template-columns:repeat(2,1fr)}}
    @media(min-width:992px){#amazon-landing .amz-grid{grid-template-columns:repeat(4,1fr)}}
    #amazon-landing .amz-step{height:100%;background:#0b122003;border:1px solid #e5e7eb;border-radius:1rem;padding:1rem;transition:transform .2s ease, box-shadow .2s ease}
    #amazon-landing .amz-step:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(2,6,23,.08)}
    #amazon-landing .amz-step .icon{width:26px;height:26px;fill:var(--amz-primary)}
    #amazon-landing .amz-step h3{font-size:1.05rem;margin:.6rem 0 .35rem 0;font-weight:900;color:#0f172a}
    #amazon-landing .amz-step p{color:#475569;margin:0}

    #amazon-landing .amz-badges{background:#fafafa;border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9}
    #amazon-landing .amz-badges .container{padding-top:28px;padding-bottom:28px}
    #amazon-landing .amz-cards{display:grid;gap:12px}
    @media(min-width:768px){#amazon-landing .amz-cards{grid-template-columns:repeat(2,1fr)}}
    @media(min-width:992px){#amazon-landing .amz-cards{grid-template-columns:repeat(4,1fr)}}
    #amazon-landing .amz-badge-card{display:flex;gap:.8rem;align-items:flex-start;background:#fff;border:1px solid #e5e7eb;border-radius:1rem;padding:1rem;height:100%}
    #amazon-landing .amz-badge-card .icon{width:24px;height:24px;fill:var(--amz-accent)}
    #amazon-landing .amz-badge-card h4{margin:.2rem 0;font-size:1rem;font-weight:900;color:#0f172a}
    #amazon-landing .amz-badge-card p{margin:0;color:#475569;font-size:.95rem}

    #amazon-landing .amz-faq .container{padding-top:36px;padding-bottom:56px}
    #amazon-landing .amz-faq .q{border:1px solid #e5e7eb;border-radius:.9rem;padding:1rem;background:#fff}
    #amazon-landing .amz-faq .q + .q{margin-top:.75rem}
    #amazon-landing .amz-faq .q h3{font-size:1rem;margin:0 0 .3rem 0;font-weight:900;color:#0f172a}
    #amazon-landing .amz-faq .q p{margin:0;color:#475569}
/* ===================== پایان اسکین ===================== */
