html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --c-bg: #040b24;
    --c-surface: #17181c;
    --c-surface-2: #1f2127;
    --c-card: rgba(255, 255, 255, 0.06);
    --c-card-border: rgba(255, 255, 255, 0.1);
    --c-text: #f5f1e8;
    --c-text-soft: #cfc7b8;
    --c-text-muted: #a9a292;
    --c-brand: #f5b400;
    --c-brand-2: #d89a00;
    --c-danger: #d9534f;
    --c-success: #2e9e6f;
    --c-white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.28);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.25s ease;
    --container-pad: 24px;
    --c-hero-1: #1a1206;
    --c-hero-2: #33220a;
    /* Added for sections that were using undefined vars */
    --gold: #d4af37;
    --line: rgba(255,255,255,.12);
    --shadow-soft: 0 8px 24px rgba(0,0,0,.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: VazirMatn;
    scroll-behavior: smooth;
    direction: rtl;
    text-align: right;
}

    body.mobile-cart-open {
        overflow: hidden;
    }

@font-face {
    font-family: 'IranYekan';
    src: url('../lib/fonts/iranyekan/woff/iranyekanweblight(fanum).woff');
}

@font-face {
    font-family: 'VazirMatn';
    src: url('../lib/fonts/Vazirmatn/fonts/ttf/Vazirmatn-Regular.ttf');
}

@font-face {
    font-family: 'IranSans';
    src: url('../lib/fonts/IranianSans.ttf');
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font: inherit;
}

    input:focus,
    button:focus,
    button:active {
        outline: none;
        box-shadow: none;
    }

.B-Naznin {
    font-family: B-Naznin, Tahoma, sans-serif;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        /* padding-right: 10px; */
        /* padding-left: 10px; */
    }

/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #191d2b;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 180, 0, 0.12);
    box-shadow: 0 1px 10px 0 rgb(255 255 255 / 8%);
}

.navbar {
    min-height: 78px;
    padding: 14px var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--c-brand);
    margin-right: 18px;
    margin-left: 0;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

    .nav-links li a {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        color: var(--c-text-soft);
        transition: var(--transition);
        text-decoration: none;
    }

        .nav-links li a:hover {
            color: gold;
            background: rgba(255, 255, 255, 0.06);
        }

.header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--c-brand);
    line-height: 1;
    user-select: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* مخفی خارج صفحه */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
        background-color: #161616;
    }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu li a {
        display: block;
        padding: 14px 0;
        color: var(--c-text-soft);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu.active {
        display: block;
    }

/* =========================
   DESKTOP BASKET
========================= */

.basket-hover {
    position: relative;
}

#BasketButton,
#cartButton {
    position: relative;
    padding: 7px 9px;
}

.basket-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    right: auto;
    left: 0;
    width: 390px;
    max-width: 90vw;
    background: #fff;
    color: #222;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1100;
    text-align: right;
}

.basket-hover:hover .basket-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.basket-hover:hover .basketIcon {
    color: black !important;
}

#dvBasket {
    max-height: 70vh;
    overflow-y: auto;
}

/* =========================
   HERO
========================= */

.bg-box {
    background: radial-gradient(circle at top right, rgba(245, 180, 0, 0.12), transparent 28%), linear-gradient(135deg, #0f0f10 0%, #17181c 45%, #0b0b0c 100%);
}

.hero-banner {
    min-height: 72vh;
    /* padding: 80px var(--container-pad); */
    background-color: #040b24;
    background-image: linear-gradient(135deg, rgb(17 15 13 / 0%), rgb(0 0 0 / 17%)), radial-gradient(circle at 15% 20%, rgb(253 186 0 / 18%), #00000000 22%), radial-gradient(circle at 80% 30%, rgb(255 255 255 / 31%), transparent 18%), url(/images/box-zaferan-box.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 550px;
    margin-right: 0px;
    margin-left: 5%;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.3;
    font-weight: 200;
    margin-bottom: 18px;
    color: var(--c-white);
}

.hero-subtitle {
    font-size: 1.06rem;
    line-height: 2;
    color: var(--c-text-soft);
    max-width: 640px;
    margin-bottom: 28px;
}

.hero-btn {
    border-radius: 999px;
    padding: 12px 28px;
    border-width: 2px;
    font-weight: 700;
}

    .hero-btn:hover {
        background: var(--c-brand);
        border-color: var(--c-brand);
        color: #111;
    }

/* =========================
   SAFFRON SECTION
========================= */

.box-background-color {
    background: linear-gradient(180deg, #131417 0%, #191b20 100%);
}

.hero-bg {
    position: relative;
    overflow: hidden;
    padding: 20px 0px;
    background: #040b24;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.14), rgba(245, 180, 0, 0.02));
    filter: blur(4px);
    pointer-events: none;
}

    .shape.s1 {
        width: 220px;
        height: 220px;
        top: 20px;
        right: -60px;
    }

    .shape.s2 {
        width: 180px;
        height: 180px;
        bottom: 40px;
        right: auto;
        left: -50px;
    }

    .shape.s3 {
        width: 120px;
        height: 120px;
        top: 50%;
        right: 18%;
        left: auto;
    }

.saffron-section {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

.title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 36px;
    color: var(--c-brand);
    text-align: right;
}

.saffron-card {
    width: 100%;
    max-width: 290px;
    min-height: 360px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid var(--c-card-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .saffron-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 54px rgba(0,0,0,0.3);
    }

.saffron-image {
    height: 240px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(245,180,0,0.12), transparent 60%), rgba(255,255,255,0.02);
}

    .saffron-image img {
        max-height: 100%;
        /* object-fit: contain; */
        width: 100%;
        /* ارتفاع ثابت */
        height: 210px;
        object-fit: cover; /* برش میده نه اینکه بکشه */
        object-position: center;
    }

.saffron-content {
    padding: 18px 20px 24px;
    text-align: center;
}

    .saffron-content h3 {
        margin: 0 0 8px;
        color: var(--c-white);
        font-size: 1.25rem;
        font-weight: 800;
    }

    .saffron-content span {
        color: var(--c-text-muted);
        font-size: 0.95rem;
    }

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    background: #040b24;
}

.trust-title {
    color: var(--c-white);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-align: right;
}

.trust-sub {
    color: var(--c-text-soft);
    font-size: 1rem;
    text-align: right;
}

.trust-card {
    height: 100%;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 180, 0, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

    .trust-card:hover {
        transform: translateY(-6px);
        border-color: rgba(245, 180, 0, 0.28);
    }

.trust-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(245, 180, 0, 0.12);
    color: var(--c-brand);
}

    .trust-icon svg {
        width: 34px;
        height: 34px;
        fill: currentColor;
        stroke: currentColor;
        stroke-width: 1.5;
    }

        .trust-icon svg .stroke {
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.trust-h {
    font-size: 1.1rem;
    color: var(--c-white);
    margin-bottom: 8px;
}

.trust-p {
    font-size: 0.95rem;
    color: var(--c-text-soft);
    line-height: 1.9;
    margin-bottom: 0;
}

/* =========================
   SEARCH + PRODUCT WRAPPER
========================= */

.pd {
    padding: 20px 12px 70px;
}

.box-search {
    position: relative;
    max-width: 520px;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 26px;
    padding-bottom: 16px;
}

.search-item {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: var(--c-white);
    padding: 0 48px 0 18px;
    text-align: right;
}

    .search-item::placeholder {
        color: var(--c-text-muted);
    }

.wd-90 {
    width: 90%;
}

.icon-search {
    position: absolute;
    right: 42px;
    left: auto;
    top: 16px;
    color: var(--c-brand);
    font-size: 18px;
}

.padding-box {
    padding-top: 12px;
    padding-bottom: 12px;
}

.padding-bottom {
    padding-bottom: 24px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: right;
}

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-media {
    padding: 18px;
    background: radial-gradient(circle at center, rgba(245,180,0,0.09), transparent 60%);
}

.product-placeholder {
    height: 220px;
    border-radius: 20px;
    border: 1px dashed rgba(245,180,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--c-text-muted);
    background: rgba(255,255,255,0.03);
    padding: 16px;
}

.product-body {
    padding: 18px;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--c-white);
}

.product-sub {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.product-price {
    color: var(--c-brand);
    font-size: 1rem;
    font-weight: 800;
}

.product-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(245, 180, 0, 0.12);
    color: #ffd25a;
    font-size: 0.8rem;
    white-space: nowrap;
}

.product-add {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: var(--c-brand);
    color: #1b1406;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

    .product-add:hover {
        background: #ffca2c;
    }

.product-stepper {
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

    .product-stepper button {
        width: 48px;
        height: 100%;
        border: none;
        background: transparent;
        color: var(--c-brand);
        font-size: 1.2rem;
        cursor: pointer;
    }

.product-qty {
    font-weight: 800;
    color: var(--c-white);
}

/* =========================
   DESKTOP CART CONTENT
========================= */

.cart-box {
    padding: 18px;
    background: #fff;
    text-align: right;
}

.cart-header {
    color: #222;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item-card {
    border-radius: 16px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.cart-product-image,
.cart-product-image-placeholder {
    width: 92px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
    margin: 0 auto;
    background: #f6f6f6;
}

.cart-product-title {
    color: #222;
    font-weight: 700;
    text-align: right;
}

.cart-price-box {
    min-width: 140px;
    text-align: right;
}

.cart-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #ffe7e7;
    color: #d9534f;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0 8px;
}

.cart-old-price {
    text-decoration: line-through;
    font-size: 0.85rem;
}

.cart-item-price {
    color: #222;
    font-size: 1rem;
    padding: 10px 0px;
}

.cart-qty-control {
    min-width: 116px;
    height: 42px;
    border-radius: 999px;
    background: #f8f8f8;
    padding: 0 6px;
}

.cart-qty-btn {
    font-size: 1rem;
    text-decoration: none !important;
}

.cart-qty-number {
    min-width: 24px;
    text-align: center;
    color: #222;
    font-weight: 700;
}

.cart-summary {
    color: #222;
    text-align: right;
}

.final-price-box {
    gap: 12px;
}

.cart-submit-btn {
    background: var(--c-brand);
    color: #1b1406;
    font-weight: 800;
    border-radius: 12px;
}

    .cart-submit-btn:hover {
        background: var(--c-brand-2);
        color: #fff;
    }

.cart-final-price {
    color: #111;
    font-size: 1.1rem;
}

/* =========================
   MOBILE CART BAR + DRAWER
========================= */

.mobile-cart-bar {
    position: fixed;
    right: 16px;
    left: 16px;
    bottom: 16px;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5b400, #d89a00);
    color: #1a1306;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

    .mobile-cart-bar.show {
        display: flex;
    }

.mobile-cart-bar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.mobile-cart-bar-price {
    font-weight: 900;
}

.mobile-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1290;
}

    .mobile-cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-cart-drawer {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1300;
    background: #fff;
    color: #222;
    border-radius: 24px 24px 0 0;
    min-height: 220px;
    max-height: 86vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

    .mobile-cart-drawer.active {
        transform: translateY(0);
    }

.mobile-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
}

.mobile-cart-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-cart-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: #f5f5f5;
    color: #444;
    cursor: pointer;
}

.mobile-cart-header-title {
    font-weight: 800;
}

#mobileCartDrawerBody {
    padding: 16px 16px 24px;
    overflow-y: auto;
    max-height: calc(86vh - 72px);
}

.mobile-cart-empty {
    text-align: center;
    color: #777;
    padding: 34px 0;
}

.mobile-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-drawer-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 16px;
}

.mobile-drawer-product-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-counter-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: #f2f2f2;
    color: #222;
    cursor: pointer;
    font-weight: 800;
}

.mobile-counter-number {
    min-width: 18px;
    text-align: center;
    font-weight: 800;
}

.mobile-drawer-product-info {
    text-align: right;
    flex: 1;
}

.mobile-drawer-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mobile-drawer-product-price {
    font-size: 0.9rem;
    color: #666;
}

.mobile-drawer-price-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #efefef;
}

.mobile-drawer-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mobile-drawer-total-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e6e6e6;
    font-weight: 800;
}

.mobile-drawer-price-value {
    font-weight: 700;
}

.mobile-drawer-price-label {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-drawer-discount-link {
    margin-top: 16px;
    color: var(--c-brand-2);
    font-weight: 700;
    text-align: right;
}

.mobile-drawer-submit-wrapper {
    margin-top: 18px;
}

.mobile-drawer-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: var(--c-brand);
    color: #1b1406;
    font-weight: 900;
    cursor: pointer;
}

/* =========================
   FOOTER
========================= */

.zarna-footer {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-top: 1px solid rgba(245, 180, 0, 0.12);
    padding: 72px 0 28px;
    text-align: right;
}

.zarna-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.zarna-footer__glow--one {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(245,180,0,0.14);
}

.zarna-footer__glow--two {
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -90px;
    background: rgba(255,255,255,0.05);
}

.zarna-footer__container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* FIXED: 5 columns on desktop (including enamad) */
.zarna-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr 0.8fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    /* prevent grid overflow/break */
    .zarna-footer__top > * {
        min-width: 0;
    }

.zarna-footer__brand,
.zarna-footer__column {
    min-width: 0;
}

.zarna-footer__logo {
    display: inline-block;
    color: var(--c-brand);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.zarna-footer__description {
    color: var(--c-text-soft);
    line-height: 2;
    margin-bottom: 18px;
}

.zarna-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .zarna-footer__badges span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.05);
        color: var(--c-text);
        font-size: 0.9rem;
    }

.zarna-footer__title {
    color: var(--c-white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.zarna-footer__links,
.zarna-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .zarna-footer__links li,
    .zarna-footer__contact-list li {
        margin-bottom: 12px;
    }

    .zarna-footer__links a,
    .zarna-footer__contact-list a,
    .zarna-footer__contact-list span {
        color: var(--c-text-soft);
        transition: var(--transition);
    }

        .zarna-footer__links a:hover,
        .zarna-footer__contact-list a:hover {
            color: var(--c-brand);
        }

    .zarna-footer__contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: right;
    }

    .zarna-footer__contact-list i {
        color: var(--c-brand);
        margin-top: 5px;
    }

/* Enamad block kept with current HTML structure */
.zarna-footer__enamad {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

    .zarna-footer__enamad a {
        display: inline-flex;
        background: #fff;
        border-radius: 12px;
        padding: 6px;
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        transition: transform .2s ease;
    }

        .zarna-footer__enamad a:hover {
            transform: translateY(-2px);
        }

    .zarna-footer__enamad img {
        display: block;
        width: 110px;
        height: auto;
    }

.zarna-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .zarna-footer__socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.06);
        color: var(--c-white);
        transition: var(--transition);
    }

        .zarna-footer__socials a:hover {
            background: var(--c-brand);
            color: #111;
        }

.zarna-footer__middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zarna-footer__newsletter-text h4 {
    margin: 0 0 10px;
    color: var(--c-white);
    font-size: 1.2rem;
    font-weight: 800;
}

.zarna-footer__newsletter-text p {
    margin: 0;
    color: var(--c-text-soft);
}

.zarna-footer__newsletter {
    flex: 0 0 420px;
    max-width: 100%;
    display: flex;
    gap: 10px;
}

    .zarna-footer__newsletter input {
        flex: 1;
        height: 50px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.06);
        color: var(--c-white);
        padding: 0 14px;
        text-align: right;
    }

        .zarna-footer__newsletter input::placeholder {
            color: var(--c-text-muted);
        }

    .zarna-footer__newsletter button {
        height: 50px;
        border: none;
        border-radius: 14px;
        padding: 0 18px;
        background: var(--c-brand);
        color: #111;
        font-weight: 800;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

.zarna-footer__bottom {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

    .zarna-footer__bottom p {
        margin: 0;
        color: var(--c-text-muted);
    }

    .zarna-footer__bottom a,
    .zarna-footer__designer a {
        color: var(--c-brand);
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .hero-banner {
        min-height: 60vh;
        padding: 64px 20px;
    }

    .hero-content {
        margin-left: 0;
    }

    .zarna-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .zarna-footer__enamad {
        justify-content: flex-start;
    }

    .zarna-footer__middle {
        flex-direction: column;
        align-items: stretch;
    }

    .zarna-footer__newsletter {
        flex: 1 1 auto;
    }
}

/* merged duplicate 850 media */
@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
        order: 1;
    }

    .navbar {
        display: flex;
        align-items: center;
    }

    .box-logo {
        order: 2;
        margin: 0 auto;
    }

    .header-actions-wrap {
        order: 3;
    }
}
@media (min-width: 851px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
.mobile-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
}

@media (min-width: 769px) {
    .mobile-cart-bar,
    .mobile-cart-overlay,
    .mobile-cart-drawer {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --container-pad: 16px;
    }

    .basket-hover {
        display: none;
    }

    .navbar {
        min-height: 72px;
        padding: 12px 16px;
    }

    .logo {
        font-size: 1.3rem;
        margin-right: 10px;
        margin-left: 0;
    }

    .header-actions-wrap {
        gap: 8px;
    }

    .basket-dropdown {
        display: none;
    }

    .hero-banner {
        min-height: 52vh;
        padding: 48px 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .hero-bg {
        padding: 60px 12px;
    }

    .title,
    .trust-title {
        font-size: 1.5rem;
    }

    .saffron-card {
        min-height: 320px;
    }

    .saffron-image {
        height: 210px;
    }

    .pd {
        padding-bottom: 100px;
    }

    .box-search {
        max-width: 100%;
    }

    .wd-90 {
        width: 100%;
    }

    .icon-search {
        right: 16px;
        left: auto;
    }

    .zarna-footer {
        padding-top: 56px;
    }

    .zarna-footer__top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .zarna-footer__enamad {
        justify-content: center;
    }

    .zarna-footer__newsletter {
        flex-direction: column;
    }

        .zarna-footer__newsletter button,
        .zarna-footer__newsletter input {
            width: 100%;
        }

    .zarna-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .mobile-cart-bar {
        right: 12px;
        left: 12px;
        bottom: 12px;
        padding: 12px 14px;
    }

    .trust-card {
        border-radius: 18px;
    }

    .product-price-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= Mobile SEO ReadMore (only on mobile) ================= */
.mobile-readmore-btn {
    display: none;
}

/* Ã™â€¦Ã™Ë†Ã˜Â¨Ã˜Â§Ã›Å’Ã™â€ž: ÃšÂ©Ã™â€ž Ã™â€¦Ã˜ÂªÃ™â€  Ã˜Â³Ã˜Â¦Ã™Ë† 3 Ã˜Â®Ã˜Â· + Ã˜Â¯ÃšÂ©Ã™â€¦Ã™â€¡ Ã˜Â§Ã˜Â¯Ã˜Â§Ã™â€¦Ã™â€¡ Ã™â€¦Ã˜Â·Ã™â€žÃ˜Â¨ */
@media (max-width: 767.98px) {
    .mobile-readmore-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mobile-readmore-box.expanded .mobile-readmore-text {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .mobile-readmore-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        background: transparent;
        color: var(--gold);
        border: 1px solid rgba(212,175,55,.35);
        border-radius: 12px;
        padding: 9px 14px;
        font-size: .88rem;
        font-weight: 800;
        cursor: pointer;
        text-decoration: none !important;
    }

        .mobile-readmore-btn:hover {
            color: #fff;
            border-color: rgba(212,175,55,.55);
            background: rgba(212,175,55,.08);
        }
}

/* ================= FAQ Accordion ================= */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-acc-item {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-acc-btn {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: right;
    font-size: .96rem;
    font-weight: 900;
    cursor: pointer;
}

.faq-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,.30);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    transition: .2s ease;
}

.faq-acc-content {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    max-height: none;
    overflow: hidden;
    transition: transform .22s ease, opacity .22s ease;
    padding: 0 18px;
}

.faq-acc-item.active .faq-acc-content {
    transform: scaleY(1);
    opacity: 1;
    padding-bottom: 16px;
}

.faq-acc-content p {
    color: rgba(255,255,255,.75);
    line-height: 2;
    margin: 0;
}

.faq-acc-item.active .faq-acc-content {
    max-height: 260px;
    padding: 0 18px 16px;
}

.faq-acc-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
    border-color: rgba(212,175,55,.60);
    background: rgba(212,175,55,.10);
}

/* ================= Links: remove underline everywhere ================= */
a, a:visited, a:hover, a:active {
    text-decoration: none !important;
}

.cart-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
}

    .cart-layout .cart-items {
        flex: 1;
        overflow-y: auto;
        padding-right: 4px;
    }

    .cart-layout .border-top {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 10;
        padding-bottom: 15px;
    }
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* مخفی خارج صفحه */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
@media (min-width: 851px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
.mobile-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
}


    .mobile-menu.active {
        right: 0;
    }
