/* =========================================================
   RESET & BASE
========================================================= */
@font-face {
    font-family: 'IranNastaliq';
    src: url('fonts/IranNastaliq.woff2') format('woff2'),
         url('fonts/IranNastaliq.woff') format('woff'),
         url('fonts/IranNastaliq.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: #ecdccf;
    color: #222;
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.site-header,
.logo,
.main-menu a,
.main-menu a:visited,
.main-menu a:hover,
.main-menu a:active {
    font-family: "Vazirmatn", sans-serif !important;
}
.site-header.scrolled .order-text {
        color: #53412f !important;
    }

img {
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    right: 0;

    width: 100%;
    height: 78px;

    z-index: 1000;

    background: transparent;

    border: none !important;
    box-shadow: none !important;
    outline: none !important;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    background: rgba(236, 220, 207, 0.96);

    border: none !important;
    box-shadow: none !important;

    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1200px;
    height: 100%;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo {
    color: white;

   /* font-family: Tahoma, Arial, sans-serif;*/
    font-size: 22px;
    font-weight: bold;

    line-height: 1;

    text-decoration: none !important;

    border: none !important;
    box-shadow: none !important;

    transition: color 0.35s ease;
}

.site-header.scrolled .logo {
    color: #53412f;
}

.site-header .logo:hover {
    color: #8a6a45;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu a {
    position: relative;

    color: white;

    /*font-family: Tahoma, Arial, sans-serif;*/
    font-size: 15px;
    font-weight: normal;

    text-decoration: none !important;

    transition:
        color 0.3s ease;
}

.site-header.scrolled .main-menu {
    gap: 22px;
}

.site-header.scrolled .main-menu a {
    color: #53412f;
}

.main-menu a:hover {
    color: #9b855a;
}

.site-header.scrolled .main-menu a:hover {
    color: #8a6a45;
}

.main-menu a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    background: #8a6a45;

    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a.active {
    color: #8a6a45;
}


/* =========================================================
   MAIN HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.3);

    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    text-align: right;
    color: white;
}

.hero-logo {
    position: absolute;
    left: 30px;
    top: 30%;
    transform: translateY(-50%);
    width: 180px;
    height: auto;
    margin: 0;
    z-index: 5;
}

.hero-content h1 {
    color: #f5e6c8;
    font-size: 35px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-content p {
    color: #fcfbfb;

    font-size: 25px;
    line-height: 2;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-block;

    padding: 12px 28px;

    background: white;
    color: #333;

    text-decoration: none;

    border-radius: 8px;

    transition: 0.3s ease;
}

.button:hover {
    opacity: 0.85;
}

.button-outline {
    background: transparent;
    color: white;

    border: 1px solid white;
}
/* =========================================================
   index PAGE head
========================================================= */
.index-title {
    font-size: 134px;

    margin: 8px 0 12px;
}
/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    position: relative;

    width: 100%;
    height: 320px;

    overflow: hidden;
}

.page-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.30);

    z-index: 2;
}

.page-hero-content {
    position: relative;

    z-index: 3;

    height: 100%;

    max-width: 1200px;

    margin: 0 auto;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    text-align: right;

    color: white;
}

.page-hero-content h1 {
    margin-bottom: 10px;

    font-size: 42px;

    color: #f5e6c8;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 17px;

    color: white;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   PRODUCT HERO
========================================================= */

.product-hero {
    position: relative;

    width: 100vw;
    height: 420px;

    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);

    overflow: hidden;

    max-width: none !important;
}

.product-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.30);

    z-index: 2;
}

.product-hero-content {
    position: relative;

    z-index: 3;

    height: 100%;

    max-width: 1200px;

    margin: 0 auto;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    text-align: right;

    color: white;
}

.product-hero-content h1 {
    margin-bottom: 12px;

    font-size: 42px;

    color: #f5e6c8;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.product-hero-content p {
    max-width: 650px;

    font-size: 17px;
    line-height: 2;

    color: white;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.6);
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    text-align: center;

    margin-bottom: 45px;
}

.section-title span {
    color: #413f3e;

    font-size: 16px;
    font-weight: bold;
}

.section-title h2 {
    font-size: 34px;

    margin: 8px 0 12px;
}

.section-title p {
    color: #ececec;

    font-size: 16px;
}


/* =========================================================
   HOME PRODUCTS
========================================================= */

.home-products {
    max-width: 1200px;

    margin: 80px auto;

    padding: 0 20px;
}

.home-product-list {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* کارت */

.home-product-card {
    position: relative;
    display: block;
    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;
    margin: 0;

    overflow: hidden;
    border: none;
    border-radius: 16px;

    text-decoration: none;
    color: white;

    background: #ddd;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* تصویر */

.home-product-card > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

    transition:
        transform 0.5s ease;
}


/* لایه تیره */

.home-card-dark {
    position: absolute;

    inset: 0;

    z-index: 2;

    background: rgba(0, 0, 0, 0);

    pointer-events: none;

    transition:
        background 0.3s ease;
}


/* محتوای کارت */

.home-card-content {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 100%;

    z-index: 3;

    padding: 25px;

    color: white;

    pointer-events: none;
}

.home-card-content h3 {
    margin-bottom: 8px;

    color: white;

    font-size: 22px;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.6);
}

.home-card-content span {
    color: #f5e6c8;

    font-size: 14px;
    font-weight: bold;
}


/* Hover */

.home-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2);
}

.home-product-card:hover > img {
    transform: scale(1.08);
}

.home-product-card:hover .home-card-dark {
    background: rgba(0, 0, 0, 0.58);
}


/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-page {
    max-width: 1200px;

    margin: 70px auto;

    padding: 0 20px;
}

.products-page-title {
    text-align: center;

    margin-bottom: 50px;
}

.products-page-title span {
    color: #8a6a45;

    font-size: 15px;
    font-weight: bold;
}

.products-page-title h1 {
    color: #53412f;

    font-size: 40px;

    margin: 10px 0 15px;
}

.products-page-title p {
    max-width: 700px;

    margin: 0 auto;

    color: #777;

    font-size: 16px;
    line-height: 2;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-list {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}
/* =========================================================
   SEARCH SECTION
========================================================= */

.search-section {
    margin-bottom: 40px;
    text-align: center;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
   /* font-family: inherit;*/
    background: #f8f4f0;
    color: #53412f;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: #8a6a45;
    box-shadow: 0 0 0 4px rgba(138, 106, 69, 0.15);
}

.search-input::placeholder {
    color: #aaa;
}

.search-button {
    padding: 14px 28px;
    background: #8a6a45;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
   /* font-family: inherit;*/
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: #6f5338;
    transform: scale(1.02);
}

.search-button:active {
    transform: scale(0.97);
}

.search-status {
    margin-top: 12px;
    font-size: 15px;
    color: #777;
    min-height: 30px;
    transition: color 0.3s ease;
}

.search-status.found {
    color: #2d7d2d;
}

.search-status.not-found {
    color: #c0392b;
}


.product-card {
    position: relative;
    display: block;
    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;
    margin: 0;

    overflow: hidden;
    border: none;
    border-radius: 16px;

    text-decoration: none;
    color: white;

    background: #ddd;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* تصویر */

.product-card > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    z-index: 1;

    transition:
        transform 0.5s ease;
}


/* لایه تیره
   حالت عادی: کاملاً روشن */

.product-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: rgba(0, 0, 0, 0);

    pointer-events: none;

    transition:
        background 0.3s ease;
}


/* Hover */

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.product-card:hover > img {
    transform: scale(1.08);
}

.product-card:hover::after {
    background: rgba(0, 0, 0, 0.58);
}


/* محتوا روی تصویر */

.product-card .product-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background: transparent !important;

    pointer-events: none;
}

.product-overlay-content {
    position: relative;

    width: 100%;

    transform: translateY(8px);

    transition:
        transform 0.3s ease;
}

.product-card:hover .product-overlay-content {
    transform: translateY(0);
}

.product-overlay h3 {
    margin: 0 0 8px;
    padding: 0;

    color: white;

    font-size: 20px;
    font-weight: bold;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.5);
}

.product-overlay span {
    display: block;

    color: #f5e6c8;

    font-size: 14px;
    font-weight: bold;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.product-card:hover .product-overlay span {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-page {
    max-width: 1200px;

    margin: 60px auto 40px;

    padding: 30px;

    display: flex;
    align-items: center;

    gap: 60px;

    background: #f8f4f0;

    border-radius: 18px;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);
}

.product-page-image {
    flex: 1;
}

.product-page-image img {
    width: 100%;

    max-height: 500px;

    object-fit: cover;

    border-radius: 12px;
}

.product-page-content {
    flex: 1;

    text-align: right;
}

.product-label {
    font-size: 38px;

    color: #53412f;

    font-weight: bold;
}

.product-page-content h1 {
    font-size: 20px;

    color: #53412f;

    margin: 10px 0 20px;
}

.product-page-content p {
    color: #666;

    font-size: 16px;
    line-height: 2.2;

    margin-bottom: 15px;
}


/* =========================================================
   MODEL SECTION
========================================================= */

.models {
    max-width: 1200px;

    margin: 60px auto;

    padding: 0 20px;
}

.models h2 {
    text-align: center;

    color: #53412f;

    font-size: 30px;

    margin-bottom: 35px;
}

.model-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* =========================================================
   MODEL CARDS
========================================================= */

.model-card {
    position: relative;

    width: 100%;
    height: 300px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: none;

    border-radius: 16px;

    background: transparent;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* لینک کل کارت */

.model-card > a {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;

    color: white;

    text-decoration: none;
}


/* تصویر */

.model-card img {
    position: absolute;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    display: block;

    object-fit: cover;

    z-index: 1;

    border: none;

    transition:
        transform 0.5s ease;
}


/* لایه تیره */

.model-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: rgba(0, 0, 0, 0);

    pointer-events: none;

    transition:
        background 0.3s ease;
}


/* Overlay متن */

.model-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0)
        );
}

.model-card-content {
    width: 100%;

    transform: translateY(8px);

    transition:
        transform 0.3s ease;
}

.model-card h3 {
    position: relative;

    margin: 0 0 6px !important;
    padding: 0 !important;

    color: white !important;

    font-size: 21px;

    text-align: right;

    background: transparent !important;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.6);
}

.model-card span {
    display: block;

    color: #f5e6c8;

    font-size: 14px;
    font-weight: bold;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.model-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.model-card:hover img {
    transform: scale(1.08);
}

.model-card:hover::after {
    background: rgba(0, 0, 0, 0.25);
}

.model-card:hover .model-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.18)
        );
}

.model-card:hover .model-card-content {
    transform: translateY(0);
}

.model-card:hover span {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   MODEL DETAIL
========================================================= */

.model-detail {
    max-width: 1200px;

    margin: 70px auto;

    padding: 30px;

    display: flex;
    align-items: center;

    gap: 70px;

    background: #f8f4f0;

    border-radius: 20px;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);
}

.model-detail-image {
    flex: 1;
}

.model-detail-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 16px;
}

.model-detail-content {
    flex: 1;

    text-align: right;
}

.model-detail-content h1 {
    font-size: 40px;

    color: #53412f;

    margin-bottom: 15px;
}

.model-divider {
    width: 70px;
    height: 3px;

    background: #8a6a45;

    margin-bottom: 25px;
}

.model-detail-content > p {
    color: #666;

    font-size: 16px;
    line-height: 2.2;

    margin-bottom: 30px;
}

.model-specs {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    margin-bottom: 30px;
}

.spec-item {
    display: flex;

    justify-content: space-between;

    padding: 14px 5px;

    border-bottom: 1px solid #e5e5e5;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item span {
    color: #777;
}

.spec-item strong {
    color: #53412f;
}

.back-button {
    display: inline-block;

    padding: 11px 22px;

    background: #8a6a45;
    color: white;

    text-decoration: none;

    border-radius: 8px;

    transition: 0.3s ease;
}

.back-button:hover {
    background: #6f5338;
}


/* =========================================================
   MODEL GALLERY
========================================================= */

.model-gallery {
    flex: 1;

    width: 100%;
}

.main-model-image {
    width: 100%;

    cursor: zoom-in;
}

.main-model-image img {
    width: 100%;
    height: 500px;

    object-fit: contain;

    border-radius: 16px;

    background: #f8f4f0;

    cursor: zoom-in;
}

.model-thumbnails {
    display: flex;

    gap: 12px;

    margin-top: 15px;

    overflow-x: auto;
}

.model-thumbnail {
    width: 80px;
    height: 80px;

    object-fit: cover;

    border-radius: 8px;

    cursor: pointer;

    border: 2px solid transparent;

    opacity: 0.7;

    transition: 0.25s ease;
}

.model-thumbnail:hover {
    opacity: 1;
}

.model-thumbnail.active {
    border-color: #8a6a45;

    opacity: 1;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.image-lightbox {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 30px;

    cursor: zoom-out;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;

    object-fit: contain;

    border-radius: 10px;

    touch-action: none;
}

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 35px;

    color: white;

    font-size: 45px;

    cursor: pointer;

    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    color: white;

    font-size: 24px;

    cursor: pointer;

    transition: 0.3s ease;

    z-index: 10001;
}

.lightbox-prev {
    right: 30px;
}

.lightbox-next {
    left: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: none;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    max-width: 1200px;

    margin: 70px auto;

    padding: 35px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    background: #f8f4f0;

    border-radius: 20px;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);
}

.about-image {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;

    max-width: 520px;
    max-height: 550px;

    object-fit: contain;

    border-radius: 16px;
}

.about-content {
    text-align: right;
}

.about-label {
    color: #8a6a45;

    font-size: 15px;
    font-weight: bold;
}

.about-content h1 {
    color: #53412f;

    font-size: 40px;
    line-height: 1.6;

    margin: 10px 0 25px;
}

.about-content p {
    color: #666;

    font-size: 16px;
    line-height: 2.2;

    margin-bottom: 18px;
}

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.about-feature {
    padding: 18px 10px;

    background: #ecdccf;

    border-radius: 10px;

    text-align: center;
}

.about-feature strong {
    display: block;

    color: #53412f;

    font-size: 17px;

    margin-bottom: 5px;
}

.about-feature span {
    color: #777;

    font-size: 12px;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    max-width: 1200px;

    margin: 70px auto;

    padding: 0 20px;
}

.contact-title {
    text-align: center;

    margin-bottom: 50px;
}

.contact-title span {
    color: #8a6a45;

    font-weight: bold;
}

.contact-title h1 {
    color: #53412f;

    font-size: 38px;

    margin: 10px 0 15px;
}

.contact-title p {
    color: #777;

    font-size: 16px;
}

.contact-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.contact-info,
.contact-form {
    background: #f8f4f0;

    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07);
}

.contact-info h2,
.contact-form h2 {
    color: #53412f;

    margin-bottom: 25px;
}

.contact-item {
    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;

    color: #8a6a45;

    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-form form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #ddd;

    border-radius: 8px;

    background: white;

   /* font-family: inherit;*/

    font-size: 14px;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8a6a45;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 13px;

    border: none;

    border-radius: 8px;

    background: #8a6a45;

    color: white;

   /* font-family: inherit;*/

    font-size: 15px;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #6f5338;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    
    margin-top: auto;
    background: #53412f; 
    color: #f5e6c8; 
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 55px 20px;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1.5fr;

    gap: 60px;
}

.footer-column {
    display: flex;

    flex-direction: column;
}

.footer-column h3 {
    color: #f5e6c8;

    font-size: 20px;

    margin-bottom: 20px;
}

.footer-column p {
    color: #dbcfc4;

    font-size: 14px;
    line-height: 2;

    margin-bottom: 8px;
}

.footer-about p {
    max-width: 380px;
}

.footer-column a {
    width: fit-content;

    color: #dbcfc4;

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 10px;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: white;

    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    text-align: center;

    padding: 20px;
}

.footer-bottom p {
    color: #cfc3b8;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE - TABLET & MOBILE
========================================================= */

@media (max-width: 768px) {
    body {
        padding-top: 150px; /* برای موبایل‌های کوچک */
    }
    /* تنظیم هدر */
    .site-header {
        height: auto !important;
        min-height: 80px !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: transparent !important;
    }
    
    .site-header.scrolled {
        background: rgba(236, 220, 207, 0.96) !important;
        backdrop-filter: blur(8px) !important;
    }

    .header-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0px !important;
        padding: 1px 12px !important;
        height: auto !important;
        min-height: 80px !important;
    }
    .site-header.scrolled .order-text {
        color: #53412f !important;
    }
    
    .order-numbers {
        
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .order-numbers .contact-link {
        font-size: 13px !important;
        color: #f5e6c8 !important;
        text-decoration: none !important;
        padding: 4px 10px !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        border-radius: 6px !important;
        background: rgba(255,255,255,0.05) !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
    }
    
    .site-header.scrolled .order-numbers .contact-link {
        color: #53412f !important;
        border-color: rgba(83, 65, 47, 0.15) !important;
    }
    
    .order-numbers .contact-link:hover {
        background: rgba(255,255,255,0.12) !important;
        transform: scale(1.05) !important;
    }
    
    .main-menu {
        gap: 1px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .main-menu a {
        font-size: 13px !important;
        color: white !important;
    }
    
    .site-header.scrolled .main-menu a {
        color: #53412f !important;
    }
    .header-container p {
        margin: 0 !important;
        font-size: 12px !important;
        text-align: center !important;
        color: #aa7035  !important;
        width: 100% !important;
    }
    .header-container a {
        margin: 0 !important;
        font-size: 30px !important;
        text-align: center !important;
        color: #aa7035  !important;
       /* width: 100% !important;*/
    }
    .site-header.scrolled .header-container p {
        color: #53412f !important;
    }
   /* شماره‌ها در یک خط */
    .header-container p:has(.contact-link) {
        display: flex !important;
        justify-content: center !important;
        gap: 2px !important;
        width: 100% !important;
    }
    
    .header-container p .contact-link {
        font-size: 14px !important;
        color: #53412f  !important;
        text-decoration: none !important;
        padding: 4px 8px !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 6px !important;
        background: rgba(255,255,255,0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .site-header.scrolled .header-container p .contact-link {
        color: #53412f !important;
        border-color: rgba(83, 65, 47, 0.2) !important;
    }
    
    .header-container p .contact-link:hover {
        background: rgba(83, 65, 47, 0.1);
        transform: scale(1.05);
    }
    

    /* لوگو در موبایل */
    .logo {
        font-size: 32px !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    /* منو در موبایل */
    .main-menu {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-menu a {
        font-size: 14px !important;
        padding: 1px 8px !important;
        color: #53412f !important;
    }

    .site-header.scrolled .main-menu a {
        color: #53412f !important;
    }

    /* بقیه مواردی که قبلاً داشتی */
    .hero {
        height: 650px !important;
    }

    .hero-logo {
        top: 120px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100px !important;
    }

    .hero-content {
        padding: 100px 25px 130px !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.7 !important;
    }

    .hero-content p {
        font-size: 14px !important;
        line-height: 2 !important;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    /* محصولات */
    .product-list {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .home-product-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* سایر بخش‌ها */
    .page-hero {
        height: auto !important;
        min-height: 500px !important;
    }

    .page-hero-content {
        padding: 120px 20px 40px !important;
        min-height: 500px !important;
    }

    .page-hero-content h1 {
        font-size: 28px !important;
    }

    .about-page {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        margin: 40px 20px !important;
        padding: 25px !important;
    }

    .about-features {
        grid-template-columns: 1fr !important;
    }

    .contact-container {
        grid-template-columns: 1fr !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center !important;
    }

    .footer-column {
        align-items: center !important;
    }

    .model-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .model-detail {
        flex-direction: column !important;
        gap: 30px !important;
        margin: 40px 20px !important;
        padding: 20px !important;
    }

    .model-detail-image img {
        height: 350px !important;
    }
}

/* موبایل‌های کوچک */
@media (max-width: 500px) {
    .site-header {
        min-height: 70px !important;
    }

    .header-container {
        min-height: 70px !important;
        gap: 1px !important;
        padding: 8px 12px !important;
    }

    .logo {
        font-size: 26px !important;
    }

    .main-menu {
        gap: 1px !important;
    }

    .main-menu a {
        font-size: 12px !important;
        padding: 4px 6px !important;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1px !important;
    }

    .home-product-list {
        grid-template-columns: 1fr !important;
    }

    .model-list {
        grid-template-columns: 1fr !important;
    }

    .page-hero-content h1 {
        font-size: 24px !important;
    }
}

/* =========================================================
   SEARCH RESULTS - مدل‌های پیدا شده
========================================================= */

/* کارت نتایج جستجو */
.product-card.model-search-result .product-overlay-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.model-category {
    display: inline-block;
    padding: 3px 12px;
    margin: 4px 0;
    background: rgba(138, 106, 69, 0.85);
    color: white;
    font-size: 12px;
    border-radius: 12px;
    font-weight: normal;
}

.model-code {
    display: block;
    color: #f5e6c8;
    font-size: 12px;
    margin: 4px 0 2px;
    opacity: 0.8;
}

.view-link {
    display: block;
    color: #f5e6c8;
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .view-link {
    opacity: 1;
    transform: translateY(0);
}

.model-count {
    display: block;
    color: #f5e6c8;
    font-size: 13px;
    margin: 4px 0 6px;
    opacity: 0.8;
}

/* استایل برای زمان عدم پیدا شدن محصول */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8f4f0;
    border-radius: 16px;
}

.no-results h3 {
    color: #53412f;
    font-size: 24px;
    margin: 15px 0 8px;
}

.no-results p {
    color: #999;
    font-size: 16px;
}


/* =========================================================
   CONTACT - تک ستونه
========================================================= */

.contact-container-single {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-full {
    background: #f8f4f0;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.contact-info-full h2 {
    color: #53412f;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

/* =========================================================
   CONTACT LINKS - لینک‌های تماس
========================================================= */

.contact-link {
    color: #53412f;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #8a6a45;
    transform: translateX(-4px);
}

.address-link {
    color: #8a6a45;
    font-weight: bold;
    border-bottom: 2px dashed #8a6a45;
    padding-bottom: 2px;
}

.address-link:hover {
    color: #53412f;
    border-bottom-color: #53412f;
}

.address-hint {
    font-size: 12px;
    color: #999;
    margin-top: 4px !important;
}

/* =========================================================
   CHANNEL LINKS - لینک‌های کانال
========================================================= */

.channel-item {
    background: white;
    border-radius: 12px;
    padding: 20px !important;
    margin-top: 10px;
    border: 1px solid #e8ddd2 !important;
}

.channel-item strong {
    font-size: 18px;
    color: #53412f;
    margin-bottom: 15px !important;
    display: block;
}

.channel-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f4f0;
    border-radius: 10px;
    text-decoration: none;
    color: #53412f;
    transition: all 0.3s ease;
    border: 1px solid #e8ddd2;
    position: relative;
}

.channel-link:hover {
    transform: translateX(-6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.channel-link .channel-icon {
    font-size: 22px;
    width: 40px;
    text-align: center;
}

.channel-link .channel-name {
    flex: 1;
    font-weight: bold;
    font-size: 15px;
}

.channel-link .channel-arrow {
    font-size: 18px;
    color: #8a6a45;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.channel-link:hover .channel-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* رنگ‌های اختصاصی کانال‌ها */
.channel-link.telegram {
    border-right: 4px solid #0088cc;
}
.channel-link.telegram:hover {
    border-right-color: #006699;
    background: #f0f8ff;
}

.channel-link.instagram {
    border-right: 4px solid #e4405f;
}
.channel-link.instagram:hover {
    border-right-color: #c13584;
    background: #fdf0f3;
}

.channel-link.whatsapp {
    border-right: 4px solid #25d366;
}
.channel-link.whatsapp:hover {
    border-right-color: #1da851;
    background: #f0faf4;
}

/* =========================================================
   WORKING HOURS - ساعات کاری
========================================================= */

.working-hours {
    background: white;
    border-radius: 12px;
    padding: 20px !important;
    margin-top: 10px;
    border: 1px solid #e8ddd2 !important;
}

.working-hours strong {
    font-size: 18px;
    color: #53412f;
    margin-bottom: 10px !important;
    display: block;
}

.working-hours p {
    margin-bottom: 4px !important;
    color: #666;
    font-size: 14px;
}

.working-hours p:last-child {
    margin-bottom: 0 !important;
}

/* =========================================================
   MAP SECTION - بخش نقشه
========================================================= */

.map-section {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.map-container {
    background: #f8f4f0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.map-container h2 {
    color: #53412f;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* =========================================================
   RESPONSIVE - CONTACT
========================================================= */


@media (max-width: 500px) {
    .contact-info-full {
        padding: 18px;
    }

    .contact-info-full h2 {
        font-size: 20px;
    }

    .channel-link {
        padding: 8px 12px;
    }

    .channel-link .channel-icon {
        font-size: 16px;
        width: 28px;
    }

    .channel-link .channel-name {
        font-size: 13px;
    }

    .map-wrapper iframe {
        height: 200px;
    }

    .map-container {
        padding: 15px;
    }

    .map-container h2 {
        font-size: 17px;
    }

    .contact-item {
        padding: 12px 0 !important;
    }
    .product-card.model-search-result .product-overlay-content h3 {
        font-size: 16px;
    }
    
    .model-category {
        font-size: 11px;
        padding: 2px 10px;
    }

    .model-list {
        grid-template-columns: 1fr;
    }

    .product-list {
        
        grid-template-columns: repeat(2, 1fr);
    }

    .home-product-list {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: auto;
        min-height: 600px;
    }
    .page-hero-content {
        height: auto;
        min-height: 600px;

        padding: 130px 20px 50px;

        justify-content: flex-start;
        align-items: flex-start;
    }

    .page-hero-content h1 {
        padding-top: 0;
        margin-bottom: 20px;

        font-size: 26px;
        line-height: 1.6;
    }
    .page-hero-content p {
        margin-bottom: 15px;

        font-size: 24px;
        line-height: 2;
    }

    .product-hero {
        height: 350px;
    }

    .product-hero-content h1 {
        font-size: 30px;
    }
    .product-overlay h3 {
        font-size: 17px;
    }

    .product-overlay span {
        font-size: 12px;
    }

    .product-overlay {
        padding: 15px;
    }
    .logo {
        font-size: 28px !important;  /* اندازه لوگو در موبایل‌های کوچک */
    }
    .search-container {
        flex-direction: column;
        gap: 10px;
    }

    .search-input {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }

    .search-button {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}
.logo {
    font-size: 40px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    font-family: "Vazirmatn", sans-serif !important;  /* این خط را عوض کن */
    color: #8B4513;
}
.logo:hover {
    transform: scale(1.05);  /* افکت بزرگ‌تر شدن هنگام هاور */
}
.order-numbers {
    display: flex;
    gap: 15px;
}

.order-text {
    color: #e4e1de ;  /* تیره‌تر از قبل */
   /* transition: all 0.3s ease;*/
    font-weight: 600;
    
}
.order-numbers .contact-link {
    color: #3d2e1f !important;  /* تیره‌تر از قبل */
    text-decoration: none;
    padding: 4px 12px;
    border: 1.5px solid #3d2e1f !important;  /* تیره‌تر */
    border-radius: 6px;
    background: rgba(240, 238, 236, 0.50) !important;  /* تیره‌تر */
    transition: all 0.3s ease;
    font-weight: 600;
}

.order-numbers .contact-link:hover {
    background: rgba(138, 94, 50, 0.18) !important;
    transform: scale(1.05);
    border-color: #7a5e41 !important;
}