/*
Theme Name: Tashrifat Luxe
Theme URI: https://tajgolluxe.ir
Author: Tashrifat Luxe
Description: قالب اختصاصی تشریفات لوکس اردبیل
Version: 3.0.0
Text Domain: tashrifat-luxe
*/


@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Black.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}




/* =========================================================
   FONT
========================================================= */










/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {

    --bg: #ffffff;
    --surface: #f8f7f3;
    --surface-2: #f2f0e9;

    --text: #171717;
    --muted: #717171;

    --line: #e8e6df;

    --gold: #a77b34;
    --gold-dark: #815a1e;
    --gold-soft: #f6efe3;

    --dark: #111111;

    --green: #16794b;

    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow-sm:
        0 5px 20px rgba(0,0,0,.04);

    --shadow-md:
        0 18px 45px rgba(0,0,0,.07);

    --shadow-lg:
        0 30px 80px rgba(0,0,0,.11);

    --container: 1280px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;

    direction: rtl;

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

    background: var(--bg);
    color: var(--text);

    font-size: 16px;
    line-height: 1.9;

    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    width: 100%;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;

    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 82px;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 40px;
}

.brand {
    display: flex;
    flex-direction: column;

    line-height: 1.2;

    white-space: nowrap;
}

.brand-main {
    font-size: 22px;
    font-weight: 900;
}

.brand-city {
    margin-top: 5px;

    font-size: 11px;
    font-weight: 700;

    color: var(--gold);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    color: #454545;

    font-size: 14px;
    font-weight: 600;

    transition: .2s;
}

.main-nav a:hover {
    color: var(--gold);
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    line-height: 1.3;
}

.header-contact span {
    margin-bottom: 4px;

    font-size: 11px;

    color: var(--muted);
}

.header-contact a {
    direction: ltr;

    font-size: 18px;
    font-weight: 900;

    color: var(--text);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;

    padding:
        72px
        0
        82px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(167,123,52,.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfaf7 0%,
            #ffffff 100%
        );
}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(390px, .82fr);

    align-items: center;

    gap: clamp(45px, 7vw, 100px);
}

.hero-content {
    min-width: 0;
}

.eyebrow,
.section-label {

    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 4px 12px;

    border-radius: 999px;

    background: var(--gold-soft);

    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 800;
}

.hero h1 {
    max-width: 750px;

    margin:
        18px
        0
        20px;

    font-size:
        clamp(
            42px,
            5vw,
            72px
        );

    line-height: 1.3;

    letter-spacing: -1.8px;

    font-weight: 900;
}

.hero h1 span {

    display: block;

    margin-top: 9px;

    color: var(--gold);

    font-size: .53em;

    line-height: 1.55;

    letter-spacing: -.5px;
}

.hero-content > p {

    max-width: 700px;

    margin:
        0
        0
        30px;

    color: var(--muted);

    font-size: 17px;

    line-height: 2;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;
}

.btn {

    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        11px
        25px;

    border: 0;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform .2s,
        box-shadow .2s,
        background .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    box-shadow:
        0 12px 25px
        rgba(0,0,0,.15);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-dark);
}


/* =========================================================
   HERO PHONE NUMBERS
========================================================= */

.hero-phones {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 40px;
}

.hero-phones > div {

    min-width: 170px;

    padding-right: 15px;

    border-right:
        2px
        solid
        var(--gold);
}

.hero-phones span {

    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 11px;
}

.hero-phones a {

    display: inline-block;

    direction: ltr;

    font-size: 21px;
    font-weight: 900;

    letter-spacing: .3px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {

    position: relative;

    width: 100%;

    padding:
        38px
        36px;

    border-radius:
        var(--radius-xl);

    background:
        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );

    color: #fff;

    box-shadow:
        var(--shadow-lg);

    overflow: hidden;
}

.hero-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(
            167,
            123,
            52,
            .22
        );
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-card-badge {

    display: inline-flex;

    padding:
        6px
        12px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.9);

    font-size: 11px;
}

.hero-card h2 {

    margin:
        23px
        0
        12px;

    font-size:
        clamp(
            26px,
            2.5vw,
            36px
        );

    line-height: 1.6;

    font-weight: 900;
}

.hero-card p {

    margin: 0;

    color:
        rgba(255,255,255,.67);

    font-size: 14px;
}

.hero-big-call {

    display: block;

    margin-top: 28px;

    padding:
        16px
        19px;

    border-radius: 19px;

    background: #fff;

    color: var(--dark);
}

.hero-big-call span {

    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-size: 11px;
}

.hero-big-call strong {

    display: block;

    direction: ltr;

    text-align: right;

    font-size:
        clamp(
            25px,
            2.5vw,
            32px
        );

    line-height: 1.3;

    font-weight: 900;
}

.whatsapp-link {

    min-height: 50px;

    margin-top: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 16px;

    color:
        rgba(255,255,255,.9);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 92px 0;
}

.section-head {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 37px;
}

.section-head h1,
.section-head h2 {

    margin:
        13px
        0
        0;

    font-size:
        clamp(
            31px,
            3.6vw,
            47px
        );

    line-height: 1.45;

    font-weight: 900;
}

.section-head p {

    max-width: 600px;

    margin-top: 10px;

    color: var(--muted);
}

.section-head > a {

    flex: none;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 17px;
}

.service-card {

    min-height: 235px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    border:
        1px
        solid
        var(--line);

    border-radius:
        var(--radius-lg);

    background: #fff;

    box-shadow:
        var(--shadow-sm);

    transition:
        transform .25s,
        box-shadow .25s,
        border .25s;
}

.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #ded8ca;

    box-shadow:
        var(--shadow-md);
}

.service-number {

    color: var(--gold);

    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {

    margin:
        20px
        0
        8px;

    font-size: 21px;
    font-weight: 900;
}

.service-card p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

.service-card strong {

    margin-top: auto;
    padding-top: 23px;

    color: var(--gold);

    font-size: 12px;
}

.service-order {

    background:
        var(--dark);

    color: #fff;

    border-color:
        var(--dark);
}

.service-order p {
    color:
        rgba(255,255,255,.64);
}

.service-order button {

    width: max-content;

    margin-top: auto;

    padding:
        10px
        17px;

    border: 0;

    border-radius: 999px;

    background: #fff;

    color: #111;

    font-weight: 800;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-section {

    background:
        var(--surface);
}

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 22px;
}

.product-card {

    min-width: 0;

    overflow: hidden;

    border:
        1px
        solid
        var(--line);

    border-radius:
        var(--radius-lg);

    background: #fff;

    box-shadow:
        var(--shadow-sm);

    transition:
        transform .25s,
        box-shadow .25s;
}

.product-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow-md);
}

.product-image {

    position: relative;

    display: block;

    aspect-ratio:
        4 / 4.7;

    overflow: hidden;

    background:
        #f1f0eb;
}

.product-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.product-card:hover
.product-image img {

    transform:
        scale(1.04);
}

.product-badge {

    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 2;

    padding:
        6px
        11px;

    border-radius:
        999px;

    background:
        rgba(17,17,17,.9);

    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.product-content {
    padding: 20px;
}

.product-content h2,
.product-content h3 {

    margin:
        0
        0
        10px;

    font-size: 18px;

    line-height: 1.6;

    font-weight: 900;
}

.product-price {

    margin-bottom: 17px;

    color:
        var(--gold-dark);

    font-size: 16px;
    font-weight: 900;
}

.product-actions {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 8px;
}

.product-actions a,
.product-actions button,
.product-view {

    min-height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px
        solid
        var(--line);

    border-radius:
        13px;

    background: #fff;

    font-size: 12px;
    font-weight: 800;
}

.product-actions button {

    border-color:
        var(--dark);

    background:
        var(--dark);

    color: #fff;
}


/* =========================================================
   TRUST
========================================================= */

.trust-section {
    background: #fff;
}

.trust-grid {

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 70px;

    align-items: center;
}

.trust-grid h2 {

    margin:
        15px
        0
        14px;

    font-size:
        clamp(
            32px,
            4vw,
            46px
        );

    line-height: 1.45;
}

.trust-grid p {

    color: var(--muted);
}

.trust-items {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}

.trust-items > div {

    min-height: 125px;

    padding: 21px;

    border:
        1px
        solid
        var(--line);

    border-radius:
        var(--radius);

    background:
        var(--surface);
}

.trust-items strong {

    display: block;

    margin-bottom: 5px;

    font-size: 16px;
    font-weight: 900;
}

.trust-items span {

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-section {

    padding:
        15px
        0
        90px;
}

.contact-box {

    min-height: 240px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding:
        45px
        52px;

    border-radius:
        var(--radius-xl);

    background:
        linear-gradient(
            135deg,
            #171717,
            #080808
        );

    color: #fff;

    box-shadow:
        var(--shadow-lg);
}

.contact-box > div:first-child {
    max-width: 650px;
}

.contact-box span {

    color:
        #d5b16d;

    font-size: 12px;
}

.contact-box h2 {

    margin:
        8px
        0
        8px;

    font-size:
        clamp(
            31px,
            4vw,
            45px
        );

    line-height: 1.4;
}

.contact-box p {

    margin: 0;

    color:
        rgba(255,255,255,.65);
}

.contact-numbers {

    flex: none;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.contact-numbers a {

    direction: ltr;

    font-size:
        clamp(
            22px,
            2.5vw,
            30px
        );

    font-weight: 900;
}


/* =========================================================
   MODAL
========================================================= */

.preorder-modal {

    display: none;

    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 22px;

    align-items: center;
    justify-content: center;

    background:
        rgba(0,0,0,.68);

    backdrop-filter:
        blur(5px);
}

.preorder-modal.is-open {
    display: flex;
}

.preorder-dialog {

    position: relative;

    width:
        min(
            100%,
            500px
        );

    max-height:
        calc(
            100vh
            - 45px
        );

    overflow-y: auto;

    padding:
        33px;

    border-radius:
        var(--radius-lg);

    background: #fff;

    box-shadow:
        var(--shadow-lg);
}

.modal-close {

    position: absolute;

    top: 16px;
    left: 16px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background:
        var(--surface-2);

    font-size: 25px;
}

.preorder-dialog h2 {

    margin:
        13px
        0
        5px;

    font-size: 27px;
}

.preorder-dialog > p {

    margin:
        0
        0
        20px;

    color: var(--muted);
}

.preorder-dialog label {

    display: block;

    margin-top: 13px;

    font-size: 12px;
    font-weight: 800;
}

.preorder-dialog input,
.preorder-dialog textarea {

    width: 100%;

    display: block;

    margin-top: 6px;

    padding:
        13px
        14px;

    border:
        1px
        solid
        var(--line);

    border-radius:
        13px;

    background: #fff;

    font-size: 16px;

    outline: none;
}

.preorder-dialog input:focus,
.preorder-dialog textarea:focus {

    border-color:
        var(--gold);
}

.submit-order {

    width: 100%;

    min-height: 52px;

    margin-top: 18px;

    border: 0;

    border-radius:
        14px;

    background:
        var(--dark);

    color: #fff;

    font-weight: 900;
}


/* =========================================================
   SINGLE PRODUCT
========================================================= */

.single-product {

    padding:
        65px
        0;

    background:
        var(--surface);
}

.single-product-grid {

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    align-items: center;

    gap: 65px;
}

.single-product-image {

    overflow: hidden;

    border-radius:
        var(--radius-xl);

    background: #fff;

    box-shadow:
        var(--shadow-sm);
}

.single-product-image img {

    width: 100%;

    display: block;
}

.single-product-info h1 {

    margin:
        14px
        0;

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.45;

    font-weight: 900;
}

.single-price {

    color:
        var(--gold-dark);

    font-size: 23px;
    font-weight: 900;
}

.product-meta {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 11px;

    margin:
        25px
        0;
}

.product-meta > div {

    padding: 15px;

    border:
        1px
        solid
        var(--line);

    border-radius:
        15px;

    background: #fff;
}

.product-meta span,
.product-meta strong {
    display: block;
}

.product-meta span {

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 11px;
}

.single-product-actions {

    display: flex;

    gap: 9px;
}

.single-product-phone {

    margin-top: 18px;

    color: var(--muted);

    font-size: 13px;
}

.single-product-phone strong {

    direction: ltr;

    display: inline-block;

    margin-right: 6px;

    color: var(--text);

    font-size: 19px;
}

.product-description {

    max-width: 900px;

    font-size: 16px;

    line-height: 2.15;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        55px
        0
        40px;

    border-top:
        1px
        solid
        var(--line);

    background:
        var(--surface);
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .6fr;

    gap: 50px;
}

.footer-title {

    font-size: 22px;
    font-weight: 900;
}

.footer-text {

    max-width: 650px;

    color: var(--muted);
}

.site-footer .big-phone {

    display: block;

    direction: ltr;

    margin-top: 4px;

    font-size: 22px;
    font-weight: 900;
}


/* =========================================================
   MOBILE BAR
========================================================= */

.mobile-order-bar,
.mobile-actions {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1050px) {

    .header-inner {
        gap: 22px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-grid {

        grid-template-columns:
            1fr
            390px;

        gap: 40px;
    }

    .services {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 820px) {

    body {
        padding-bottom: 75px;
    }

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .site-header {
        position: sticky;
    }

    .header-inner {

        min-height: 65px;

        grid-template-columns:
            1fr
            auto;

        gap: 12px;
    }

    .brand-main {
        font-size: 19px;
    }

    .main-nav,
    .header-contact {
        display: none;
    }

    .hero {

        padding:
            36px
            0
            45px;
    }

    .hero-grid {

        grid-template-columns:
            1fr;

        gap: 28px;
    }

    .hero h1 {

        max-width: 100%;

        margin-top: 14px;

        font-size:
            clamp(
                34px,
                10vw,
                46px
            );

        line-height: 1.38;

        letter-spacing:
            -1px;
    }

    .hero h1 span {

        margin-top: 7px;

        font-size: .57em;

        line-height: 1.6;
    }

    .hero-content > p {

        font-size: 15px;

        line-height: 2;

        margin-bottom: 23px;
    }

    .hero-actions {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 8px;
    }

    .hero-actions .btn {

        width: 100%;

        min-height: 51px;

        padding:
            9px
            12px;

        font-size: 13px;
    }

    .hero-phones {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 9px;

        margin-top: 23px;
    }

    .hero-phones > div {

        min-width: 0;

        padding:
            11px
            12px;

        border:
            1px
            solid
            var(--line);

        border-radius:
            14px;

        background: #fff;
    }

    .hero-phones a {

        font-size:
            clamp(
                15px,
                4.4vw,
                18px
            );
    }

    .hero-card {

        padding:
            28px
            23px;

        border-radius:
            25px;
    }

    .hero-card h2 {
        font-size: 25px;
    }

    .section {
        padding: 65px 0;
    }

    .section-head {
        display: block;
    }

    .section-head > a {

        display: inline-block;

        margin-top: 13px;
    }

    .services {

        grid-template-columns:
            1fr
            1fr;

        gap: 11px;
    }

    .service-card {

        min-height: 200px;

        padding: 19px;

        border-radius:
            20px;
    }

    .service-card h3 {

        font-size: 17px;

        line-height: 1.6;
    }

    .product-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 11px;
    }

    .product-card {

        border-radius:
            18px;
    }

    .product-content {
        padding: 13px;
    }

    .product-content h2,
    .product-content h3 {

        font-size: 14px;
    }

    .product-price {
        font-size: 13px;
    }

    .product-actions {

        grid-template-columns:
            1fr;

        gap: 6px;
    }

    .product-actions a,
    .product-actions button {

        min-height: 39px;

        font-size: 11px;
    }

    .trust-grid {

        grid-template-columns:
            1fr;

        gap: 30px;
    }

    .trust-items {

        grid-template-columns:
            1fr
            1fr;

        gap: 9px;
    }

    .trust-items > div {

        min-height: 105px;

        padding: 15px;
    }

    .contact-box {

        min-height: unset;

        display: block;

        padding:
            30px
            23px;

        border-radius:
            25px;
    }

    .contact-numbers {

        margin-top: 22px;
    }

    .single-product {

        padding:
            30px
            0;
    }

    .single-product-grid {

        grid-template-columns:
            1fr;

        gap: 28px;
    }

    .single-product-info h1 {
        font-size: 31px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-order-bar {

        position: fixed;

        right: 0;
        left: 0;
        bottom: 0;

        z-index: 3000;

        display: grid;

        grid-template-columns:
            1.25fr
            .75fr;

        gap: 7px;

        padding:
            8px;

        border-top:
            1px
            solid
            var(--line);

        background:
            rgba(
                255,
                255,
                255,
                .97
            );

        backdrop-filter:
            blur(15px);

        box-shadow:
            0 -8px 30px
            rgba(0,0,0,.06);
    }

    .mobile-order-bar > a,
    .mobile-order-bar > button {

        min-height: 54px;

        border: 0;

        border-radius:
            14px;
    }

    .mobile-phone {

        display: flex;

        flex-direction: column;

        justify-content: center;

        padding:
            4px
            14px;

        background:
            var(--dark);

        color: #fff;
    }

    .mobile-phone span {

        font-size: 9px;

        opacity: .66;
    }

    .mobile-phone strong {

        direction: ltr;

        text-align: right;

        font-size: 17px;

        line-height: 1.25;
    }

    .mobile-order-bar button {

        background:
            var(--gold);

        color: #fff;

        font-size: 12px;
        font-weight: 900;
    }

    .mobile-actions {
        display: none !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media
(max-width: 480px) {

    .container {
        width:
            calc(100% - 22px);
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-phones a {
        font-size: 14px;
    }

    .services {

        grid-template-columns:
            1fr;
    }

    .service-card {

        min-height: unset;

        padding: 21px;
    }

    .product-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 8px;
    }

    .product-image {

        aspect-ratio:
            1 / 1.25;
    }

    .product-content {
        padding: 10px;
    }

    .product-content h3,
    .product-content h2 {

        font-size: 13px;
    }

    .trust-items {

        grid-template-columns:
            1fr
            1fr;
    }

    .single-product-actions {

        display: grid;

        grid-template-columns:
            1fr
            1fr;
    }

    .product-meta {

        grid-template-columns:
            1fr
            1fr;
    }

}


/* === HARD FONT OVERRIDE === */

html,
body,
button,
input,
textarea,
select,
option,
.site-header,
.site-footer,
.hero,
.service-card,
.product-card,
.preorder-dialog {
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif !important;
}


/* === DESKTOP WIDTH SAFETY === */

html,
body {
    width: 100% !important;
    max-width: none !important;
}

body {
    min-width: 320px;
}

.site-header,
main,
.site-footer,
.hero,
.section,
.contact-section {
    width: 100% !important;
    max-width: none !important;
}

.container {
    width: calc(100% - 48px) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* جلوگیری از جمع شدن اشتباهی صفحه دسکتاپ */

@media (min-width: 1000px) {

    .hero-grid {
        width: 100% !important;
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(360px, .85fr) !important;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-card {
        width: 100%;
        max-width: 480px;
        justify-self: end;
    }

    .services {
        grid-template-columns:
            repeat(3, minmax(0,1fr)) !important;
    }

    .product-grid {
        grid-template-columns:
            repeat(3, minmax(0,1fr)) !important;
    }
}


/* =========================================================
   SEO HOME V5
========================================================= */

.seo-hero {
    padding: 70px 0 80px;
    background:
        radial-gradient(circle at 90% 5%, rgba(167,123,52,.13), transparent 32%),
        #faf9f6;
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr);
    gap: 70px;
    align-items: center;
}

.seo-kicker {
    display: inline-flex;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.seo-hero h1 {
    margin: 18px 0;
    max-width: 780px;
    font-size: clamp(42px,5.4vw,72px);
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.seo-hero h1 span {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-size: .5em;
    line-height: 1.6;
}

.seo-hero-lead {
    max-width: 750px;
    margin: 0 0 27px;
    color: var(--muted);
    font-size: 16px;
    line-height: 2.1;
}

.seo-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.seo-primary-btn,
.seo-secondary-btn {
    min-height: 53px;
    padding: 11px 23px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.seo-primary-btn {
    background: #111;
    color: white;
}

.seo-secondary-btn {
    border: 1px solid var(--line);
    background: white;
}

.seo-phone-row {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.seo-phone-row a {
    min-width: 175px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
}

.seo-phone-row span,
.seo-phone-row strong {
    display: block;
}

.seo-phone-row span {
    color: var(--muted);
    font-size: 10px;
}

.seo-phone-row strong {
    direction: ltr;
    text-align: right;
    font-size: 18px;
}

.seo-order-card {
    padding: 36px;
    border-radius: 30px;
    background: #111;
    color: white;
    box-shadow: var(--shadow-lg);
}

.seo-order-label {
    color: #d4af69;
    font-size: 11px;
}

.seo-order-card h2 {
    margin: 13px 0 10px;
    font-size: 30px;
    line-height: 1.55;
}

.seo-order-card p {
    color: rgba(255,255,255,.65);
    font-size: 14px;
}

.seo-order-phone {
    display: block;
    margin-top: 25px;
    padding: 16px 18px;
    border-radius: 17px;
    background: white;
    color: #111;
}

.seo-order-phone small,
.seo-order-phone strong {
    display: block;
}

.seo-order-phone small {
    color: #777;
}

.seo-order-phone strong {
    direction: ltr;
    text-align: right;
    font-size: 27px;
}

.seo-whatsapp {
    min-height: 49px;
    margin-top: 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}



.home-seo-section {
    padding: 85px 0;
}

.home-seo-heading {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
}

.home-seo-heading span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.home-seo-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(30px,4vw,45px);
    line-height: 1.4;
}

.home-seo-heading > a {
    flex: none;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}



.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.home-category-card {
    min-height: 220px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    background: white;
    transition: .25s;
}

.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.home-category-card > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.home-category-card h3 {
    margin: 18px 0 7px;
    font-size: 20px;
}

.home-category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.home-category-card strong {
    margin-top: auto;
    padding-top: 20px;
    color: var(--gold);
    font-size: 11px;
}

.home-category-dark {
    background: #111;
    color: white;
    border-color: #111;
}

.home-category-dark p {
    color: rgba(255,255,255,.6);
}



.home-samples-section {
    background: #f8f7f3;
}

.home-sample-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 17px;
}

.home-sample-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: white;
}

.home-sample-image {
    display: block;
    aspect-ratio: 4 / 4.3;
    background: #eee;
    overflow: hidden;
}

.home-sample-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-sample-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: #999;
}

.home-sample-info {
    padding: 17px;
}

.home-sample-info h3 {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.65;
}

.home-sample-price {
    display: block;
    color: var(--gold-dark);
    font-size: 13px;
}

.home-sample-info > span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}



.home-seo-content {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(280px,.5fr);
    gap: 65px;
    align-items: start;
}

.home-seo-article {
    max-width: 850px;
}

.home-seo-article h2 {
    margin: 17px 0;
    font-size: clamp(30px,4vw,43px);
    line-height: 1.45;
}

.home-seo-article h3 {
    margin: 35px 0 8px;
    font-size: 23px;
}

.home-seo-article p {
    color: #555;
    line-height: 2.2;
}

.home-seo-article p a {
    color: var(--gold-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.home-seo-sidebar {
    position: sticky;
    top: 110px;
}

.home-local-card,
.home-links-card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.home-local-card {
    background: #111;
    color: white;
}

.home-local-card > span {
    color: #d5ae63;
    font-size: 11px;
}

.home-local-card h3 {
    margin: 10px 0;
    font-size: 20px;
}

.home-local-card p {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}

.home-local-card a {
    display: block;
    direction: ltr;
    margin-top: 4px;
    font-size: 19px;
    font-weight: 900;
    text-align: right;
}

.home-links-card {
    margin-top: 12px;
    background: white;
}

.home-links-card strong {
    display: block;
    margin-bottom: 12px;
}

.home-links-card a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}



.home-order-process {
    padding: 75px 0;
    background: #f8f7f3;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.order-steps > div {
    padding: 24px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--line);
}

.order-steps > div > strong {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold-soft);
    color: var(--gold-dark);
}

.order-steps h3 {
    margin: 14px 0 5px;
}

.order-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}



.faq-list {
    max-width: 900px;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
}

.faq-list summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
}

.faq-list details p {
    padding-left: 30px;
    color: var(--muted);
    font-size: 13px;
}



.home-final-cta {
    padding: 10px 0 90px;
}

.home-final-cta-box {
    padding: 45px 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    background: #111;
    color: white;
}

.home-final-cta-box span {
    color: #d6b36e;
    font-size: 11px;
}

.home-final-cta-box h2 {
    margin: 7px 0;
    font-size: clamp(29px,4vw,42px);
}

.home-final-cta-box p {
    margin: 0;
    color: rgba(255,255,255,.6);
}

.home-final-phones {
    flex: none;
    display: flex;
    flex-direction: column;
}

.home-final-phones a {
    direction: ltr;
    font-size: 25px;
    font-weight: 900;
}



.home-mobile-cta {
    display: none;
}



/* =========================================================
   SEO HOME MOBILE
========================================================= */

@media (max-width: 850px) {

    body {
        padding-bottom: 74px;
    }

    .seo-hero {
        padding: 34px 0 40px;
    }

    .seo-hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .seo-hero h1 {
        font-size: 36px;
        line-height: 1.38;
    }

    .seo-hero-lead {
        font-size: 14px;
        line-height: 2;
    }

    .seo-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .seo-phone-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .seo-phone-row a {
        min-width: 0;
        padding: 10px;
    }

    .seo-phone-row strong {
        font-size: 15px;
    }

    .seo-order-card {
        padding: 25px 21px;
        border-radius: 23px;
    }

    .seo-order-card h2 {
        font-size: 23px;
    }

    .home-seo-section {
        padding: 60px 0;
    }

    .home-seo-heading {
        display: block;
    }

    .home-seo-heading > a {
        display: inline-block;
        margin-top: 10px;
    }

    .home-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .home-category-card {
        min-height: 190px;
        padding: 17px;
        border-radius: 17px;
    }

    .home-category-card h3 {
        font-size: 16px;
    }

    .home-category-card p {
        font-size: 11px;
    }

    .home-sample-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .home-sample-card {
        border-radius: 16px;
    }

    .home-sample-info {
        padding: 11px;
    }

    .home-sample-info h3 {
        font-size: 13px;
    }

    .home-seo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-seo-sidebar {
        position: static;
    }

    .home-seo-article h2 {
        font-size: 29px;
    }

    .home-seo-article h3 {
        font-size: 20px;
    }

    .home-seo-article p {
        font-size: 14px;
        line-height: 2.1;
    }

    .order-steps {
        grid-template-columns: 1fr;
    }

    .home-final-cta-box {
        display: block;
        padding: 28px 22px;
    }

    .home-final-phones {
        margin-top: 20px;
    }

    .home-mobile-cta {
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 5000;

        display: grid;
        grid-template-columns: 1.3fr .7fr;

        padding: 8px;
        gap: 7px;

        border-top: 1px solid var(--line);

        background: rgba(255,255,255,.97);

        box-shadow:
            0 -5px 25px
            rgba(0,0,0,.07);
    }

    .home-mobile-cta a {
        min-height: 53px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gold);
        color: white;
        font-size: 12px;
        font-weight: 900;
    }

    .home-mobile-cta a:first-child {
        background: #111;
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 15px;
    }

    .home-mobile-cta small {
        opacity: .6;
        font-size: 9px;
    }

    .home-mobile-cta strong {
        direction: ltr;
        font-size: 16px;
    }
}


@media (max-width: 480px) {

    .seo-hero h1 {
        font-size: 32px;
    }

    .home-category-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   AUTO SEO INTERNAL LINKS
========================================================= */

.auto-seo-links {
    margin: 22px 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 7px;
}

.auto-seo-links strong {
    width: 100%;
    margin-bottom: 3px;

    font-size: 12px;
}

.auto-seo-links a {
    padding: 7px 11px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: white;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 800;
}


.related-samples {
    max-width: 1280px;

    margin:
        60px
        auto
        0;

    padding:
        0
        24px;
}

.related-samples h2 {
    margin-bottom: 20px;

    font-size:
        clamp(
            25px,
            3vw,
            35px
        );
}

.related-samples-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 13px;
}

.related-sample-card {
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 17px;

    background: white;
}

.related-sample-card img {
    width: 100%;
    aspect-ratio: 1/1;

    display: block;

    object-fit: cover;
}

.related-sample-card strong {
    display: block;

    padding: 12px;

    font-size: 12px;
    line-height: 1.7;
}


@media (max-width: 700px) {

    .related-samples {
        margin-top: 40px;

        padding:
            0
            12px;
    }

    .related-samples-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap: 8px;
    }

}


/* =========================================================
   AUTO SEO INTERNAL LINKS
========================================================= */

.auto-seo-links {
    margin: 22px 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 7px;
}

.auto-seo-links strong {
    width: 100%;
    margin-bottom: 3px;

    font-size: 12px;
}

.auto-seo-links a {
    padding: 7px 11px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: white;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 800;
}


.related-samples {
    max-width: 1280px;

    margin:
        60px
        auto
        0;

    padding:
        0
        24px;
}

.related-samples h2 {
    margin-bottom: 20px;

    font-size:
        clamp(
            25px,
            3vw,
            35px
        );
}

.related-samples-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 13px;
}

.related-sample-card {
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 17px;

    background: white;
}

.related-sample-card img {
    width: 100%;
    aspect-ratio: 1/1;

    display: block;

    object-fit: cover;
}

.related-sample-card strong {
    display: block;

    padding: 12px;

    font-size: 12px;
    line-height: 1.7;
}


@media (max-width: 700px) {

    .related-samples {
        margin-top: 40px;

        padding:
            0
            12px;
    }

    .related-samples-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap: 8px;
    }

}
