:root {
    --green-950: #021d13;
    --green-900: #063522;
    --green-850: #073c28;
    --green-800: #07452e;
    --green-700: #0d5a3b;
    --gold-700: #9c762e;
    --gold-600: #bd9141;
    --gold-500: #d5ad58;
    --gold-300: #ead28a;
    --cream: #fbf8ee;
    --cream-2: #fffdf7;
    --white: #ffffff;
    --border: #e9dfc9;
    --text: #273027;
    --muted: #666f65;
    --font: "Vazirmatn", sans-serif;
    --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.07);
    --shadow-card: 0 18px 42px rgba(4, 53, 35, 0.13);
}

/* =========================================================
   Reset
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 125px;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--cream-2);
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

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

::selection {
    background: rgba(213, 173, 88, 0.28);
    color: var(--green-950);
}

.page-container {
    width: 100%;
    max-width: 1740px;
    margin: 0 auto;
    padding-left: 76px;
    padding-right: 76px;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: radial-gradient(circle at 86% 10%, rgba(213, 173, 88, 0.14), transparent 260px), linear-gradient(135deg, #021d13 0%, #053421 55%, #021d13 100%);
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.22);
}

.main-navbar {
    height: 112px;
    display: grid;
    grid-template-columns: 300px 1fr 230px;
    align-items: center;
    gap: 30px;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-self: start;
}

.brand-logo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(213, 173, 88, 0.75);
    box-shadow: 0 0 0 7px rgba(213, 173, 88, 0.07);
}

.brand-text strong {
    display: block;
    color: var(--gold-500);
    font-size: 31px;
    font-weight: 900;
    line-height: 1.15;
}

.brand-text span {
    display: block;
    color: var(--gold-300);
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.desktop-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 54px;
}

    .desktop-menu a {
        position: relative;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        opacity: 0.94;
        padding: 42px 0;
        transition: 0.25s ease;
    }

        .desktop-menu a:hover,
        .desktop-menu a.active {
            color: var(--gold-500);
        }

            .desktop-menu a.active::after,
            .desktop-menu a:hover::after {
                content: "";
                position: absolute;
                right: 50%;
                bottom: 21px;
                width: 62px;
                height: 2px;
                transform: translateX(50%);
                background: var(--gold-500);
            }

.header-phone {
    justify-self: end;
    direction: ltr;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    border: 2px solid var(--gold-500);
    border-radius: 9px;
    padding: 14px 22px;
    font-size: 17px;
    font-weight: 900;
    transition: 0.25s ease;
}

    .header-phone i {
        color: var(--gold-500);
        font-size: 24px;
    }

    .header-phone:hover {
        background: var(--gold-500);
        color: var(--green-950);
    }

        .header-phone:hover i {
            color: var(--green-950);
        }

.mobile-menu-btn {
    display: none;
}

.pattern-line {
    height: 31px;
    background-image: url("../images/pattern-border.jpg");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 31px;
    border-top: 1px solid rgba(213, 173, 88, 0.18);
    border-bottom: 1px solid rgba(213, 173, 88, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* =========================================================
   Mobile Menu
   ========================================================= */

.mobile-menu-canvas {
    background: radial-gradient(circle at 20% 0%, rgba(213, 173, 88, 0.15), transparent 240px), linear-gradient(160deg, var(--green-950), var(--green-800));
    color: #fff;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .mobile-brand img {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid var(--gold-500);
    }

    .mobile-brand strong,
    .mobile-brand span {
        display: block;
    }

    .mobile-brand strong {
        color: var(--gold-500);
        font-size: 23px;
        font-weight: 900;
    }

    .mobile-brand span {
        color: var(--gold-300);
        font-size: 14px;
    }

.mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mobile-menu a {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
        font-weight: 700;
    }

.mobile-phone {
    margin-top: 26px;
    direction: ltr;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    background: var(--gold-500);
    color: var(--green-950);
    border-radius: 12px;
    padding: 14px;
    font-weight: 900;
}

/* =========================================================
   Hero Slider
   ========================================================= */

.hero-section {
    position: relative;
    background: var(--green-950);
}

.hero-slide {
    position: relative;
    height: 535px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}

.hero-dark-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(2, 29, 19, 0.12) 0%, rgba(2, 29, 19, 0.26) 42%, rgba(2, 29, 19, 0.72) 100% ), linear-gradient( 180deg, rgba(2, 29, 19, 0.05), rgba(2, 29, 19, 0.16) );
}

.hero-layout {
    position: relative;
    z-index: 2;
    height: 535px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 40px;
}

.hero-text {
    color: #fff;
    max-width: 690px;
    padding-top: 4px;
    transform: translateX(-95px);
}

.hero-title-line {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .hero-title-line h1 {
        margin: 0;
        color: #fff;
        font-size: 64px;
        font-weight: 900;
        letter-spacing: -4px;
        line-height: 1.15;
    }

    .hero-title-line h2 {
        margin: 0;
        color: #fff;
        font-size: 44px;
        font-weight: 900;
        line-height: 1.25;
    }

    .hero-title-line span {
        color: var(--gold-500);
        font-size: 20px;
        white-space: nowrap;
    }

        .hero-title-line span::before,
        .hero-title-line span::after {
            content: "";
            display: inline-block;
            width: 28px;
            height: 1px;
            background: var(--gold-500);
            vertical-align: middle;
            margin: 0 8px;
        }

.hero-text > h2 {
    margin: 8px 0 18px;
    font-size: 37px;
    font-weight: 800;
    line-height: 1.45;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 2.05;
    margin: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
}

.btn-gold,
.btn-outline-white {
    min-width: 205px;
    height: 60px;
    border-radius: 7px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-gold {
    background: linear-gradient(135deg, #e4c16c, #b98935);
    color: var(--green-950);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.72);
    color: #fff;
    background: rgba(5, 52, 33, 0.32);
    backdrop-filter: blur(8px);
}

    .btn-gold:hover,
    .btn-outline-white:hover {
        transform: translateY(-3px);
    }

.hero-product {
    align-self: end;
    justify-self: start;
    width: min(745px, 100%);
    margin-bottom: 0;
    transform: translateX(20px);
}

    .hero-product img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
    }

.hero-control {
    width: 72px;
    opacity: 1;
    z-index: 5;
}

.hero-control-right {
    right: 10px;
    left: auto;
}

.hero-control-left {
    left: 10px;
    right: auto;
}

.hero-control span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.68);
    background: rgba(2, 32, 21, 0.18);
    backdrop-filter: blur(6px);
    transition: 0.25s ease;
}

.hero-control:hover span {
    background: rgba(213, 173, 88, 0.22);
    border-color: var(--gold-500);
    color: var(--gold-300);
}

.hero-dots {
    bottom: 12px;
    margin-bottom: 0;
    z-index: 6;
}

    .hero-dots [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        opacity: 1;
        border: 1px solid var(--gold-500);
        background: transparent;
    }

    .hero-dots .active {
        background: var(--gold-500);
    }

/* =========================================================
   Feature Cards
   ========================================================= */

.feature-section {
    background: #fffdf8;
    padding: 38px 0 34px;
}

.feature-card {
    min-height: 122px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 30px;
    transition: 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
    }

.feature-text h3 {
    margin: 0 0 9px;
    color: var(--green-900);
    font-size: 20px;
    font-weight: 900;
}

.feature-text p {
    margin: 0;
    color: #666b62;
    font-size: 14px;
    line-height: 1.8;
}

.feature-icon {
    color: #8d925f;
    font-size: 48px;
    line-height: 1;
}

/* =========================================================
   Products
   ========================================================= */

.products-section {
    background: radial-gradient(circle at 50% 0%, rgba(213, 173, 88, 0.08), transparent 420px), #fffdf8;
    padding: 10px 0 47px;
}

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

    .section-title h2 {
        display: inline-block;
        margin: 0 17px;
        color: var(--green-900);
        font-size: 34px;
        font-weight: 900;
    }

    .section-title p {
        color: #546157;
        font-size: 20px;
        margin: 8px 0 0;
    }

.decor-line {
    display: inline-block;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    vertical-align: middle;
    position: relative;
}

    .decor-line::after {
        content: "✤";
        color: var(--gold-500);
        position: absolute;
        right: 27px;
        top: -11px;
        font-size: 14px;
    }

.products-row {
    margin-top: 14px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.035);
    transition: 0.25s ease;
}

    .product-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-card);
    }

.product-image {
    height: 264px;
    background: radial-gradient(circle at 50% 50%, rgba(213, 173, 88, 0.07), transparent 190px), repeating-linear-gradient(45deg, rgba(6, 53, 34, 0.032) 0 8px, transparent 8px 16px), #fffaf2;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 10px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.35s ease;
    }

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

.product-info {
    text-align: center;
    padding: 20px 18px 22px;
}

    .product-info h3 {
        margin: 0 0 7px;
        color: #111;
        font-size: 21px;
        font-weight: 900;
    }

    .product-info p {
        color: #555;
        margin: 0 0 16px;
        font-size: 15px;
    }

.home-product-price {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: -2px 0 16px;
    min-height: 42px;
    padding: 7px 15px;
    border: 1px solid rgba(213, 173, 88, 0.55);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
    box-shadow: 0 8px 18px rgba(5, 55, 36, 0.13);
}

    .home-product-price i {
        color: var(--gold-500);
        font-size: 16px;
    }

    .home-product-price strong {
        color: #fff;
        font-size: 18px;
        font-weight: 900;
    }

    .home-product-price small {
        color: #f1d590;
        font-size: 12px;
        font-weight: 800;
    }

    .product-info a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 158px;
        height: 38px;
        border-radius: 5px;
        color: #fff;
        background: var(--green-800);
        font-size: 14px;
        font-weight: 800;
        transition: 0.25s ease;
    }

        .product-info a:hover {
            background: var(--gold-600);
            color: var(--green-950);
        }

.products-more {
    text-align: center;
    margin-top: 26px;
}

    .products-more a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #5b573c;
        border: 1px solid var(--gold-500);
        border-radius: 6px;
        background: #fffdf6;
        padding: 10px 22px;
        font-weight: 700;
        transition: 0.25s ease;
    }

        .products-more a:hover {
            background: var(--gold-500);
            color: var(--green-950);
        }

/* =========================================================
   Services Strip
   ========================================================= */

.services-strip {
    background: radial-gradient(circle at 20% 0, rgba(213, 173, 88, 0.14), transparent 300px), linear-gradient(135deg, var(--green-950), var(--green-800));
    padding: 25px 0;
    border-top: 1px solid rgba(213, 173, 88, 0.32);
    border-bottom: 1px solid rgba(213, 173, 88, 0.32);
}

.services-grid {
    direction: rtl;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 22px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
}

    .service-item i {
        color: var(--gold-500);
        font-size: 46px;
        line-height: 1;
    }

    .service-item h3 {
        margin: 0 0 7px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 900;
    }

    .service-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 14px;
        line-height: 1.7;
    }

.service-divider {
    height: 65px;
    background: rgba(213, 173, 88, 0.45);
}

/* =========================================================
   About + Why + CTA
   ========================================================= */

.info-panel-section {
    background: #fffdf8;
    padding: 30px 0 0;
}

.info-panel-box {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

/* ---------------- About ---------------- */

.info-about-row {
    background: transparent;
    padding: 0 0 22px;
}

.info-about-layout {
    direction: ltr !important;
    display: grid !important;
    grid-template-columns: 1fr 1.08fr !important;
    grid-template-areas: "image content" !important;
    align-items: center !important;
    gap: 36px !important;
}

.info-about-content {
    direction: rtl !important;
    grid-area: content !important;
    position: relative !important;
    min-height: 315px !important;
    padding-right: 118px !important;
    padding-left: 0 !important;
    text-align: right !important;
}

.long-leaf-decor {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 6px !important;
    width: 96px !important;
    height: 285px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
}

    .long-leaf-decor img {
        width: auto !important;
        max-width: 95px !important;
        max-height: 260px !important;
        object-fit: contain !important;
        opacity: 0.9 !important;
    }

.info-about-content h2 {
    margin: 0 0 12px;
    color: var(--green-900);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.35;
    text-align: right;
}

.info-about-content p {
    margin: 0 0 11px;
    color: #5b6259;
    font-size: 17px;
    line-height: 2.05;
    text-align: right;
}

.info-about-image {
    direction: rtl !important;
    grid-area: image !important;
    position: relative;
    width: 100%;
    height: 315px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e9dfc9;
    background: #eef4e8;
    box-shadow: var(--shadow-soft);
}

    .info-about-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.info-about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.info-mini-card {
    min-height: 88px;
    border: 1px solid #e9dfc9;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
}

    .info-mini-card h3 {
        margin: 0 0 5px;
        color: var(--green-900);
        font-size: 21px;
        font-weight: 900;
    }

    .info-mini-card p {
        margin: 0;
        color: #666d64;
        font-size: 14px;
        line-height: 1.8;
    }

    .info-mini-card i {
        flex: 0 0 auto;
        color: var(--green-800);
        font-size: 42px;
    }

/* ---------------- Why ---------------- */

.info-why-row {
    position: relative;
    background: transparent;
    margin-top: 26px;
    padding-top: 24px;
}

.info-why-title {
    position: absolute;
    top: 4px;
    right: 22px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fffdf8;
    padding: 0 16px;
    margin: 0;
    line-height: 1;
}

    .info-why-title h2 {
        margin: 0;
        color: var(--green-900);
        font-size: 31px;
        font-weight: 900;
        line-height: 1.2;
        white-space: nowrap;
    }

.info-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border: 1px solid #e9dfc9;
    border-radius: 14px;
    background: #fff;
}

.info-why-card {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    border-left: 1px solid #e9dfc9;
    background: #fff;
}

    .info-why-card:last-child {
        border-left: 0;
    }

    .info-why-card i {
        flex: 0 0 auto;
        color: var(--gold-700);
        font-size: 36px;
        line-height: 1;
    }

    .info-why-card h3 {
        margin: 0 0 5px;
        color: var(--green-900);
        font-size: 16px;
        font-weight: 900;
        line-height: 1.5;
    }

    .info-why-card p {
        margin: 0;
        color: #676d65;
        font-size: 13px;
        line-height: 1.6;
    }

/* =========================================================
   CTA Strip - Uses your background image
   File: assets/images/bottom-cta-bg.jpg
   ========================================================= */

.info-cta-row {
    direction: ltr;
    position: relative;
    min-height: 132px;
    display: grid;
    grid-template-columns: 1fr 180px;
    grid-template-areas: "content logo";
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    padding: 0 28px;
    overflow: hidden;
    border-radius: 0;
    background-image: url("../images/bottom-cta-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(213, 173, 88, 0.55);
    border-bottom: 1px solid rgba(213, 173, 88, 0.55);
}

    .info-cta-row::before {
        content: "";
        position: absolute;
        left: 48px;
        right: 48px;
        bottom: 10px;
        height: 2px;
        background: linear-gradient( 90deg, transparent 0%, rgba(213, 173, 88, 0.52) 10%, rgba(213, 173, 88, 0.95) 50%, rgba(213, 173, 88, 0.52) 90%, transparent 100% );
        z-index: 1;
    }

.info-cta-content {
    direction: rtl;
    grid-area: content;
    text-align: center;
    color: #fff;
    z-index: 2;
}

    .info-cta-content h2 {
        margin: 0 0 2px;
        padding: 0;
        background: transparent !important;
        box-shadow: none !important;
        color: #ffffff;
        font-size: 25px;
        font-weight: 900;
        line-height: 1.6;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }

        .info-cta-content h2 * {
            background: transparent !important;
            box-shadow: none !important;
        }

            .info-cta-content h2::selection,
            .info-cta-content h2 *::selection,
            .info-cta-content p::selection,
            .info-cta-phone::selection {
                background: rgba(213, 173, 88, 0.18) !important;
                color: #ffffff !important;
            }

    .info-cta-content p {
        margin: 0 0 10px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 15px;
        font-weight: 500;
    }

.info-cta-phone {
    direction: ltr;
    min-width: 260px;
    height: 48px;
    padding: 0 24px;
    border: 2px solid #d5ad58;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 900;
    transition: 0.25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

    .info-cta-phone i {
        color: #d5ad58;
        font-size: 21px;
    }

    .info-cta-phone:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }

.info-cta-logo {
    grid-area: logo;
    justify-self: end;
    z-index: 2;
}

    .info-cta-logo img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #d5ad58;
        box-shadow: 0 0 0 6px rgba(213, 173, 88, 0.06);
    }

/* =========================================================
   Footer
   ========================================================= */

.footer-section {
    position: relative;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(1, 29, 19, 0.98), rgba(2, 58, 38, 0.97), rgba(1, 29, 19, 0.99) );
    color: rgba(255, 255, 255, 0.92);
    border-top: none;
}

.footer-top-line {
    width: 100%;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, rgba(213, 173, 88, 0.40) 12%, rgba(213, 173, 88, 0.95) 50%, rgba(213, 173, 88, 0.40) 88%, transparent 100% );
    margin: 0 0 16px;
}

.footer-grid {
    direction: rtl;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.05fr;
    align-items: start;
    gap: 0;
    padding: 20px 0 18px;
}

.footer-about,
.footer-col,
.footer-trust {
    min-height: 208px;
    padding: 0 28px;
    border-left: 1px solid rgba(213, 173, 88, 0.22);
    text-align: right;
}

.footer-grid > *:last-child {
    border-left: none;
}

.footer-about h3,
.footer-col h3,
.footer-trust h3 {
    margin: 0 0 14px;
    color: #d5ad58;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
}

.footer-about p {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.95;
}

.footer-about strong {
    color: #d5ad58;
    font-weight: 900;
}

.footer-col ul,
.footer-contact ul,
.footer-trust ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.85;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.92);
    transition: 0.2s ease;
}

    .footer-col a:hover {
        color: #d5ad58;
    }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
}

.footer-contact i {
    color: #d5ad58;
    font-size: 18px;
    flex: 0 0 auto;
}

.footer-about-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

    .footer-about-head img {
        width: 86px;
        height: 86px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #d5ad58;
        box-shadow: 0 0 0 5px rgba(213, 173, 88, 0.06);
    }

.footer-about-text h3 {
    margin: 0 0 8px;
    color: #d5ad58;
    font-size: 20px;
    font-weight: 900;
}

.footer-about-text p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.footer-about {
    position: relative;
    padding-right: 126px;
}

    .footer-about::before {
        content: "";
        position: absolute;
        right: 28px;
        top: 0;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        background-image: url("../images/logo-diamah.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border: 2px solid #d5ad58;
        box-shadow: 0 0 0 6px rgba(213, 173, 88, 0.06);
    }

    .footer-about:has(.footer-about-head) {
        padding-right: 28px;
    }

        .footer-about:has(.footer-about-head)::before {
            display: none;
        }

.trust-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-box {
    width: 92px;
    height: 118px;
    border: 1px solid rgba(213, 173, 88, 0.50);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.25s ease;
}

    .trust-box:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(213, 173, 88, 0.78);
    }

.trust-box-enamad .enamad-e {
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
    font-family: serif;
}

.trust-box-enamad small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.trust-box-empty span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    padding: 12px 0 16px;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.74);
        font-size: 14px;
    }

/* =========================================================
   Back To Top
   ========================================================= */

.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 950;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--green-800);
    color: var(--gold-500);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: 0.25s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* =========================================================
   Animation
   ========================================================= */

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1500px) {
    .page-container {
        padding-left: 46px;
        padding-right: 46px;
    }

    .desktop-menu {
        gap: 36px;
    }

    .main-navbar {
        grid-template-columns: 270px 1fr 210px;
    }

    .brand-logo {
        width: 78px;
        height: 78px;
    }

    .brand-text strong {
        font-size: 27px;
    }

    .brand-text span {
        font-size: 16px;
    }

    .header-phone {
        padding: 12px 18px;
        font-size: 15px;
    }

    .hero-text {
        transform: translateX(-70px);
        max-width: 640px;
    }

    .hero-title-line h1 {
        font-size: 58px;
    }

    .hero-text > h2 {
        font-size: 34px;
    }

    .hero-product {
        width: 680px;
        transform: translateX(10px);
    }
}

@media (max-width: 1199px) {
    .main-navbar {
        grid-template-columns: 1fr auto;
        height: 92px;
    }

    .desktop-menu,
    .header-phone {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        justify-self: end;
        width: 50px;
        height: 50px;
        border: 1px solid var(--gold-500);
        border-radius: 9px;
        background: transparent;
        color: var(--gold-500);
        font-size: 30px;
    }

    .brand-logo {
        width: 68px;
        height: 68px;
    }

    .pattern-line {
        height: 24px;
        background-size: auto 24px;
    }

    .hero-slide,
    .hero-layout {
        height: 500px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
        transform: none;
        max-width: 760px;
    }

    .hero-title-line {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product {
        display: none;
    }

    .hero-control {
        display: none;
    }

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

    .service-divider {
        display: none;
    }

    .info-about-layout {
        direction: rtl !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "content"
            "image" !important;
        gap: 28px !important;
    }

    .info-about-content {
        padding-right: 0 !important;
        min-height: auto !important;
    }

    .long-leaf-decor {
        display: none !important;
    }

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

    .info-why-card {
        border-bottom: 1px solid #e9dfc9;
    }

    .info-cta-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "logo";
        padding: 24px 20px;
        text-align: center;
    }

        .info-cta-row::before {
            left: 24px;
            right: 24px;
        }

    .info-cta-logo,
    .info-cta-content {
        justify-self: center;
    }

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

    .footer-about,
    .footer-col,
    .footer-trust {
        min-height: auto;
        border-left: none;
        padding: 0 18px;
    }

    .footer-about {
        padding-right: 118px;
    }

        .footer-about::before {
            right: 18px;
        }

        .footer-about:has(.footer-about-head) {
            padding-right: 18px;
        }
}

@media (max-width: 991px) {
    .page-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .info-about-image {
        height: 280px;
    }

    .info-about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 105px;
    }

    .page-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .main-navbar {
        height: 82px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-text strong {
        font-size: 22px;
    }

    .brand-text span {
        font-size: 13px;
    }

    .pattern-line {
        height: 20px;
        background-size: auto 20px;
    }

    .hero-slide,
    .hero-layout {
        height: 560px;
    }

    .hero-title-line h1 {
        font-size: 48px;
    }

    .hero-title-line h2 {
        font-size: 34px;
    }

    .hero-text > h2 {
        font-size: 29px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn-gold,
    .btn-outline-white {
        width: 100%;
        min-width: auto;
    }

    .feature-section {
        padding: 28px 0;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .section-title p {
        font-size: 16px;
    }

    .decor-line {
        width: 44px;
    }

    .product-image {
        height: 245px;
    }

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

    .service-item {
        text-align: center;
    }

    .info-about-image {
        height: 230px;
    }

    .info-about-content h2 {
        text-align: center;
    }

    .info-why-row {
        margin-top: 24px;
        padding-top: 22px;
    }

    .info-why-title {
        right: 18px;
        top: 4px;
        padding: 0 12px;
    }

        .info-why-title h2 {
            font-size: 24px;
        }

    .info-why-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .info-why-card {
        border-left: 0;
    }

    .info-cta-content h2 {
        font-size: 20px;
    }

    .info-cta-content p {
        font-size: 14px;
    }

    .info-cta-phone {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        font-size: 18px;
    }

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

    .footer-about,
    .footer-col,
    .footer-trust {
        padding: 0 12px;
    }

    .footer-about {
        padding-right: 104px;
    }

        .footer-about::before {
            right: 12px;
            width: 76px;
            height: 76px;
        }

        .footer-about:has(.footer-about-head) {
            padding-right: 12px;
        }

    .footer-about-head {
        align-items: center;
    }

    .trust-row {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-slide,
    .hero-layout {
        height: 590px;
    }

    .product-image {
        height: 220px;
    }

    .footer-about-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   FINAL CTA BACKGROUND FIX
   background image name: bottom-cta-bg.jpg
   ========================================================= */

.info-cta-row {
    direction: ltr !important;
    position: relative !important;
    min-height: 142px !important;
    display: grid !important;
    grid-template-columns: 1fr 180px !important;
    grid-template-areas: "content logo" !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 10px !important;
    padding: 0 34px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background-image: url("../images/bottom-cta-bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
    border-top: 1px solid rgba(213, 173, 88, 0.55) !important;
    border-bottom: 1px solid rgba(213, 173, 88, 0.55) !important;
}

    /* چون خود عکس خط طلایی دارد، خط اضافه CSS حذف شود */
    .info-cta-row::before {
        display: none !important;
    }

/* متن وسط */
.info-cta-content {
    direction: rtl !important;
    grid-area: content !important;
    text-align: center !important;
    color: #ffffff !important;
    z-index: 2 !important;
}

    .info-cta-content h2 {
        margin: 0 0 4px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: #ffffff !important;
        font-size: 25px !important;
        font-weight: 900 !important;
        line-height: 1.55 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    }

        .info-cta-content h2 * {
            background: transparent !important;
            box-shadow: none !important;
        }

    .info-cta-content p {
        margin: 0 0 10px !important;
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }

/* دکمه شماره تماس */
.info-cta-phone {
    direction: ltr !important;
    min-width: 260px !important;
    height: 48px !important;
    padding: 0 24px !important;
    border: 2px solid #d5ad58 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12) !important;
}

    .info-cta-phone i {
        color: #d5ad58 !important;
        font-size: 21px !important;
    }

/* لوگو سمت راست */
.info-cta-logo {
    grid-area: logo !important;
    justify-self: end !important;
    z-index: 2 !important;
}

    .info-cta-logo img {
        width: 100px !important;
        height: 100px !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        border: 2px solid #d5ad58 !important;
        box-shadow: 0 0 0 6px rgba(213, 173, 88, 0.06) !important;
    }

/* =========================================================
   Footer closer to reference
   ========================================================= */

.footer-section {
    margin-top: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-top: none !important;
    background: radial-gradient(circle at 12% 20%, rgba(19, 92, 63, 0.35), transparent 280px), radial-gradient(circle at 88% 15%, rgba(19, 92, 63, 0.28), transparent 260px), linear-gradient(135deg, #012016 0%, #033624 48%, #012016 100%) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

/* خط بالای فوتر */
.footer-top-line {
    width: calc(100% - 100px) !important;
    height: 2px !important;
    margin: 0 auto 22px !important;
    background: linear-gradient( 90deg, transparent 0%, rgba(213, 173, 88, 0.45) 12%, rgba(213, 173, 88, 0.95) 50%, rgba(213, 173, 88, 0.45) 88%, transparent 100% ) !important;
}

.footer-grid {
    direction: rtl !important;
    display: grid !important;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.05fr !important;
    align-items: start !important;
    gap: 0 !important;
    padding: 0 0 24px !important;
}

.footer-about,
.footer-col,
.footer-trust {
    min-height: 210px !important;
    padding: 0 28px !important;
    border-left: 1px solid rgba(213, 173, 88, 0.24) !important;
    text-align: right !important;
}

.footer-grid > *:last-child {
    border-left: none !important;
}

.footer-about h3,
.footer-col h3,
.footer-trust h3 {
    margin: 0 0 16px !important;
    color: #d5ad58 !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.55 !important;
}

.footer-about p,
.footer-col li,
.footer-contact li {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}

.footer-about strong,
.footer-contact i,
.footer-col i {
    color: #d5ad58 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    text-align: center !important;
    padding: 12px 0 16px !important;
}

    .footer-bottom p {
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.74) !important;
        font-size: 14px !important;
    }
/* =========================================================
   FINAL SMALL FIXES
   CTA full width + logo position + remove footer logo
   ========================================================= */

/* نوار سبز CTA از چپ و راست به لبه‌های کادر اصلی بچسبد */
.info-cta-row {
    width: calc(100% + 152px) !important;
    margin-left: -76px !important;
    margin-right: -76px !important;
    margin-top: 10px !important;
    grid-template-columns: 1fr 180px !important;
    grid-template-areas: "content logo" !important;
    background-image: url("../images/bottom-cta-bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
}

/* لوگوی داخل CTA بیاید نزدیک‌تر به متن، نه چسبیده به گوشه راست */
.info-cta-logo {
    grid-area: logo !important;
    justify-self: start !important;
    align-self: center !important;
    z-index: 2 !important;
    transform: translateX(-18px) !important;
}

    .info-cta-logo img {
        width: 100px !important;
        height: 100px !important;
    }

/* لوگوی اضافه داخل فوتر حذف شود */
.footer-about::before {
    display: none !important;
}

.footer-about {
    padding-right: 28px !important;
}

    /* اگر لوگو داخل HTML فوتر هم وجود دارد، حذف شود */
    .footer-about-head img,
    .footer-about .brand-logo,
    .footer-about > img {
        display: none !important;
    }

.footer-about-head {
    gap: 0 !important;
}

/* تنظیم فاصله متن فوتر بعد از حذف لوگو */
.footer-about-text,
.footer-about-body {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* در عرض‌های متوسط، چون padding صفحه کمتر می‌شود، CTA هم متناسب شود */
@media (max-width: 1500px) {
    .info-cta-row {
        width: calc(100% + 92px) !important;
        margin-left: -46px !important;
        margin-right: -46px !important;
    }
}

@media (max-width: 991px) {
    .info-cta-row {
        width: calc(100% + 56px) !important;
        margin-left: -28px !important;
        margin-right: -28px !important;
    }
}

@media (max-width: 767px) {
    .info-cta-row {
        width: calc(100% + 36px) !important;
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .info-cta-logo {
        justify-self: center !important;
        transform: none !important;
    }
}
/* =========================================================
   FINAL RESPONSIVE FIX - CTA + FOOTER
   Put this at the VERY END of style.css
   ========================================================= */

/* جلوگیری از اسکرول افقی در موبایل */
html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

/* ---------------------------------------------------------
   CTA - tablet and mobile
   --------------------------------------------------------- */

@media (max-width: 991px) {
    .info-cta-row {
        width: calc(100% + 56px) !important;
        margin-left: -28px !important;
        margin-right: -28px !important;
        margin-top: 10px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 28px 22px 18px !important;
        gap: 14px !important;
        background-image: url("../images/bottom-cta-bg.jpg") !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
        border-top: 1px solid rgba(213, 173, 88, 0.55) !important;
        border-bottom: 1px solid rgba(213, 173, 88, 0.55) !important;
    }

        .info-cta-row::before {
            display: none !important;
        }

    .info-cta-content {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
        text-align: center !important;
        direction: rtl !important;
        padding: 0 !important;
    }

        .info-cta-content h2 {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 0 8px !important;
            padding: 0 !important;
            font-size: 22px !important;
            line-height: 1.8 !important;
            text-align: center !important;
            white-space: normal !important;
            word-break: normal !important;
            background: transparent !important;
            color: #ffffff !important;
        }

        .info-cta-content p {
            margin: 0 0 12px !important;
            font-size: 14px !important;
            line-height: 1.8 !important;
            text-align: center !important;
            color: rgba(255, 255, 255, 0.9) !important;
        }

    .info-cta-phone {
        width: 100% !important;
        max-width: 280px !important;
        min-width: auto !important;
        height: 46px !important;
        font-size: 18px !important;
        margin: 0 auto !important;
    }

    .info-cta-logo {
        order: 2 !important;
        align-self: center !important;
        justify-self: center !important;
        transform: none !important;
        margin: 0 !important;
    }

        .info-cta-logo img {
            width: 82px !important;
            height: 82px !important;
        }
}

/* ---------------------------------------------------------
   CTA - small mobile
   --------------------------------------------------------- */

@media (max-width: 767px) {
    .info-cta-row {
        width: calc(100% + 36px) !important;
        margin-left: -18px !important;
        margin-right: -18px !important;
        padding: 24px 16px 16px !important;
        gap: 12px !important;
    }

    .info-cta-content h2 {
        font-size: 19px !important;
        line-height: 1.85 !important;
    }

    .info-cta-content p {
        font-size: 13px !important;
    }

    .info-cta-logo img {
        width: 74px !important;
        height: 74px !important;
    }
}

/* ---------------------------------------------------------
   Footer - tablet and mobile
   --------------------------------------------------------- */

@media (max-width: 991px) {
    .footer-section {
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        background: radial-gradient(circle at 50% 0%, rgba(19, 92, 63, 0.22), transparent 260px), linear-gradient(135deg, #012016 0%, #033624 48%, #012016 100%) !important;
    }

    .footer-top-line {
        width: calc(100% - 36px) !important;
        margin: 0 auto 22px !important;
    }

    .footer-grid {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 26px !important;
        padding: 28px 18px 22px !important;
        direction: rtl !important;
    }

    .footer-about,
    .footer-col,
    .footer-trust {
        width: 100% !important;
        min-height: auto !important;
        padding: 0 !important;
        border-left: none !important;
        text-align: center !important;
    }

        .footer-about::before {
            display: none !important;
        }

        .footer-about-head img,
        .footer-about > img,
        .footer-about .brand-logo {
            display: none !important;
        }

        .footer-about h3,
        .footer-col h3,
        .footer-trust h3 {
            text-align: center !important;
            font-size: 20px !important;
            margin-bottom: 12px !important;
        }

        .footer-about p,
        .footer-col li,
        .footer-contact li {
            text-align: center !important;
            font-size: 14px !important;
            line-height: 2 !important;
        }

        .footer-col ul,
        .footer-contact ul {
            padding: 0 !important;
            margin: 0 !important;
        }

    .footer-contact li {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .trust-row {
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .trust-box {
        width: 88px !important;
        height: 112px !important;
    }

    .footer-bottom {
        padding: 12px 16px 16px !important;
    }

        .footer-bottom p {
            font-size: 13px !important;
            line-height: 1.9 !important;
        }
}

/* ---------------------------------------------------------
   Footer - very small mobile
   --------------------------------------------------------- */

@media (max-width: 480px) {
    .footer-grid {
        padding: 24px 14px 20px !important;
        gap: 24px !important;
    }

    .footer-about h3,
    .footer-col h3,
    .footer-trust h3 {
        font-size: 18px !important;
    }

    .footer-about p,
    .footer-col li,
    .footer-contact li {
        font-size: 13px !important;
    }

    .trust-box {
        width: 82px !important;
        height: 106px !important;
    }
}
/* =========================================================
   FINAL MOBILE PRODUCT CARD FIX
   Fix product image/info overlap on mobile
   Put this at the VERY END of style.css
   ========================================================= */

@media (max-width: 767px) {
    .products-section {
        padding: 28px 0 38px !important;
    }

    .products-row {
        row-gap: 26px !important;
    }

    .product-card {
        border-radius: 12px !important;
        overflow: hidden !important;
        background: #ffffff !important;
    }

    .product-image {
        height: 330px !important;
        padding: 22px 18px 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        background: radial-gradient(circle at 50% 50%, rgba(213, 173, 88, 0.08), transparent 190px), repeating-linear-gradient(45deg, rgba(6, 53, 34, 0.03) 0 8px, transparent 8px 16px), #fffaf2 !important;
    }

        .product-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center bottom !important;
        }

    .product-info {
        position: relative !important;
        z-index: 3 !important;
        background: #ffffff !important;
        padding: 22px 18px 24px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(233, 223, 201, 0.85) !important;
        text-align: center !important;
    }

        .product-info h3 {
            margin: 0 0 8px !important;
            font-size: 22px !important;
            line-height: 1.5 !important;
        }

        .product-info p {
            margin: 0 0 18px !important;
            font-size: 15px !important;
            line-height: 1.8 !important;
        }

        .product-info a {
            min-width: 150px !important;
            height: 42px !important;
            border-radius: 6px !important;
        }
}

@media (max-width: 480px) {
    .product-image {
        height: 310px !important;
        padding: 20px 14px 10px !important;
    }

    .product-info {
        padding: 20px 16px 22px !important;
    }
}

@media (max-width: 390px) {
    .product-image {
        height: 290px !important;
    }
}
/* =========================================================
   FINAL PRODUCT MOBILE IMAGE FIX
   حذف حاشیه هاشورخورده و پر شدن عکس محصول داخل کادر
   ========================================================= */

@media (max-width: 767px) {
    .product-card {
        overflow: hidden !important;
        border-radius: 12px !important;
        background: #ffffff !important;
    }

    .product-image {
        height: 315px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: #fffaf2 !important;
        display: block !important;
    }

        .product-image img {
            width: 100% !important;
            height: 100% !important;
            display: block !important;
            object-fit: cover !important;
            object-position: center center !important;
        }

    .product-info {
        margin-top: 0 !important;
        border-top: none !important;
        background: #ffffff !important;
        padding: 24px 18px 26px !important;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 300px !important;
    }
}

@media (max-width: 390px) {
    .product-image {
        height: 285px !important;
    }
}
/* =========================================================
   FINAL MENU ACTIVE STYLE FIX
   ========================================================= */

.site-header .desktop-menu a.active {
    color: #d5ad58 !important;
    font-weight: 800 !important;
}

    .site-header .desktop-menu a.active::after {
        content: "" !important;
        position: absolute !important;
        right: 50% !important;
        bottom: 21px !important;
        width: 62px !important;
        height: 2px !important;
        transform: translateX(50%) !important;
        background: #d5ad58 !important;
        display: block !important;
    }

.mobile-menu a.active {
    color: #d5ad58 !important;
    background: rgba(213, 173, 88, 0.12);
}

.django-messages {
    position: fixed;
    top: 118px;
    left: 24px;
    z-index: 9999;
    width: min(420px, calc(100% - 48px));
}

.django-message {
    margin-bottom: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff;
    color: #053421;
    border-right: 4px solid #d5ad58;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
}

.django-message.success { border-right-color: #16865b; }
.django-message.error { border-right-color: #b83232; }
.django-message.is-hiding { opacity: 0; transform: translateY(-10px); }
.django-message-close { border: 0; background: transparent; color: inherit; cursor: pointer; padding: 4px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.site-header .desktop-menu { gap: 25px; }
.header-cart-link {
    position: relative; width: 48px; height: 48px; display: inline-grid; place-items: center;
    border: 1px solid rgba(213,173,88,.65); border-radius: 12px; color: #d5ad58; font-size: 21px;
}
.header-cart-link span {
    position: absolute; top: -7px; left: -7px; min-width: 22px; height: 22px; padding: 0 5px;
    display: grid; place-items: center; border-radius: 999px; background: #d5ad58; color: #032719; font-size: 11px; font-weight: 900;
}
.header-logout-form { margin: 0; }
.header-logout-form button {
    border: 0; background: transparent; color: #fff; font: inherit; font-weight: 500; cursor: pointer; padding: 42px 0;
}
.header-logout-form button:hover { color: #d5ad58; }
@media (max-width: 1199px) { .header-actions { display: none; } .header-logout-form button { padding: 10px 0; } }

.mobile-menu a.active {
    color: #d5ad58 !important;
    font-weight: 900 !important;
    padding-right: 12px !important;
    border-right: 3px solid #d5ad58 !important;
}
/* =========================================================
   HOME PRODUCTS SLIDER
   Add this at the END of css/style.css
   ========================================================= */

.home-products-slider {
    position: relative;
    margin-top: 20px;
    direction: ltr;
}

.home-products-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 0 10px;
}

.home-products-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-product-slide {
    flex: 0 0 calc((100% - 84px) / 4);
    min-width: 0;
    direction: rtl;
}

    .home-product-slide .product-card {
        height: 100%;
    }

    .home-product-slide .products-page-card {
        height: 100%;
    }

.home-product-arrow {
    position: absolute;
    top: 43%;
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(213, 173, 88, 0.65);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.94);
    color: var(--green-900);
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(4, 53, 35, 0.12);
    transition: 0.25s ease;
}

    .home-product-arrow:hover {
        background: var(--green-800);
        color: #ffffff;
        border-color: var(--green-800);
    }

.home-product-arrow-prev {
    right: -24px;
}

.home-product-arrow-next {
    left: -24px;
}

.home-product-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f3eee2;
    color: #888;
}

.home-products-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
}

    .home-products-dots button {
        width: 9px;
        height: 9px;
        border: 1px solid var(--gold-500);
        border-radius: 50%;
        background: transparent;
        padding: 0;
        transition: 0.25s ease;
    }

        .home-products-dots button.active {
            width: 26px;
            border-radius: 999px;
            background: var(--gold-500);
        }

/* دسکتاپ متوسط: 3 محصول */
@media (max-width: 1199px) {
    .home-products-track {
        gap: 22px;
    }

    .home-product-slide {
        flex: 0 0 calc((100% - 44px) / 3);
    }

    .home-product-arrow-prev {
        right: -14px;
    }

    .home-product-arrow-next {
        left: -14px;
    }
}

/* تبلت: 2 محصول */
@media (max-width: 991px) {
    .home-product-slide {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .home-product-arrow {
        top: 42%;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* موبایل: 1 محصول */
@media (max-width: 767px) {
    .home-products-slider {
        margin-top: 10px;
    }

    .home-products-track {
        gap: 0;
    }

    .home-product-slide {
        flex: 0 0 100%;
        padding: 0 2px;
    }

    .home-product-arrow {
        width: 42px;
        height: 42px;
        top: 39%;
        background: rgba(255, 253, 248, 0.96);
    }

    .home-product-arrow-prev {
        right: 6px;
    }

    .home-product-arrow-next {
        left: 6px;
    }

    .home-products-dots {
        margin-top: 14px;
    }

        .home-products-dots button {
            width: 8px;
            height: 8px;
        }

            .home-products-dots button.active {
                width: 22px;
            }
}
