@charset "UTF-8";

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_UltraLight_FaNum.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_Light_FaNum.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_FaNum.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_Medium_FaNum.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_Bold_FaNum.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Iran1";
    src: url("/styles/webfonts/IRANSansWeb_Black_FaNum.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.header-background {
    z-index: 10000;
    position: relative;
    background-image: url(../../images/sec-5.png);
    background-repeat: no-repeat;
    background-clip: border-box;
    background-size: cover;
}

    .header-background::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
        z-index: -1;
    }

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

* {
    margin: 0;
    padding: 0;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    margin: 0;
    padding: 0;
    direction: rtl;
    display: block;
    line-height: 1.6;
    text-align: right;
    min-height: 100vh;
    overflow-x: hidden;
    color: #232c39;
    font-family: "Iran1", "Vazirmatn", sans-serif;
    background-color: #f9f9f9;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-wrap: balance;
    line-height: 1.1;
}

p,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul[role=list],
    ol[role=list] {
        list-style: none;
    }

li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

    a:not([class]) {
        color: currentColor;
    }

img,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

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

input {
    font-family: "Iran1", "Vazirmatn", sans-serif !important;
}

button,
input,
label {
    line-height: 1.1;
}

textarea:not([rows]) {
    min-height: 10em;
}

::-webkit-scrollbar {
    width: 6px;
    height: 5000px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
    background: radial-gradient(circle, #066899 0%, rgba(0, 0, 0, 0) 100%);
}

    ::-webkit-scrollbar-thumb:hover {
        background: radial-gradient(circle, #ecc3ba 0%, rgba(0, 0, 0, 0.493) 100%);
    }

:target {
    scroll-margin-block: 5ex;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background: #088bcc;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #077ab2;
    }

.btn-secondary {
    background: #e5e7eb;
    color: #077ab2;
}

    .btn-secondary:hover {
        background: #d1d5db;
    }

.btn-outline {
    background: transparent;
    background: #2f4f4f;
    color: #fefefe;
}

    .btn-outline:hover {
        background: #fefefe;
        color: #2f4f4f;
        border: 2px solid #2f4f4f;
    }

.btn-light {
    background: rgba(249, 250, 251, 0.95);
    color: #066899;
}

    .btn-light:hover {
        background: #ffffff;
    }

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1.9px solid rgba(249, 250, 251, 0.95);
}

    .btn-outline-light:hover {
        background: rgba(249, 250, 251, 0.1);
    }

.btn-link {
    background: transparent;
    color: #088bcc;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 4px;
    min-height: auto;
    flex-direction: row-reverse;
    justify-content: center;
    width: 100%;
}

    .btn-link:hover {
        opacity: 0.8;
    }

.btn-newsletter {
    background: rgba(7, 122, 178, 0.32);
    color: #066899;
    font-weight: 600;
    font-size: 18px;
    padding: 4px 12px;
    min-height: 35px;
}

    .btn-newsletter:hover {
        background: rgba(7, 122, 178, 0.24);
    }

.btn__icon {
    width: auto;
    height: auto;
}

.demo-btn {
    background: #4b5563;
    color: #f3f4f6;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .demo-btn:hover {
        background: #374151;
    }

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

    .section-header h2 {
        font-size: 24px;
        line-height: 36px;
        letter-spacing: -0.24px;
        color: #232c39;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 16px;
        line-height: 28.8px;
        color: #6b7280;
    }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

@media (max-width: 918px) {
    .hamburger {
        display: flex;
    }
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger--active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 16px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1005;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
}

.mobile-nav--active {
    right: 0;
}

.mobile-nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
    color: #232c39;
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

    .mobile-nav a:hover {
        color: #088bcc;
    }

.mobile-nav hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 8px 0;
}

.mobile-nav .demo-btn--mobile {
    margin-top: auto;
    width: 100%;
}

.header__top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
    border-bottom: 1px solid #9ca3af;
    background-color: white;
}

.header__scrolled {
    top: 20px;
    transition: all 0.3s ease-in-out;
}

    .header__scrolled .header__top {
        max-height: 0;
        opacity: 0;
        padding: 0;
        border-bottom: none;
    }

    .header__scrolled .header__main-content {
        padding: 12px 50px;
        background-color: rgba(106, 162, 255, 0.24);
        backdrop-filter: blur(6px);
        border-radius: 20px;
        flex-direction: row-reverse;
    }

@media (max-width: 768px) {
    .header__scrolled .header__main-content {
        padding: 12px 0;
    }
}

.header__scrolled .header__nav a {
    color: #374151;
}

.header__top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 12px 0;
    height: 49px;
}

.header__contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2f4f4f;
    font-size: 16px;
}

.header__phone-icon {
    width: 20px;
    height: 20px;
}

.header__top-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

    .header__top-nav a {
        color: #6b7280;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        color: #232c39;
        font-weight: 500;
        font-size: 16px;
        line-height: 180%;
        letter-spacing: 0%;
        text-align: right;
        vertical-align: middle;
    }

        .header__top-nav a:hover {
            color: #088bcc;
        }

    .header__top-nav span {
        color: #d1d5db;
    }

.header__main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 16px 0;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 56px;
}

    .header__nav a {
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
    }

        .header__nav a:hover {
            color: #088bcc;
        }

.header__logo img {
    width: 100px;
    height: 56px;
}

.header .mobile-nav--active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 280px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer {
    background: #f3f4f6;
    border-top: 2px solid #d1d5db;
    padding: 48px 80px 16px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
}

@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .footer__section h3 {
        font-size: 18px;
        line-height: 23.4px;
        color: #232c39;
        font-weight: 600;
        text-align: right;
        margin-bottom: 8px;
    }

@media (max-width: 768px) {
    .footer__section h3 {
        text-align: center;
        font-size: 14px;
    }
}

.footer__section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__section li {
    text-align: right;
}

.footer__section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .footer__section a:hover {
        color: #088bcc;
    }

.footer__section p {
    font-size: 14px;
    line-height: 25.2px;
    color: #6b7280;
    text-align: right;
}

.footer__center {
    display: flex;
    gap: 60px;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer__center {
        gap: 28px;
        justify-content: space-between;
    }
}

.footer__about p {
    text-align: justify;
    margin-bottom: 12px;
}

.footer__video-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer__video-links {
        justify-content: space-between;
    }
}

.footer__video-link {
    color: #077ab2 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.footer__social-links {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

    .footer__social-links a {
        width: 40px;
        height: 40px;
        display: block;
        transition: all 0.3s ease;
    }

        .footer__social-links a:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

    .footer__social-links img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

@media (max-width: 768px) {
    .footer__social-links {
        justify-content: space-between;
    }
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

    .footer__newsletter p {
        font-weight: 500;
        color: #6b7280;
        font-size: 13px;
    }

.footer__newsletter-form {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
}

    .footer__newsletter-form input {
        border: none;
        background: transparent;
        color: #4b5563;
        font-weight: 500;
        font-size: 14px;
        outline: none;
        flex: 1;
        text-align: right;
        padding: 0 8px;
    }

        .footer__newsletter-form input::-moz-placeholder {
            color: #9ca3af;
        }

        .footer__newsletter-form input::placeholder {
            color: #9ca3af;
        }

@media (max-width: 480px) {
    .footer__newsletter-form {
        height: auto;
        padding: 8px;
    }
}

.footer .btn--newsletter {
    background: rgba(7, 122, 178, 0.3);
    color: #066899;
    border: none;
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    height: 35px;
    min-height: auto;
}

    .footer .btn--newsletter:hover {
        background: #05577f;
        color: #ffffff;
    }

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    .footer__brand {
        margin-bottom: 0;
    }
}

.footer__logo {
    width: 172px;
    height: auto;
}

.footer__tagline {
    font-size: 18px;
    line-height: 23.4px;
    color: #066899;
    font-weight: 600;
}

.footer__bottom {
    padding-top: 16px;
    text-align: center;
}

    .footer__bottom p {
        font-size: 14px;
        font-weight: 500;
        color: #6b7280;
        line-height: 25.2px;
    }

@media (max-width: 768px) {
    .footer {
        padding-inline: 0px;
    }
}

@media (max-width: 1270px) {
    .header__main-content {
        gap: 80px;
    }

    .header__nav {
        gap: 30px;
    }
}

@media (max-width: 960px) {
    .header__scrolled .header__main-content {
        padding: 12px;
    }

    .header__main-content {
        gap: 20px;
    }

    .header__nav {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .header__main-content {
        gap: 20px;
    }

    .header__nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.bag,
.login {
    display: flex;
    align-items: center;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    gap: 12px;
    opacity: 1;
    border-radius: 12px;
    border-width: 1px;
    border: 1px solid #2f4f4f;
}

.header {
    display: flex;
    border-bottom: 1px solid #d1d5db;
    background: #f7f9f7;
    flex-direction: column;
    opacity: 1;
    border-bottom-width: 1px;
}

.pro-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__top-nav span {
    color: #232c39;
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.header-search {
    width: 100%;
    max-width: 683px;
}

.search-btn {
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-radius: 12px;
    background: #c9a052;
    border: none;
}

    .search-btn span {
        font-weight: semibold;
        font-size: 14px;
        color: #fefefe;
    }

.search-box input {
    display: flex;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    gap: 8px;
    opacity: 1;
    border-radius: 12px;
    border-width: 1px;
    background: #fcfcfc;
}

@media (max-width: 400px) {
    .search-box input {
        padding: 8px;
    }
}

.search-box {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    gap: 12px;
    align-items: center;
}

.num-icon {
    background: rgba(91, 137, 137, 0.2392156863);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 8px;
}

.num-content {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

.what-text {
    color: #5b8989;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.what-num {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    color: #2f4f4f;
}

.header__actions {
    display: flex;
    gap: 12px;
    flex-direction: row-reverse;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 8px;
    gap: 8px;
}

.search-box__icon {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

.search-box__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    color: #232c39;
}

    .search-box__input::-moz-placeholder {
        color: #9ca3af;
    }

    .search-box__input::placeholder {
        color: #9ca3af;
    }

.search-btn {
    border: none;
    background: #c9a052;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.2s;
}

    .search-btn:hover {
        background: #b58e44;
    }

.ti-logo {
    width: 128px;
}

@media (max-width: 918px) {
    .what-text {
        display: none;
    }

    .header-search {
        display: flex;
        width: auto;
        max-width: auto;
    }

    .desktop-only {
        display: none;
    }

    .header__top-nav .desktop-only {
        display: none;
    }

    .bag,
    .login {
        padding: 8px !important;
    }

    .ti-logo {
        width: 98px;
    }
}

@media (max-width: 528px) {
    .search-btn {
        display: none;
    }

    .num-icon {
        background: unset;
        display: unset;
        border-radius: unset;
        padding: unset;
    }

    .header-phone {
        gap: 8px;
    }

    .what-num {
        font-size: 12px;
    }

    .search-box__icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 373px) {
    .search-box input {
        padding: 0;
    }
}
/* ============================================ */
/* FOOTER STYLES */
/* ============================================ */
.site-footer {
    background: #f0f2f2;
    padding: 40px 20px 20px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    margin-top: 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d1d9d6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .footer-brand .footer-logo-img {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .footer-brand p {
        margin: 5px 0 0;
        color: #ac8740;
        font-weight: 500;
        font-size: 16px;
        line-height: 180%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

@media (max-width: 768px) {
    .footer-brand p {
        font-size: 14px;
    }
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d1d9d6;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

.footer-column {
    flex: 1;
}

    .footer-column.about {
        flex: 1.8;
    }

@media (max-width: 768px) {
    .footer-column.about {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.footer-column-title {
    margin: 0 0 20px;
    color: #446c6c;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .footer-column-title {
        font-size: 16px;
        text-align: center;
    }
}

.footer-column.about > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-column.about > p {
        text-align: center;
        font-size: 14px;
    }
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .support-item:hover {
        color: #ac8740;
    }

    .support-item img {
        width: 20px;
        height: 20px;
        -o-object-fit: contain;
        object-fit: contain;
        opacity: 0.7;
    }

    .support-item span {
        font-weight: 400;
    }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #ac8740;
    }

    .social-icon img {
        height: 50px;
        width: 50px;
        -o-object-fit: cover;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .social-icon img {
        width: 40px;
        height: 40px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.trust-boxes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-box {
    width: 70px;
    height: 70px;
    background: #d9dedb;
    border-radius: 8px;
    border: 1px solid #c5cdc9;
    transition: all 0.3s ease;
}

    .trust-box:hover {
        border-color: #ac8740;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

.copyright {
    margin: 0;
    color: #6b7280;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .copyright {
        font-size: 11px;
        padding: 0 10px;
    }
}

.desin-line {
    display: flex;
    justify-content: center;
}

.gift-bo {
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
}

.banner-part {
    margin: 100px auto;
}

@media (max-width: 768px) {
    .banner-part {
        margin: 48px auto;
    }
}

@media (max-width: 992px) {
    .footer-columns {
        gap: 30px;
    }

    .footer-column-title {
        font-size: 18px;
    }

    .footer-column.about > p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 15px 15px;
    }

    .footer-brand {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .footer-brand .footer-logo-img {
            max-width: 140px;
        }

    .footer-columns {
        gap: 25px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .support-item {
        font-size: 13px;
    }

        .support-item img {
            width: 18px;
            height: 18px;
        }

    .trust-box {
        width: 55px;
        height: 55px;
    }

    .copyright {
        font-size: 10px;
    }
}
/* منوی موبایل - مخفی در دسکتاپ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav a {
        color: #232c39;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav .pro-header {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-nav .header__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .mobile-nav .login,
    .mobile-nav .bag {
        padding: 12px 16px;
        border: 1px solid #2f4f4f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
    /* مخفی کردن منوی دسکتاپ در موبایل */
    .header__top-nav.desktop-only {
        display: none !important;
    }
}

.header__main {
    margin-top: 92px;
}

.faq {
    padding: 0 0 70px 0;
}

.faq__container {
    max-width: 1060px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 4px 16px;
}

.faq__item {
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 8px;
}

    .faq__item:last-child {
        border-bottom: none;
    }

.faq__item--active .faq__arrow {
    transform: rotate(180deg);
}

.faq__item--active .faq__answer {
    display: block;
}

.faq__answer {
    background: #f3f4f6;
    border-radius: 0 0 8px 8px;
    padding: 8px;
    display: none;
    transition: all 0.3s ease;
}

    .faq__answer p {
        font-size: 14px;
        line-height: 25.2px;
        color: #4b5563;
        text-align: right;
    }

.faq__arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 8px;
    cursor: pointer;
    gap: 12px;
    flex-direction: row-reverse;
}

.faq__question-text {
    font-size: 16px;
    font-weight: 600;
    color: #232c39;
    text-align: right;
    flex: 1;
}

@media (max-width: 768px) {
    .faq__question-text {
        font-size: 14px;
    }
}

.faq__number {
    font-size: 18px;
    line-height: 23.4px;
    color: #066899;
    min-width: 25px;
}

.faq__arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.faq__answer {
    background: #f3f4f6;
    border-radius: 0 0 8px 8px;
    padding: 8px;
    display: none;
}

    .faq__answer p {
        font-size: 14px;
        line-height: 25.2px;
        color: #4b5563;
        text-align: right;
    }

@media (max-width: 768px) {
    .hero__content {
        padding-bottom: 0;
    }

    .hero__title {
        font-size: 32px;
        line-height: 48px;
    }

    .hero__buttons {
        gap: 16px;
    }

    .products__showcase {
        flex-direction: column;
        gap: 24px;
    }

    .products,
    .video-section,
    .benefits,
    .how-it-works,
    .cta-banner,
    .technical-features,
    .pricing,
    .blog,
    .faq {
        padding-block: 40px;
    }
}

@media (max-width: 490px) {
    .hero__text {
        gap: 32px;
    }

    .hero__title-section {
        gap: 16px;
    }

    .hero__content {
        justify-content: center;
        padding-inline: 16px;
    }

    .hero__title {
        font-size: 22px;
        line-height: 36px;
    }

    .section-header h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.hero {
    background: #f7f9f7;
    overflow: hidden;
}

.hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-direction: row-reverse;
}

.hero__image {
    flex: 1;
}

    .hero__image img {
        width: 100%;
        max-width: 760px;
        display: block;
    }

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.hero__title-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__subtitle {
    color: #ac8740;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
}

.hero__title {
    color: #232c39;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.hero__description {
    max-width: 520px;
    color: #6b7280;
    font-size: 16px;
    line-height: 2;
}

.hero .btn {
    width: 270px;
    height: 56px;
}

@media (max-width: 992px) {
    .hero__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero__image {
        order: 1;
    }

        .hero__image img {
            max-width: 500px;
            margin: auto;
        }

    .hero__content {
        order: 2;
        align-items: center;
    }

    .hero__description {
        max-width: 100%;
    }

    .hero__subtitle {
        font-size: 42px;
    }

    .hero__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero__wrapper {
        gap: 24px;
    }

    .hero__image img {
        width: 100%;
    }

    .hero__subtitle {
        font-size: 36px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero .btn {
        width: 100%;
        max-width: 320px;
    }
}

.categories {
    padding: 40px 0;
    padding-bottom: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-direction: column;
}

    .section-title h2 {
        font-size: 24px;
        color: #274b4b;
        margin-bottom: 10px;
    }

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 18px;
    }
}

.categorySwiper {
    overflow: hidden;
}

    .categorySwiper .swiper-slide {
        width: auto;
    }

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

    .category-card img {
        width: 100%;
        height: 330px;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
    }

.category-title {
    position: absolute;
    bottom: 12px;
    right: 16px;
    left: 16px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px;
    gap: 8px;
    opacity: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6980392157);
    backdrop-filter: blur(4px);
}

.best-sellers {
    padding: 40px 0;
}

.best-sellers__wrapper {
    display: flex;
    background-color: #f1e9d9;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .best-sellers__wrapper {
        flex-direction: column;
    }
}

.best-sellers__banner {
    width: 280px;
    background-color: #cc9f53;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

    .best-sellers__banner::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 0;
        bottom: 0;
        width: 30px;
        background-color: #cc9f53;
        mask-image: radial-gradient(circle at 0 50%, transparent 30px, black 31px);
        -webkit-mask-image: radial-gradient(circle at 0 50%, transparent 30px, black 31px);
    }

@media (max-width: 768px) {
    .best-sellers__banner::before {
        display: none;
    }
}

.best-sellers__banner .banner-img {
    width: 150px;
    margin-bottom: 20px;
}

.best-sellers__banner .banner-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.5;
}

.best-sellers__banner .btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

    .best-sellers__banner .btn-outline-white:hover {
        background: #fff;
        color: #cc9f53;
    }

@media (max-width: 768px) {
    .best-sellers__banner {
        width: 100%;
        padding: 20px;
    }
}

.best-sellers__slider {
    flex: 1;
    padding: 30px;
    min-width: 0;
}

.product-slider-section {
    padding: 60px 0;
    direction: rtl;
}

    .product-slider-section .slider-wrapper {
        display: flex;
        background-color: #f2e9d8;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        min-height: 400px;
    }

    .product-slider-section .static-banner {
        width: 300px;
        background-color: #d1a657;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        position: relative;
        z-index: 2;
    }

        .product-slider-section .static-banner::after {
            content: "";
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 120%;
            background-color: #f2e9d8;
            border-radius: 50%;
            z-index: -1;
        }

@media (max-width: 992px) {
    .product-slider-section .static-banner::after {
        display: none;
    }
}

.product-slider-section .static-banner .banner-inner {
    text-align: center;
    color: #fff;
}

    .product-slider-section .static-banner .banner-inner .banner-img {
        width: 180px;
        margin-bottom: 20px;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    }

    .product-slider-section .static-banner .banner-inner .banner-title {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .product-slider-section .static-banner .banner-inner .view-all-btn {
        display: inline-block;
        padding: 10px 30px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

        .product-slider-section .static-banner .banner-inner .view-all-btn:hover {
            background: #fff;
            color: #d1a657;
        }

@media (max-width: 992px) {
    .product-slider-section .static-banner {
        width: 100%;
    }

        .product-slider-section .static-banner::after {
            display: none;
        }
}

.product-slider-section .swiper-container-box {
    flex: 1;
    padding: 40px 20px;
    min-width: 0;
}

.product-slider-section .product-card {
    background: #fff;
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin: 10px 0;
}

    .product-slider-section .product-card .card-image {
        position: relative;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        overflow: hidden;
    }

        .product-slider-section .product-card .card-image img {
            width: 100%;
            transition: 0.5s;
        }

        .product-slider-section .product-card .card-image .wishlist-icon {
            position: absolute;
            top: 8px;
            left: 6px;
            width: 26px;
            height: 26px;
            border: 1px solid #dcdcdc;
            border-radius: 50%;
            background: #fff;
            display: grid;
            place-items: center;
            padding: 0;
            cursor: pointer;
            border: 0.5px solid #9ca3af;
            background: #ffffff;
            gap: 8px;
            border-radius: 8px;
            border-width: 0.5px;
            padding: 4px;
            z-index: 5;
        }

            .product-slider-section .product-card .card-image .wishlist-icon:hover {
                color: #e74c3c;
            }

    .product-slider-section .product-card .card-details {
        padding: 15px 5px 5px;
    }

        .product-slider-section .product-card .card-details .product-name {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 12px;
            height: 35px;
            line-height: 1.35rem;
        }

        .product-slider-section .product-card .card-details .product-price {
            text-align: right;
            display: flex;
            justify-content: center;
            gap: 5px;
            color: #b58d46;
            font-weight: bold;
        }

            .product-slider-section .product-card .card-details .product-price .amount {
                font-size: 18px;
            }

            .product-slider-section .product-card .card-details .product-price .currency {
                font-size: 13px;
                margin-top: 4px;
            }

    .product-slider-section .product-card:hover img {
        transform: scale(1.08);
    }

/* ============================================
       SECTION TITLE
       ============================================ */
.section-title .subtitle-shape {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ac8740, transparent);
    border-radius: 4px;
}

/* ============================================
       CATEGORY SWIPER
       ============================================ */
.categorySwiper {
    overflow: hidden;
    padding: 8px 4px;
}

    .categorySwiper .swiper-slide {
        width: auto;
        height: auto;
    }

/* ============================================
       CATEGORY CARD
       ============================================ */
.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
}

    .category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }

    .category-card img {
        width: 100%;
        height: 280px;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .category-card:hover img {
        transform: scale(1.04);
    }

    /* ============================================
       CARD BADGE / OVERLAY
       ============================================ */
    .category-card .card-overlay {
        position: absolute;
        bottom: 16px;
        right: 16px;
        left: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    .category-card:hover .card-overlay {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

.card-overlay .category-title {
    color: #111928;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .card-overlay .category-title {
        font-size: 16px;
    }
}

.card-overlay .category-price {
    font-size: 18px;
    font-weight: 800;
    color: #ac8740;
    background: rgba(172, 135, 64, 0.1);
    padding: 4px 16px;
    border-radius: 30px;
    white-space: nowrap;
}

    .card-overlay .category-price .unit {
        font-size: 12px;
        font-weight: 500;
        color: #8a7a5a;
        margin-right: 2px;
    }

/* ============================================
       RESPONSIVE BREAKPOINTS
       ============================================ */
/* دسکتاپ بزرگ */
@media (min-width: 1200px) {
    .categorySwiper .swiper-slide {
        width: 25%;
    }
}
/* تبلت / دسکتاپ کوچک */
@media (max-width: 1199px) and (min-width: 769px) {
    .categorySwiper .swiper-slide {
        width: 33.33%;
    }
}
/* تبلت عمودی */
@media (max-width: 768px) and (min-width: 577px) {
    .categorySwiper .swiper-slide {
        width: 50%;
    }

    .category-card img {
        height: 220px;
    }

    .card-overlay .category-title {
        font-size: 16px;
    }

    .card-overlay .category-price {
        font-size: 15px;
        padding: 2px 12px;
    }
}
/* موبایل خیلی کوچک */
@media (max-width: 380px) {
    .categorySwiper .swiper-slide {
        width: 92%;
    }

    .category-card img {
        height: 170px;
    }

    .card-overlay .category-title {
        font-size: 13px;
    }

    .card-overlay .category-price {
        font-size: 12px;
        padding: 2px 8px;
    }
}

.gift-pack-section {
    background: #f7f8f7;
    padding: 28px 16px 40px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    border: 1px solid #d1d5db;
}

.gift-pack-section__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.gift-pack-section__header {
    text-align: center;
    margin-bottom: 26px;
}

    .gift-pack-section__header h2 {
        color: #2f4f4f;
        font-weight: 600;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

    .gift-pack-section__header p {
        font-weight: 400;
        font-size: 16px;
        line-height: 180%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #5b8989;
    }

.gift-pack-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .gift-pack-section__divider span {
        width: 48px;
        height: 1px;
        background: #cfd8d5;
    }

    .gift-pack-section__divider svg {
        width: 62px;
        height: 18px;
        fill: none;
        stroke: #9fb1ac;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.gift-pack-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 12px;
    min-height: 280px;
    overflow: hidden;
}

.product-card__fav {
    position: absolute;
    top: 38px;
    left: 20px;
    width: 26px;
    height: 26px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    border: 0.5px solid #9ca3af;
    background: #ffffff;
    gap: 8px;
    border-radius: 8px;
    border-width: 0.5px;
    padding: 4px;
}

    .product-card__fav svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: #7d7d7d;
        stroke-width: 1.8;
    }

.product-card__image {
    display: block;
    text-decoration: none;
}

    .product-card__image img {
        width: 100%;
        aspect-ratio: 1/1;
        -o-object-fit: contain;
        object-fit: contain;
        display: block;
        margin-top: 10px;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        pointer-events: none;
    }

.product-card__body {
    text-align: right;
    padding-inline: 2px;
    margin-top: 6px;
}

.product-card__title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
    color: #2d4a43;
    line-height: 1.7;
}

.product-card__price {
    margin: 0;
    font-size: 13px;
    color: #7a8e89;
    line-height: 1.5;
}

.product-card__add {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 6px;
    background: #2e5a50;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .gift-pack-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gift-pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gift-pack-section {
        padding-inline: 12px;
    }
}

@media (max-width: 480px) {
    .gift-pack-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 260px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

    .section-header h2 {
        margin: 0;
        font-weight: 600;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #2f4f4f;
    }

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 18px;
    }
}

.section-header p {
    margin: 8px 0;
    color: #5b8989;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 12px;
    }
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

    .divider span {
        width: 50px;
        height: 1px;
        background: #d0d8d5;
    }

    .divider .icon {
        color: #9fb1ac;
        font-size: 14px;
    }

/*.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}*/

/* Swiper Custom Style */
.product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: auto;
}

.fav-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: #ccc;
    transition: 0.3s;
}

    .fav-btn:hover {
        color: #e74c3c;
    }

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-size: 14px;
    color: #2d4a43;
    margin: 10px 0;
    text-align: right;
    display: block;
    text-decoration: none;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-direction: row-reverse;
}

.price-tag {
    color: #8a9e98;
    font-size: 13px;
}

.add-btn {
    background: #2e5a50;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Shared Base Styles (Common for both) --- */
/*.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}*/

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

    .section-header h2 {
        color: #2d4a43;
        font-size: 20px;
        margin: 0;
    }

    .section-header p {
        color: #8a9e98;
        font-size: 14px;
        margin: 8px 0;
    }

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

    .divider span {
        width: 50px;
        height: 1px;
        background: #d0d8d5;
    }

    .divider .icon {
        color: #9fb1ac;
        font-size: 14px;
    }

.product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fav-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: #ccc;
}

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-size: 14px;
    color: #2d4a43;
    margin: 10px 0;
    text-align: right;
    display: block;
    text-decoration: none;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-direction: row-reverse;
}

.price-tag {
    color: #8a9e98;
    font-size: 13px;
}

.add-btn {
    background: #2e5a50;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Specific Styles for Section ONE --- */
.gift-section-one {
    padding: 50px 0;
    border-bottom: 2px solid #eee;
    border-top: 2px solid #eee;
}

    .gift-section-one .product-card {
        border-color: #d1d9d6;
    }
/* مثال: تغییر جزیی در استایل */
/* --- Specific Styles for Section TWO --- */
.gift-section-two {
    padding: 50px 0;
    background-color: #f2f4f2;
}

    .gift-section-two .add-btn {
        background: #4a7a6f;
    }
/* مثال: رنگ دکمه متفاوت */
.faq-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 18px 72px;
}

.faq-header {
    text-align: center;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .faq-header h2 {
        margin: 0;
        color: #2f4f4f;
        font-weight: 600;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 18px;
    }
}

.faq-header p {
    margin: 8px 0 0;
    font-weight: 400;
    color: #5b8989;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .faq-header p {
        font-size: 12px;
    }
}

.faq-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto 0;
}

    .faq-divider span {
        flex: 1;
        height: 1px;
        background: var(--line);
    }

    .faq-divider svg {
        width: 64px;
        height: 18px;
        flex: 0 0 auto;
        stroke: #aebbb7;
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.faq-list {
    width: min(100%, 760px);
    margin: 0 auto;
    background: transparent;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    padding: 18px 0 16px;
    border: 0;
    background: transparent;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: #232c39;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
    }
}

.faq-question:focus-visible {
    outline: 2px solid rgba(46, 90, 80, 0.25);
    outline-offset: 4px;
    border-radius: 10px;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    color: #6f7f7a;
    font-size: 20px;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.faq-answer {
    display: none;
    padding: 0 0 18px 0;
    color: var(--answer);
    font-size: 14px;
    line-height: 2;
    text-align: right;
    max-width: 650px;
    color: #4b5563;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .faq-answer {
        font-size: 14px;
    }
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-icon {
    font-size: 28px;
    transform: translateY(-1px);
}

.faq-item.is-open .faq-question {
    color: var(--title);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 14px 56px;
    }

    .faq-header h2 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 0 14px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.9;
    }
}

.desin-line {
    display: flex;
    justify-content: center;
}

.wishlist-icon img {
    width: 25px !important;
}

.banner-part {
    margin: 100px auto;
}

@media (max-width: 768px) {
    .banner-part {
        margin: 48px auto;
    }
}

.gift-bo {
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

    .product-card img {
        width: 100%;
        transition: 0.5s;
    }

    .product-card .product-card-icon {
        position: absolute;
        top: 38px;
        left: 20px;
        width: 26px;
        height: 26px;
        border: 1px solid #dcdcdc;
        border-radius: 50%;
        background: #fff;
        display: grid;
        place-items: center;
        padding: 0;
        cursor: pointer;
        border: 0.5px solid #9ca3af;
        background: #ffffff;
        gap: 8px;
        border-radius: 8px;
        border-width: 0.5px;
        padding: 4px;
        z-index: 5;
    }

        .product-card .product-card-icon:hover {
            color: #e74c3c;
        }

.footer-column.about > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #6b7280;
}

.product-slider-section .slider-wrapper {
    display: flex;
    background-color: #f2e9d8;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

@media (max-width: 992px) {
    .product-slider-section .slider-wrapper {
        min-height: unset;
    }
}

.product-slider-section .static-banner {
    width: 300px;
    background-color: #d1a657;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

    .product-slider-section .static-banner::after {
        content: "";
        position: absolute;
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 120%;
        background-color: #f2e9d8;
        border-radius: 50%;
        z-index: -1;
    }

@media (max-width: 992px) {
    .product-slider-section .static-banner::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-slider-section .static-banner {
        width: 170px;
        padding: 20px 12px;
    }
}

@media (max-width: 600px) {
    .product-slider-section .static-banner {
        width: 130px;
        padding: 16px 8px;
    }
}

.product-slider-section .static-banner .banner-inner .banner-img {
    width: 180px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .product-slider-section .static-banner .banner-inner .banner-img {
        width: 90px;
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .product-slider-section .static-banner .banner-inner .banner-img {
        width: 60px;
        margin-bottom: 8px;
    }
}

.product-slider-section .static-banner .banner-inner .banner-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .product-slider-section .static-banner .banner-inner .banner-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
}

@media (max-width: 600px) {
    .product-slider-section .static-banner .banner-inner .banner-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

.product-slider-section .static-banner .banner-inner .view-all-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

@media (max-width: 992px) {
    .product-slider-section .static-banner .banner-inner .view-all-btn {
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 12px;
    }
}

.product-slider-section .swiper-container-box {
    flex: 1;
    padding: 40px 20px;
    min-width: 0;
}

@media (max-width: 992px) {
    .product-slider-section .swiper-container-box {
        padding: 16px 10px;
    }
}

.titles-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 768px) {
    .titles-group {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 30px;
    }
}
/*# sourceMappingURL=Home.css.map */

