/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: "IranYekan";
    src: url("../fonts/iranyekan/IRANYekanWebRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IranYekan";
    src: url("../fonts/iranyekan/IRANYekanWebBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IranYekan";
    src: url("../fonts/iranyekan/IRANYekanWebExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

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

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


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

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

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    font-family: "IranYekan", "Vazir", Tahoma, Arial, sans-serif !important;

    background: #fffaf2;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

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

a {
    -webkit-tap-highlight-color: transparent;
}

section,
footer {
    width: 100%;
    max-width: 100%;
}

.shop-hero,
.products-section,
.about-section,
.advantages-section,
.contact-cta-section,
.faq-section,
.shop-footer {
    direction: rtl;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --shop-red: #8f1117;
    --shop-red-dark: #57080c;
    --shop-red-deep: #350407;

    --shop-gold: #d6a84f;
    --shop-gold-light: #f1d58a;
    --shop-gold-dark: #a97920;

    --shop-bg: #fffaf2;
    --shop-dark: #190b0b;
    --shop-text: #3b2927;

    --shop-white: #ffffff;

    --shop-radius: 24px;

    --shop-shadow:
        0 20px 60px rgba(45, 8, 8, .12);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-overline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 14px;

    color: var(--shop-gold-dark);

    font-size: 14px;
    line-height: 1.6;
    font-weight: 800;
}

.section-overline i {
    color: var(--shop-gold);
}

.section-heading h2 {
    margin: 0;

    color: var(--shop-red-dark);

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.35;
    font-weight: 800;
}

.section-heading h2 span {
    color: var(--shop-gold-dark);
}

.section-heading p {
    margin: 18px auto 0;

    color: #765f5b;

    font-size: 16px;
    line-height: 2;
}


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

.glass-btn {
    position: relative;

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

    gap: 10px;

    min-height: 54px;

    padding: 0 25px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;

    color: #fff;

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

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 10px 30px rgba(0,0,0,.12);

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.glass-btn:hover {
    color: #fff;

    transform: translateY(-4px);

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

    border-color: rgba(214,168,79,.8);

    box-shadow:
        0 15px 40px rgba(0,0,0,.2),
        0 0 25px rgba(214,168,79,.18);
}

.glass-btn-primary {
    border-color: rgba(214,168,79,.7);

    background:
        linear-gradient(
            135deg,
            rgba(143,17,23,.95),
            rgba(91,7,12,.9)
        );
}


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

.shop-hero {
    position: relative;

    min-height: 760px;

    padding: 120px 0 250px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(214,168,79,.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(143,17,23,.55),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #300507,
            #710b11 50%,
            #300507
        );
}

.shop-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .06;

    background-image:
        radial-gradient(#fff 1px, transparent 1px);

    background-size: 25px 25px;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(30,2,3,.85),
            rgba(75,5,8,.45),
            rgba(30,2,3,.8)
        );
}

.shop-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    max-width: 100%;

    padding: 9px 17px;

    color: var(--shop-gold-light);

    border: 1px solid rgba(214,168,79,.4);
    border-radius: 999px;

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

    backdrop-filter: blur(10px);

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

.hero-badge i {
    color: var(--shop-gold);
}

.shop-hero h1 {
    margin: 28px 0 20px;

    color: #fff;

    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -2px;
}

.shop-hero h1 span {
    display: block;

    margin-top: 5px;

    color: var(--shop-gold-light);

    text-shadow:
        0 0 35px rgba(214,168,79,.2);
}

.shop-hero-content > p {
    max-width: 590px;

    margin: 0 auto 32px;

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

    font-size: 17px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}


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

.hero-gallery-wrap {
    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;
    bottom: 30px;

    width: 100%;

    overflow: hidden;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 8%,
            #000 92%,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 8%,
            #000 92%,
            transparent
        );
}

.hero-gallery {
    display: flex;

    width: max-content;

    gap: 18px;

    animation: heroGalleryMove 28s linear infinite;

    will-change: transform;
}

.hero-gallery:hover {
    animation-play-state: paused;
}

.hero-gallery-item {
    width: 230px;
    height: 135px;

    flex: 0 0 auto;

    overflow: hidden;

    border-radius: 20px;

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

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);
}

.hero-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.hero-gallery-item:hover img {
    transform: scale(1.08);
}

@keyframes heroGalleryMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-scroll {
    position: absolute;

    z-index: 4;

    right: 28px;
    bottom: 185px;

    display: flex;
    align-items: center;

    gap: 9px;

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

    font-size: 12px;

    writing-mode: vertical-rl;
}

.hero-scroll i {
    animation: scrollArrow 1.5s infinite ease-in-out;
}

@keyframes scrollArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #fffaf2,
            #fff
        );
}

.products-grid {
    display: grid;

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

    gap: 28px;
}

.product-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid rgba(143,17,23,.08);

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

    background: #fff;

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

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.product-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(62,10,10,.18);
}

.product-image {
    position: relative;

    width: 100%;
    height: 270px;

    overflow: hidden;
}

.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-image-overlay {
    position: absolute;
    inset: 0;

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

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

    font-size: 55px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(40,3,4,.55)
        );

    opacity: 0;

    transition: opacity .4s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    padding: 7px 14px;

    color: var(--shop-red-dark);

    border-radius: 999px;

    background: var(--shop-gold-light);

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

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.product-content {
    padding: 28px;
}

.product-category {
    color: var(--shop-gold-dark);

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

.product-content h3 {
    margin: 8px 0 10px;

    color: var(--shop-red-dark);

    font-size: 25px;
    line-height: 1.5;
    font-weight: 800;
}

.product-content p {
    min-height: 55px;

    margin: 0 0 22px;

    color: #806c68;

    line-height: 1.9;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    min-height: 48px;

    padding: 10px 15px;

    color: var(--shop-red);

    border: 1px solid rgba(143,17,23,.12);
    border-radius: 14px;

    background: #fffaf2;

    text-decoration: none;

    font-weight: 800;

    transition: .3s ease;
}

.product-btn:hover {
    color: #fff;

    background: var(--shop-red);

    border-color: var(--shop-red);
}

.product-btn i {
    flex-shrink: 0;

    transition: transform .3s ease;
}

.product-btn:hover i {
    transform: translateX(-5px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 110px 0;

    background: #fff;
}

.about-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.about-images {
    position: relative;

    width: 100%;
    min-height: 540px;
}

.about-image-main {
    position: absolute;

    inset: 0 50px 50px 0;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 30px 70px rgba(55,8,8,.2);
}

.about-image-main img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.about-image-main:hover img {
    transform: scale(1.04);
}

.about-gold-card {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 220px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--shop-red),
            var(--shop-red-dark)
        );

    box-shadow:
        0 20px 50px rgba(50,5,5,.3);
}

.about-gold-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--shop-gold-light);

    font-size: 24px;
}

.about-gold-card span {
    color: rgba(255,255,255,.7);

    font-size: 12px;
}

.about-decoration {
    position: absolute;

    z-index: 0;

    top: -20px;
    right: 20px;

    width: 180px;
    height: 180px;

    border: 2px solid var(--shop-gold);

    border-radius: 50%;

    pointer-events: none;
}

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

.about-content h2 {
    margin: 0 0 20px;

    color: var(--shop-red-dark);

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.3;
    font-weight: 800;
}

.about-content h2 span {
    color: var(--shop-gold-dark);
}

.about-lead {
    color: var(--shop-red);

    font-size: 20px;
    line-height: 1.9;
    font-weight: 800;
}

.about-content > p {
    color: #715c58;

    line-height: 2.2;
}

.about-features {
    display: grid;

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

    gap: 18px;

    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;

    min-width: 0;

    gap: 14px;

    padding: 15px;

    border: 1px solid rgba(143,17,23,.08);
    border-radius: 15px;

    background: #fff;

    transition: .3s ease;
}

.about-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(214,168,79,.45);

    box-shadow:
        0 15px 35px rgba(50,8,8,.08);
}

.feature-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

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

    color: var(--shop-gold-dark);

    border-radius: 12px;

    background: #fff7e5;
}

.about-feature > div:last-child {
    min-width: 0;
}

.about-feature strong,
.about-feature span {
    display: block;
}

.about-feature strong {
    color: var(--shop-red-dark);

    font-size: 14px;
    line-height: 1.6;
}

.about-feature span {
    margin-top: 4px;

    color: #907b77;

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


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(214,168,79,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #3a0508,
            #730b11,
            #3a0508
        );
}

.advantages-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .05;

    pointer-events: none;

    background-image:
        radial-gradient(#fff 1px, transparent 1px);

    background-size: 22px 22px;
}

.section-heading.light {
    position: relative;
    z-index: 2;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light p {
    color: rgba(255,255,255,.7);
}

.advantages-grid {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 20px;
}

.advantage-card {
    position: relative;

    min-width: 0;

    padding: 35px 25px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;

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

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);

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

    border-color: rgba(214,168,79,.5);
}

.advantage-number {
    position: absolute;

    top: 12px;
    left: 15px;

    color: rgba(214,168,79,.18);

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

.advantage-icon {
    width: 65px;
    height: 65px;

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

    margin-bottom: 25px;

    color: var(--shop-gold-light);

    border: 1px solid rgba(214,168,79,.3);
    border-radius: 18px;

    background: rgba(214,168,79,.08);

    font-size: 25px;
}

.advantage-card h3 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 20px;
    line-height: 1.6;
}

.advantage-card p {
    margin: 0;

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

    line-height: 2;

    font-size: 13px;
}


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

.contact-cta-section {
    padding: 110px 0;

    background: #fffaf2;
}

.contact-cta {
    position: relative;

    min-width: 0;

    overflow: hidden;

    padding: 70px;

    border: 1px solid rgba(214,168,79,.3);
    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #8f1117,
            #4b060a
        );

    box-shadow:
        0 30px 80px rgba(69,7,9,.2);
}

.contact-cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.contact-cta .section-overline {
    color: var(--shop-gold-light);
}

.contact-cta h2 {
    margin: 0 0 20px;

    color: #fff;

    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.4;
}

.contact-cta h2 span {
    color: var(--shop-gold-light);
}

.contact-cta p {
    color: rgba(255,255,255,.72);

    line-height: 2;
}

.contact-phone {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    max-width: 100%;

    margin: 25px 0;

    padding: 15px 22px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;

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

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-phone > i {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

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

    color: var(--shop-red-dark);

    border-radius: 50%;

    background: var(--shop-gold);
}

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

.contact-phone span {
    color: rgba(255,255,255,.55);

    font-size: 11px;
}

.contact-phone strong {
    margin-top: 4px;

    color: #fff;

    direction: ltr;

    font-size: 20px;
}

.contact-cta .hero-actions {
    justify-content: flex-start;
}

.contact-cta-icon {
    position: absolute;

    left: 70px;
    top: 50%;

    transform: translateY(-50%);

    width: 300px;
    height: 300px;

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

    color: rgba(214,168,79,.12);

    border: 1px solid rgba(214,168,79,.15);
    border-radius: 50%;

    font-size: 130px;

    pointer-events: none;
}

.contact-cta-decoration {
    position: absolute;

    right: -120px;
    bottom: -150px;

    width: 400px;
    height: 400px;

    border: 1px solid rgba(214,168,79,.2);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 110px 0;

    background: #fff;
}

.faq-list {
    width: 100%;
    max-width: 850px;

    margin-inline: auto;
}

.faq-item {
    margin-bottom: 15px;

    overflow: hidden;

    border: 1px solid rgba(143,17,23,.1);
    border-radius: 18px;

    background: #fffaf2;

    transition: .3s ease;
}

.faq-item:hover {
    border-color: rgba(214,168,79,.5);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 21px 24px;

    cursor: pointer;

    list-style: none;

    color: var(--shop-red-dark);

    font-weight: 800;

    line-height: 1.8;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex: 0 0 auto;

    color: var(--shop-gold-dark);

    transition: transform .3s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px;

    color: #765f5b;

    line-height: 2;
}

.faq-answer p {
    margin: 0;
}


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

.shop-footer {
    padding: 80px 0 0;

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

    background:
        linear-gradient(
            135deg,
            #250305,
            #430609
        );
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.1fr 1.2fr .7fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

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

    color: var(--shop-red-dark);

    border-radius: 16px;

    background: var(--shop-gold);

    font-size: 23px;
}

.footer-logo strong,
.footer-logo span {
    display: block;
}

.footer-logo strong {
    color: #fff;

    font-size: 18px;
}

.footer-logo span {
    margin-top: 4px;

    color: var(--shop-gold);

    font-size: 11px;
}

.footer-brand > p {
    max-width: 380px;

    line-height: 2;
}

.footer-phone {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--shop-gold-light);

    text-decoration: none;

    direction: ltr;

    font-weight: 800;
}

.footer-contact h3,
.footer-enamad h3 {
    margin: 0 0 25px;

    color: #fff;

    font-size: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;
}

.footer-contact-item i {
    flex: 0 0 auto;

    margin-top: 4px;

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

.footer-contact-item p {
    margin: 0;

    line-height: 2;
}

.footer-contact-item a {
    color: var(--shop-gold-light);

    text-decoration: none;

    direction: ltr;
}

.enamad-box {
    width: 150px;
    min-height: 150px;

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

    padding: 12px;

    border: 1px solid rgba(214,168,79,.35);
    border-radius: 18px;

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

    backdrop-filter: blur(10px);
}

.enamad-box img {
    display: block;

    max-width: 120px;
    max-height: 120px;

    object-fit: contain;
}

.footer-enamad small {
    display: block;

    margin-top: 12px;

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

    font-size: 11px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

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

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

    font-size: 11px;
}


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

@media (max-width: 1000px) {

    .container {
        width: min(100% - 36px, 1180px);
    }

    /* HERO */

    .shop-hero {
        min-height: 700px;

        padding: 110px 0 220px;
    }

    .shop-hero-content {
        max-width: 650px;
    }

    .hero-scroll {
        display: none;
    }

    /* PRODUCTS */

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

    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-images {
        width: 100%;
        max-width: 650px;

        margin-inline: auto;
    }

    .about-content {
        max-width: 850px;

        margin-inline: auto;
    }

    /* ADVANTAGES */

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

    /* CONTACT */

    .contact-cta {
        padding: 55px;
    }

    .contact-cta-icon {
        width: 240px;
        height: 240px;

        left: 30px;

        font-size: 100px;
    }

    /* FOOTER */

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

    .footer-enamad {
        grid-column: span 2;
    }
}


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

@media (max-width: 700px) {

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 28px);
        max-width: none;
    }

    /* -----------------------------------------
       GENERAL
    ----------------------------------------- */

    .section-heading {
        margin-bottom: 42px;
    }

    .section-overline {
        margin-bottom: 10px;

        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 32px;
        line-height: 1.45;
    }

    .section-heading p {
        margin-top: 14px;

        font-size: 14px;

        line-height: 2;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .shop-hero {
        min-height: 680px;

        padding:
            90px 0
            190px;

        display: block;
    }

    .shop-hero-content {
        width: 100%;
        max-width: 100%;

        padding-top: 15px;
    }

    .hero-badge {
        max-width: 90%;

        padding: 8px 14px;

        font-size: 11px;
    }

    .shop-hero h1 {
        margin: 22px 0 18px;

        font-size: clamp(39px, 12vw, 52px);

        line-height: 1.18;

        letter-spacing: -1px;
    }

    .shop-hero h1 span {
        margin-top: 2px;
    }

    .shop-hero-content > p {
        width: 100%;
        max-width: 430px;

        margin-bottom: 25px;

        font-size: 13px;

        line-height: 2;
    }

    .hero-actions {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .glass-btn {
        width: 100%;

        min-height: 52px;

        padding-inline: 18px;

        font-size: 13px;
    }

    /* gallery */

    .hero-gallery-wrap {
        bottom: 20px;

        mask-image:
            linear-gradient(
                90deg,
                transparent,
                #000 5%,
                #000 95%,
                transparent
            );

        -webkit-mask-image:
            linear-gradient(
                90deg,
                transparent,
                #000 5%,
                #000 95%,
                transparent
            );
    }

    .hero-gallery {
        gap: 10px;

        animation-duration: 25s;
    }

    .hero-gallery-item {
        width: 155px;
        height: 95px;

        border-radius: 14px;
    }

    .hero-scroll {
        display: none;
    }


    /* -----------------------------------------
       SECTIONS
    ----------------------------------------- */

    .products-section,
    .about-section,
    .advantages-section,
    .contact-cta-section,
    .faq-section {
        padding: 75px 0;
    }


    /* -----------------------------------------
       PRODUCTS
    ----------------------------------------- */

    .products-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-image {
        height: 220px;
    }

    .product-badge {
        top: 13px;
        right: 13px;

        padding: 6px 11px;

        font-size: 11px;
    }

    .product-image-overlay {
        display: none;
    }

    .product-content {
        padding: 21px 18px;
    }

    .product-content h3 {
        margin-top: 6px;

        font-size: 21px;
    }

    .product-content p {
        min-height: 0;

        margin-bottom: 18px;

        font-size: 13px;

        line-height: 1.9;
    }

    .product-btn {
        min-height: 46px;

        padding: 9px 13px;

        font-size: 12px;
    }


    /* -----------------------------------------
       ABOUT
    ----------------------------------------- */

    .about-grid {
        gap: 55px;
    }

    .about-images {
        min-height: 350px;

        max-width: 100%;
    }

    .about-image-main {
        inset:
            0
            15px
            42px
            0;

        border-radius: 22px;
    }

    .about-gold-card {
        left: 0;
        bottom: 0;

        width: 175px;

        padding: 16px;

        border-radius: 16px;
    }

    .about-gold-card strong {
        font-size: 19px;
    }

    .about-gold-card span {
        font-size: 10px;
    }

    .about-decoration {
        top: -12px;
        right: 5px;

        width: 100px;
        height: 100px;

        border-width: 1px;
    }

    .about-content h2 {
        margin-bottom: 15px;

        font-size: 34px;
    }

    .about-lead {
        font-size: 16px;
    }

    .about-content > p {
        font-size: 13px;

        line-height: 2;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 25px;
    }

    .about-feature {
        padding: 13px;

        gap: 11px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .about-feature strong {
        font-size: 13px;
    }

    .about-feature span {
        font-size: 10px;
    }


    /* -----------------------------------------
       ADVANTAGES
    ----------------------------------------- */

    .advantages-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .advantage-card {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .advantage-number {
        top: 8px;
        left: 12px;

        font-size: 36px;
    }

    .advantage-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 18px;

        border-radius: 15px;

        font-size: 21px;
    }

    .advantage-card h3 {
        margin-bottom: 8px;

        font-size: 18px;
    }

    .advantage-card p {
        font-size: 12px;

        line-height: 1.9;
    }


    /* -----------------------------------------
       CONTACT
    ----------------------------------------- */

    .contact-cta {
        padding: 35px 20px;

        border-radius: 24px;
    }

    .contact-cta-content {
        width: 100%;
        max-width: 100%;
    }

    .contact-cta h2 {
        font-size: 29px;

        line-height: 1.55;
    }

    .contact-cta p {
        font-size: 13px;

        line-height: 2;
    }

    .contact-phone {
        width: 100%;

        margin: 20px 0;

        padding: 12px 14px;

        gap: 11px;

        border-radius: 15px;
    }

    .contact-phone > i {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 13px;
    }

    .contact-phone span {
        font-size: 10px;
    }

    .contact-phone strong {
        font-size: 17px;
    }

    .contact-cta .hero-actions {
        width: 100%;

        justify-content: center;
    }

    .contact-cta-icon,
    .contact-cta-decoration {
        display: none;
    }


    /* -----------------------------------------
       FAQ
    ----------------------------------------- */

    .faq-list {
        width: 100%;
    }

    .faq-item {
        margin-bottom: 10px;

        border-radius: 14px;
    }

    .faq-item summary {
        min-height: 58px;

        padding: 15px;

        gap: 10px;

        font-size: 12px;

        line-height: 1.8;
    }

    .faq-item summary i {
        font-size: 12px;
    }

    .faq-answer {
        padding:
            0
            15px
            17px;

        font-size: 12px;

        line-height: 2;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .shop-footer {
        padding-top: 60px;
    }

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

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-enamad {
        grid-column: auto;
    }

    .footer-logo-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;

        font-size: 20px;
    }

    .footer-logo strong {
        font-size: 15px;
    }

    .footer-logo span {
        font-size: 10px;
    }

    .footer-brand > p {
        font-size: 12px;

        line-height: 2;
    }

    .footer-contact h3,
    .footer-enamad h3 {
        margin-bottom: 18px;

        font-size: 16px;
    }

    .footer-contact-item {
        gap: 10px;

        margin-bottom: 15px;

        font-size: 12px;
    }

    .footer-contact-item p {
        line-height: 2;
    }

    .enamad-box {
        width: 135px;
        min-height: 135px;
    }

    .enamad-box img {
        max-width: 105px;
        max-height: 105px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        padding: 20px 0;

        text-align: center;

        line-height: 1.8;
    }
}


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

@media (max-width: 420px) {

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

    .section-heading h2 {
        font-size: 29px;
    }

    .shop-hero {
        min-height: 650px;

        padding-top: 80px;
        padding-bottom: 175px;
    }

    .shop-hero h1 {
        font-size: 40px;

        line-height: 1.2;
    }

    .shop-hero-content > p {
        font-size: 12px;
    }

    .hero-gallery-item {
        width: 140px;
        height: 88px;
    }

    .product-image {
        height: 205px;
    }

    .about-images {
        min-height: 310px;
    }

    .about-gold-card {
        width: 155px;

        padding: 14px;
    }

    .about-gold-card strong {
        font-size: 17px;
    }

    .about-gold-card span {
        font-size: 9px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .contact-cta {
        padding: 30px 17px;
    }

    .contact-cta h2 {
        font-size: 26px;
    }

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


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 350px) {

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

    .shop-hero h1 {
        font-size: 35px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .glass-btn {
        min-height: 48px;

        font-size: 12px;
    }

    .product-content {
        padding: 18px 15px;
    }

    .about-images {
        min-height: 285px;
    }

    .about-gold-card {
        width: 140px;
    }

    .contact-cta h2 {
        font-size: 23px;
    }
}


/* =========================================================
   TOUCH DEVICES
   جلوگیری از رفتارهای hover روی موبایل
========================================================= */

@media (hover: none) {

    .glass-btn:hover,
    .product-card:hover,
    .about-feature:hover,
    .advantage-card:hover {
        transform: none;
    }

    .product-image-overlay {
        opacity: 0;
    }

    .hero-gallery:hover {
        animation-play-state: running;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
