/* General */
        .footer {
            background: linear-gradient(180deg, #FBF9FE 0%, #F3E5F5 100%);
            padding: 60px 0 30px;
            font-family: 'Vazirmatn', sans-serif;
            border-top: 3px solid var(--brand-color);
        }

        .footer-top {
            padding-bottom: 40px;
        }

        .footer-center {
            text-align: center;
        }

        .footer-about .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-color);
            margin-bottom: 15px;
        }
        .footer-about .footer-description {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            max-width: 300px;
            margin: 0 auto;
        }

        .footer-links h4, .footer-contact h4, .footer-support h4 {
            color: var(--brand-color);
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

       .footer-links h4:after, .footer-contact h4:after, .footer-support h4:after {
            content: '';
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-accent); /* خط طلایی */
        }

        .footer-links ul, .footer-contact ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li, .footer-contact li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-links a, .footer-contact a {
            color: #666;
            transition: all 0.3s ease;
            font-size: 15px;
            text-decoration: none;
        }

        .footer-links a:hover, .footer-contact a:hover {
            color: var(--brand-color);
            padding-right: 5px;
        }

        .footer-links i, .footer-contact i {
            color: var(--brand-color);
            margin-left: 8px;
            font-size: 16px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            color: var(--brand-color);
            background: #fff;
            box-shadow: 0 4px 10px rgba(86, 3, 173, 0.1);
        }

        .social-links a:hover {
            color: #fff;
            background: var(--brand-color);
            transform: scale(1.2);
        }

        .copyright {
            border-top: 1px solid #ddd;
            padding-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .designed-by {
            font-size: 13px;
            color: #888;
            margin-top: 5px;
        }

        .designed-by i {
            font-size: 14px;
        }

        /* Hero Section */
        .hero-image {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .hero .row {
                flex-direction: column-reverse;
            }

            .hero-image {
                order: -1;
                margin-bottom: 20px;
            }

            .hero-content {
                text-align: center;
                margin-bottom: 30px;
            }

            .hero-buttons {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
                margin: 5px 0;
            }

            .compact-hero {
                padding-top: 15px !important;
                padding-bottom: 15px !important;
            }

            .compact-hero-image {
                margin-top: 10px;
                margin-bottom: 10px;
            }
        }

        /* About Saffron Section */
        .about-saffron {
            background-color: var(--bg-light);
            padding: 60px 0;
            border-radius: 15px;
            margin: 30px 0;
        }

        .about-saffron .section-title h2 {
            color: var(--brand-color);
        }

        .saffron-types {
            margin-top: 30px;
        }

        .saffron-type-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .saffron-type-card:hover {
            transform: translateY(-5px);
        }

        .saffron-type-card h4 {
            color: var(--brand-color);
            border-bottom: 2px solid #E9D8FD; /* مرز بنفش کمرنگ */
            padding-bottom: 10px;
        }

        .authentic-tips {
            background: #fff;
            border: 1px solid #E9D8FD;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
        }

        .authentic-tips h3 {
            color: var(--brand-color);
            margin-bottom: 20px;
        }

        .authentic-tips ul {
            list-style-type: none;
            padding: 0;
        }

        .authentic-tips li {
            padding: 10px 0;
            border-bottom: 1px dashed #ffcccc;
        }

        .authentic-tips li:last-child {
            border-bottom: none;
        }

        .authentic-tips li i {
            color: var(--gold-accent); /* آیکون‌های طلایی */
            margin-left: 10px;
        }

        /* Bulk Order Section */
        .bulk-order {
            background-color: #F3E5F5;
            padding: 60px 0;
            border-radius: 15px;
            margin: 30px 0;
        }

        .bulk-order .section-title h2 {
            color: var(--brand-color);
        }

        .bulk-order-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .bulk-order-content h3 {
            color: var(--brand-color);
            margin-bottom: 20px;
        }
        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list i {
            color: var(--brand-color);
        }

        .request-form {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #E9D8FD;
            border: 2px dashed var(--brand-color);
        }

        .btn-success {
            background-color: #25D366;
            border-color: #25D366;
        }

        .btn-success:hover {
            background-color: #128C7E;
            border-color: #128C7E;
        }

        /* Professional Saffron Section */
        .pro-saffron {
            background: linear-gradient(135deg, #fff 0%, #FBF9FE 100%);
            padding: 80px 0;
        }

        .pro-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.08);
            border: 1px solid #E9D8FD;
            transition: transform 0.3s;
        }

        .request-box {
            max-width: 600px;
            margin: 0 auto;
        }

        .request-form {
            border: 2px dashed #a11212;
        }

        /* Stats Section */
        .simple-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 15px 0;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 0 0 45%;
            max-width: 45%;
            gap: 10px;
            padding: 10px;
        }

        .stat-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--brand-color);
            box-shadow: 0 5px 15px rgba(86, 3, 173, 0.15);
            border: 1px solid #E9D8FD;
        }

        .stat-text h5 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #333;
        }

        .stat-text p {
            font-size: 14px;
            color: #666;
        }

        @media (min-width: 992px) {
            .simple-stats {
                justify-content: space-around;
            }

            .stat-item {
                flex-direction: row;
                flex: 0 0 22%;
                max-width: 22%;
                text-align: right;
                align-items: center;
                justify-content: flex-start;
            }

            .stat-icon-circle {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }

        @media (max-width: 991px) {
            .stat-item {
                flex: 0 0 45%;
                max-width: 45%;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .stat-icon-circle {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .stat-item {
                flex: 0 0 90%;
                max-width: 90%;
            }
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Trust Support */
        .trust-support {
            background: #fff9f9;
            border-radius: 10px;
            padding: 20px;
            border-right: 4px solid #25D366;
            transition: all 0.3s ease;
        }

        .trust-support:hover {
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
            transform: translateY(-3px);
        }

        .trust-support h4 {
            color: #25D366;
            font-size: 16px;
        }

        .trust-support p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .trust-badge {
            max-width: 100px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .trust-badge:hover {
            transform: scale(1.05);
        }

        /* Products Section */
        .products {
            padding: 40px 0;
            background-color: #fff;
        }

        .studio-products-banner {
            background: linear-gradient(90deg, #fffaf4 0%, #fffefc 100%);
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .studio-products-banner-inner {
            max-width: 1100px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .studio-products-banner-inner h3 {
            margin: 0;
            font-size: 20px;
            color: #3a2b11;
            font-weight: 800;
        }

        .studio-products-banner-inner p {
            margin: 0;
            color: #6b6b6b;
            font-size: 14px;
        }

        .studio-banner-cta {
            background: #e6d09a;
            color: #2d2d2d;
            padding: 10px 14px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 8px 18px rgba(230, 208, 154, 0.12);
        }

        .studio-card {
            background: #fff;
            border-radius: 18px;
            overflow: visible;
            box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
            transition: transform .28s ease, box-shadow .28s ease;
            position: relative;
            padding: 18px;
            height: 100%;
            display: flex;
            align-items: stretch;
            flex-direction: column;
        }

        .studio-card.center-highlight {
            border: 4px solid #e9c77a;
            box-shadow: 0 20px 40px rgba(233, 199, 122, 0.18);
            transform: translateY(-8px);
        }

        .studio-badge {
            position: absolute;
            top: 12px;
            padding: 6px 10px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 12px;
            color: #fff;
            z-index: 5;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        }

        .studio-badge.sale {
            left: 12px;
            background: #c85a2e;
        }

        .studio-badge.new {
            right: 12px;
            background: #7aa76b;
        }

        .studio-card-inner {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }

        .studio-image-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .studio-image {
            background: linear-gradient(180deg, #fbf9f5 0%, #fff 100%);
            border-radius: 12px;
            padding: 18px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.02);
        }

        .studio-image img {
            max-width: 86%;
            max-height: 100%;
            object-fit: contain;
            transition: transform .35s ease;
        }

        .studio-card:hover .studio-image img {
            transform: scale(1.03);
        }

        .studio-body {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 6px;
            text-align: center;
        }

        .studio-title {
            font-size: 15px;
            font-weight: 700;
            color: #222;
            margin: 0;
            line-height: 1.2;
        }

        .studio-sub {
            font-size: 13px;
            color: #7d7d7d;
            margin: 0 6px 0;
            height: 36px;
            overflow: hidden;
        }

        .studio-price-row {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        .price-new {
            font-weight: 800;
            color: #3a2b11;
            font-size: 16px;
        }

        .price-old {
            font-size: 13px;
            color: #a7a7a7;
            text-decoration: line-through;
            margin-right: 6px;
        }

        .btn-studio-view {
            background: #f7e9cf;
            border: 1px solid #e6d0a2;
            padding: 8px 12px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            min-width: 96px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: transform .12s ease, box-shadow .12s ease;
            color: #2d2d2d;
        }

        .btn-studio-view:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
        }

        @media (min-width: 1200px) {
            .studio-card {
                padding: 28px;
                border-radius: 22px;
            }

            .studio-image {
                height: 240px;
                padding: 22px;
            }

            .studio-title {
                font-size: 17px;
            }

            .price-new {
                font-size: 18px;
            }

            .col-lg-3 {
                max-width: 25%;
            }
        }

        @media (max-width: 991px) {
            .studio-card {
                border-radius: 16px;
                padding: 14px;
                box-shadow: 0 8px 20px rgba(10, 10, 10, 0.04);
                margin: 10px auto;
            }

            .studio-image {
                height: 150px;
                padding: 14px;
            }

            .studio-title {
                font-size: 14px;
            }

            .studio-sub {
                display: none;
            }

            .studio-price-row {
                flex-direction: row;
                gap: 8px;
                align-items: center;
                justify-content: space-between;
            }

            .btn-studio-view {
                min-width: 88px;
                padding: 8px 10px;
                border-radius: 10px;
            }

            .products .container {
                padding-left: 10px;
                padding-right: 10px;
            }

            .studio-products-banner-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                text-align: left;
                padding: 8px;
            }
        }

        @media (max-width: 420px) {
            .col-10 {
                max-width: 95%;
            }

            .studio-image {
                height: 130px;
            }

            .studio-card.center-highlight {
                border-width: 3px;
            }
        }

        /* Mobile Bottom Nav - Updated for a luxurious look */
        @media (max-width: 991px) {
            .mobile-bottom-nav {
                position: fixed;
                bottom: 15px; /* کمی از پایین فاصله می‌گیرد تا شناور به نظر برسد */
                left: 50%;
                transform: translateX(-50%); /* نوار را دقیقاً در وسط قرار می‌دهد */
                width: 95%; /* عرض نوار کمتر از ۱۰۰٪ می‌شود */
                max-width: 420px; /* برای دستگاه‌های تبلت کوچک و بزرگتر از موبایل */
                height: 60px;
                background: rgba(255, 255, 255, 0.9); /* رنگ سفید با کمی شفافیت */
                backdrop-filter: blur(10px); /* افکت مات‌شدگی برای پس‌زمینه (مثل iOS) */
                border-radius: 30px; /* کاملاً گرد می‌شود */
                border: 1px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* سایه لوکس و ملایم */
                display: flex;
                justify-content: space-around;
                align-items: center;
                z-index: 9999;
                padding: 0 10px;
            }

            .mobile-bottom-nav .nav-item {
                flex: 1;
                text-align: center;
                color: #777; /* رنگ خاکستری برای آیکون‌های غیرفعال */
                font-size: 11px;
                text-decoration: none;
                transition: all 0.3s ease;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding-top: 5px;
            }

            .mobile-bottom-nav .nav-item i {
                font-size: 20px; /* سایز آیکون کمی بزرگتر می‌شود */
                display: block;
                margin-bottom: 2px;
                transition: transform 0.3s ease, color 0.3s ease;
            }

            .mobile-bottom-nav .nav-item.active {
                color: #a11212; /* رنگ اصلی سایت برای آیتم فعال */
                font-weight: bold;
            }

            .mobile-bottom-nav .nav-item.active i {
                color: #a11212; /* رنگ اصلی سایت برای آیکون فعال */
                transform: translateY(-5px); /* آیکون فعال کمی بالا می‌آید */
            }

            .mobile-bottom-nav .nav-item:hover {
                color: #d32f2f;
            }

            .mobile-bottom-nav .nav-item:hover i {
                transform: translateY(-5px);
                color: #d32f2f;
            }

        }

        /* Responsive Footer */
        @media (max-width: 991px) {
            .footer-top .row {
                text-align: center;
            }

            .footer-about, .footer-links, .footer-contact, .footer-support {
                margin-bottom: 30px;
            }

            .footer-links li, .footer-contact li {
                justify-content: center;
            }

            .trust-badges {
                flex-wrap: wrap;
                gap: 15px;
            }

            .trust-badge {
                max-width: 80px;
            }
        }

        @media (max-width: 576px) {
            .footer-about .logo {
                font-size: 24px;
            }

            .footer-about .footer-description {
                font-size: 14px;
            }

            .footer-links h4, .footer-contact h4, .footer-support h4 {
                font-size: 16px;
            }

            .footer-links a, .footer-contact a {
                font-size: 14px;
            }

            .social-links a {
                font-size: 18px;
            }

            .trust-badge {
                max-width: 70px;
            }
        }

        /* دکمه شناور پشتیبانی */
        .support-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }

        .support-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #a11212;
            color: #FFF;
            font-size: 28px;
            box-shadow: 0 5px 20px rgba(161, 18, 18, 0.4);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .support-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 25px rgba(161, 18, 18, 0.5);
        }

        /* پاپ‌آپ راه‌های ارتباطی */
        .support-popup {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 300px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: scale(0.95);
            visibility: hidden;
            transition: all 0.3s ease-out;
            z-index: 999;
            font-family: 'Vazirmatn', sans-serif;
        }

        .support-popup.show {
            opacity: 1;
            transform: scale(1);
            visibility: visible;
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            background-color: #f8f8f8;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .popup-header h4 {
            margin: 0;
            font-size: 16px;
            color: #333;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .close-button:hover {
            color: #a11212;
        }

        .popup-body {
            padding: 10px;
        }

        .contact-option {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .contact-option:hover {
            background-color: #fff5f5;
            transform: translateX(-5px);
        }

        .option-icon {
            width: 40px;
            height: 40px;
            background-color: #fcebeb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #a11212;
            margin-left: 15px;
        }

        .option-icon.whatsapp {
            background-color: #dcf8c6;
            color: #25D366;
        }

        .option-icon.email {
            background-color: #f0f8ff;
            color: #4a90e2;
        }

        .option-text h5 {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
        }

        .option-text p {
            margin: 0;
            font-size: 12px;
            color: #666;
        }

        @media (max-width: 576px) {
            .support-float {
                bottom: 80px; /* برای اینکه بالای نوار ناوبری موبایل قرار گیرد */
                left: 20px;
            }

            .support-popup {
                bottom: 150px; /* بالای دکمه شناور قرار گیرد */
                left: 20px;
                width: 280px;
            }
        }

        /*هدر*/

        /* --- New Mobile Menu Styles --- */
        .header .mobile-nav-toggle {
            color: #c75233;
            line-height: 0;
            cursor: pointer;
            margin-left: 20px;
            background: none;
            border: none;
            padding: 0;
            z-index: 9999;
            position: relative;
        }

        .hamburger-icon {
            width: 25px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger-icon span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #c75233;
            border-radius: 2px;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }

        .offcanvas-menu {
            position: fixed;
            top: 0;
            left: -300px; /* Initially hidden */
            width: 280px;
            max-width: 80%;
            height: 100%;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 9998;
            display: flex;
            flex-direction: column;
        }

        .offcanvas-menu.show {
            left: 0;
        }

        .offcanvas-menu .menu-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }

        .offcanvas-menu .menu-close-btn {
            font-size: 24px;
            color: #c75233;
            background: none;
            border: none;
            cursor: pointer;
        }

        .offcanvas-menu .logo h1 {
            font-size: 24px;
        }

        .offcanvas-menu .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-menu .nav-list li {
            padding: 12px 0;
        }

        .offcanvas-menu .nav-list a {
            display: flex;
            align-items: center;
            font-size: 16px;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, padding-right 0.3s ease;
        }

        .offcanvas-menu .nav-list a:hover {
            color: #c75233;
            padding-right: 5px;
        }

        .offcanvas-menu .nav-list a.active {
            color: #c75233;
            font-weight: 700;
        }

        .offcanvas-menu .nav-list a i {
            font-size: 20px;
            margin-left: 15px;
            color: #ff6f61;
        }

        .offcanvas-menu .nav-list .btn-login {
            margin-top: 10px;
            padding: 10px 15px;
            border-radius: 50px;
            text-align: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list .btn-login:hover {
            background-color: var(--brand-color);
            color: #fff;
        }

        .offcanvas-menu .nav-list .btn-login i {
            color: #c75233;
        }

        .offcanvas-menu .nav-list .btn-login:hover i {
            color: #fff;
        }

        /* Overlay for background */
        .offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9997;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease;
        }

        .offcanvas-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /*فوتر*/
        /* General Footer Styles */
        .modern-luxury-footer {
            background-color: #FBF9FE;
            color: #333;
            font-family: 'Vazirmatn', sans-serif;
            padding-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .modern-luxury-footer::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--brand-color);
        }

        .modern-luxury-footer .footer-divider {
            height: 1px;
            background-color: #e6e6e6;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        /* Logo and Info Section */
        .modern-luxury-footer .logo-link {
            text-decoration: none;
            display: inline-block;
        }

        .modern-luxury-footer .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--brand-color);
            transition: transform 0.3s ease-in-out;
        }

        .modern-luxury-footer .logo-link:hover .logo-text {
            transform: scale(1.05);
        }

        .modern-luxury-footer .footer-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            max-width: 350px;
        }

        /* Social Buttons */
        .modern-luxury-footer .social-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background-color: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-size: 18px;
            margin: 0 5px;
            color: var(--brand-color);
            border-color: #E9D8FD;
        }

        .modern-luxury-footer .social-btn:hover {
            background-color: var(--brand-color);
            color: #fff;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Link Sections */
        .modern-luxury-footer .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-color);
            position: relative;
            margin-bottom: 15px;
        }

        .modern-luxury-footer .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .modern-luxury-footer .footer-links-list li {
            padding: 6px 0;
        }

        .modern-luxury-footer .footer-links-list a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
            position: relative;
            padding-right: 15px;
        }

        .modern-luxury-footer .footer-links-list a::before {
            content: '\2039'; /* A left-pointing single angle quotation mark */
            position: absolute;
            right: 0;
            color: var(--gold-accent);
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .modern-luxury-footer .footer-links-list a:hover {
            color: var(--brand-color);
            padding-right: 20px;
        }

        .modern-luxury-footer .footer-links-list a:hover::before {
            right: -5px;
        }

        /* Contact Info Section */
        .modern-luxury-footer .footer-contact-info p {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 5px;
        }

        .modern-luxury-footer .footer-contact-info a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .modern-luxury-footer .footer-contact-info a:hover {
            color: #a11212;
        }

        /* Copyright Section */
        .modern-luxury-footer .copyright-text {
            font-size: 13px;
            color: #888;
            margin-bottom: 0;
        }

        /* Mobile-Specific Styles */
        @media (max-width: 991.98px) {
            .modern-luxury-footer {
                padding-top: 40px;
            }

            .modern-luxury-footer .footer-info {
                margin-bottom: 30px;
            }

            .modern-luxury-footer .social-links {
                display: flex;
                justify-content: center;
            }

            /* Accordion Style */
            .modern-luxury-footer .accordion-item {
                border: none;
                background-color: transparent;
                margin-bottom: 8px;
            }

            .modern-luxury-footer .accordion-header {
                border-bottom: 1px solid #f0f0f0;
            }

            .modern-luxury-footer .accordion-button {
                background-color: transparent;
                color: #a11212;
                font-size: 16px;
                font-weight: 700;
                padding: 15px 0;
                box-shadow: none;
            }

            .modern-luxury-footer .accordion-button:not(.collapsed) {
                color: #a11212;
                background-color: transparent;
            }

            .modern-luxury-footer .accordion-button:focus {
                box-shadow: none;
            }

            .modern-luxury-footer .accordion-body {
                padding: 10px 0 20px;
            }

            .modern-luxury-footer .footer-links-list a {
                padding: 4px 0;
                font-size: 13px;
            }

            .modern-luxury-footer .footer-links-list li {
                text-align: right;
            }
        }


        /*Header & Navigation*/
        /*-------------------------------------------------------------- */


:root {
            --brand-color: #5603AD;  /* بنفش سلطنتی */
            --brand-light: #8338EC;  /* بنفش روشن */
            --brand-dark: #2A1B3D;   /* بنفش تیره */
            --gold-accent: #FFB703;  /* طلایی */
            --bg-light: #FBF9FE;     /* پس زمینه روشن */
        }

        .header {
            background: #fff;
            z-index: 997;
            height: 90px;
            box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.07);
        }

        .header.header-scrolled {
            height: 70px;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header .logo h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark-color);
            font-family: 'Vazirmatn', sans-serif;
            margin: 0;
        }

        .header .logo h1 span {
            color: var(--brand-color);
        }

        .header .btn-getstarted {
            font-weight: 600;
            font-size: 14px;
            display: inline-block;
            padding: 8px 24px;
            border-radius: 50px;
            transition: 0.3s;
            color: #fff;
            background: var(--brand-color);
        }

        .header .btn-getstarted:hover {
            background: #c22a2a;
            transform: translateY(-2px);
        }

        .header .header-actions {
            gap: 10px;
        }

        .header .header-actions .action-icon {
            font-size: 24px;
            color: var(--light-gray);
            transition: color 0.3s;
            position: relative;
        }

        .header .header-actions .action-icon:hover {
            color: var(--brand-color);
        }

        .header .header-actions .cart-badge {
            position: absolute;
            top: -5px;
            right: -10px;
            background: var(--brand-color);
            color: #fff;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Desktop Navigation */
        .navbar {
            padding: 0;
        }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 15px;
            font-family: 'Vazirmatn', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #5f5f6a;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

        .navbar a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            background-color: var(--gold-accent);
            transition: width 0.3s ease;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--brand-color);
        }

        .navbar a:hover::after,
        .navbar .active::after {
            width: 50%;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            color: var(--dark-color);
            font-size: 28px;
            cursor: pointer;
            display: none;
            line-height: 0;
            transition: 0.5s;
        }

        @media (max-width: 1200px) {
            .navbar {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }
        }

        .mobile-nav-active .navbar {
            display: block;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            bottom: 0;
            transition: 0.3s;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            z-index: 9997;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            padding-top: 60px;
        }

        .mobile-nav-active .navbar ul {
            display: block;
            position: absolute;
            top: 20px;
            right: 20px;
            left: 20px;
            bottom: 20px;
            background: #fff;
            border-radius: 10px;
            padding: 10px 0;
            margin: 0;
            list-style: none;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav-active .navbar a,
        .mobile-nav-active .navbar a:focus {
            padding: 10px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--light-gray);
        }

        .mobile-nav-active .navbar a:hover,
        .mobile-nav-active .navbar .active,
        .mobile-nav-active .navbar li:hover > a {
            color: var(--brand-color);
        }

        .mobile-nav-active .mobile-nav-toggle {
            z-index: 9998;
        }

        .mobile-nav-active .mobile-nav-hide {
            color: var(--dark-color);
            font-size: 32px;
            position: absolute;
            top: 15px;
            left: 25px; /* RTL support */
        }

        /* استایل ها یجدید*/
        /* Slogan Top Banner */
        .slogan-top-banner {
            background: linear-gradient(to right, var(--brand-color), var(--brand-light));
            color: #fff;
            padding: 10px 0;
            font-weight: 500;
            text-align: center;
            font-size: 15px;
            width: 100%;
        }

        /* Luxury Titles */
        .title-luxury {
            color: var(--brand-color);
            font-weight: 800;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }

        .title-luxury:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gold-accent);
            border-radius: 2px;
            margin: 10px auto 0;
        }

        .subtitle-luxury {
            font-size: 1rem;
            color: #666;
            max-width: 600px;
            margin: 10px auto 0;
        }

        /* Trust Section */
        .trust-section {
            padding: 60px 0;
            background-color: var(--bg-light);
        }

        .trust-badges-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .trust-badge-item {
            text-align: center;
            transition: transform 0.3s ease;
            width: 150px;
        }

        .trust-badge-item:hover {
            transform: translateY(-5px);
        }

        .trust-badge-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 38px;
            transition: all 0.3s ease;
            background-color: #fff;
            color: var(--brand-color);
            border: 1px solid #E9D8FD;
            box-shadow: 0 5px 20px rgba(86, 3, 173, 0.08);
        }

        .trust-badge-item:hover .trust-badge-icon {
            background-color: var(--brand-color);
            color: #fff;
        }

        .trust-badge-item p {
            font-size: 14px;
            color: #333;
            font-weight: 600;
            margin-top: 10px;
        }

        .trust-badge-item a {
            text-decoration: none;
        }

        /* Why Us Section */
        .why-us-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #fff 0%, #FBF9FE 100%);
        }

        .why-us-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .why-us-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .why-us-card .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            transition: all 0.3s ease;
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        .why-us-card:hover .icon-box {
            background-color: var(--brand-color);
            color: #fff;
        }

        .why-us-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .why-us-card p {
            font-size: 14px;
            color: #666;
        }

        /* Products Carousel Section (Featured & Bestsellers) */
        .products-carousel-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
        }

        .products-swiper {
            padding: 30px 0;
        }

        .products-swiper .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
        }

        .products-swiper .swiper-button-prev,
        .products-swiper .swiper-button-next {
            color: #a11212;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            top: 55%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .products-swiper .swiper-button-prev:hover,
        .products-swiper .swiper-button-next:hover {
            background: var(--brand-color);
            color: #fff;
        }

        .products-swiper .swiper-button-prev::after,
        .products-swiper .swiper-button-next::after {
            font-size: 20px;
        }

        .products-swiper .swiper-pagination-bullet {
            background: var(--brand-color);
        }

        /* Promo Banners Section */
        .promo-banners-section {
            padding: 60px 0;
            background: #fff;
        }

        .promo-card-container {
            overflow: hidden;
            position: relative;
        }

        .promo-swiper {
            width: 100%;
        }

        .promo-banner-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .promo-banner-card {
            height: 180px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .promo-banner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .promo-banner-card.banner-1 {
            background: linear-gradient(to right, #F3E5F5 0%, #FBF9FE 100%);
            border: 1px solid #E9D8FD;
        }

        .promo-banner-card.banner-2 {
            background: linear-gradient(to right, #FFF8E1 0%, #FFFDE7 100%); /* Gold tint */
            border: 1px solid #FFE082;
        }

        .promo-banner-card.banner-3 {
            background: linear-gradient(to right, #f5f8fc 0%, #eff2f8 100%);
            border: 1px solid #b3d9ff;
        }

        .promo-banner-content {
            color: var(--brand-color);
            text-align: center;
            width: 100%;
        }

        .promo-banner-content h3 {
            font-size: 24px;
            font-weight: 800;
        }

        .promo-banner-content p {
            font-size: 16px;
            color: #555;
        }

        .promo-swiper-pagination .swiper-pagination-bullet {
            background: var(--brand-color);
        }

        /* Saffron Knowledge Section */
        .saffron-knowledge-section {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .knowledge-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .knowledge-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .knowledge-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .knowledge-card-content {
            padding: 25px;
        }

        .knowledge-card-content h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--brand-color);
            margin-bottom: 15px;
        }

        .knowledge-card-content i {
            color: var(--gold-accent);
            font-size: 22px;
            margin-left: 10px;
        }

        .knowledge-card-content p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
        }

        .authentic-tips-new {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .authentic-tips-new h3 i {
            font-size: 24px;
            color: var(--brand-color);
            margin-left: 10px;
        }

        .authentic-tips-new ul {
            list-style: none;
            padding: 0;
        }

        .authentic-tips-new li {
            font-size: 15px;
            color: #555;
        }

        .authentic-tips-new li i {
            color: var(--brand-color);
            margin-left: 8px;
            font-size: 18px;
        }

        /* Bulk Order New Section */
        .bulk-order-new-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
        }

        .bulk-image-box {
            text-align: center;
        }

        .bulk-image-box img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .bulk-content-box {
            padding: 20px;
        }

        .bulk-benefits {
            margin-top: 30px;
        }

        .bulk-benefits li {
            font-size: 16px;
            color: #333;
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
        }

        .bulk-benefits li:last-child {
            border-bottom: none;
        }

        .bulk-benefits li i {
            color: var(--brand-color);
            margin-left: 12px;
        }

        .btn-luxury-whatsapp {
            background-color: #25D366;
            color: #fff;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .btn-luxury-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-luxury-whatsapp i {
            font-size: 22px;
            margin-left: 10px;
        }

        /* Professional Saffron New Section */
        .pro-saffron-new-section {
            padding: 80px 0;
            background: #fff;
        }

        .pro-content-box {
            border-radius: 20px;
            padding: 40px;
            background: linear-gradient(135deg, #FBF9FE 0%, #fff 100%);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.08);
            border: 1px solid #E9D8FD;
        }

        .pro-content-box h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--brand-color);        }

        .pro-content-box p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-top: 15px;
        }

        .btn-luxury-view-more {
            background: #e6c07a;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            background: var(--gold-accent);
            box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
            color: #222; /* متن تیره روی طلایی خواناتر است */
        }

        .btn-luxury-view-more:hover {
            transform: translateY(-3px);
            background: #FFCA28;
            box-shadow: 0 8px 20px rgba(255, 183, 3, 0.5);
            color: #000;
        }

        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .promo-banner-card {
                height: 150px;
            }

            .bulk-content-box {
                text-align: center;
                margin-top: 30px;
            }

            .bulk-benefits li {
                justify-content: center;
            }

            .btn-luxury-whatsapp {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .pro-content-box {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .promo-banner-card {
                height: 120px;
            }

            .slogan-top-banner {
                font-size: 13px;
            }

            .knowledge-card {
                flex-direction: column;
            }

            .knowledge-card img {
                height: 150px;
            }

            .knowledge-card-content {
                padding: 15px;
            }

            .authentic-tips-new li {
                text-align: right;
            }
        }

        /* بنر ها*/
        /* New Hero Slider Section */
        .hero-slider {
            width: 100%;
            height: calc(100vh - 80px); /* Full viewport height minus header height */
            overflow: hidden;
            position: relative;
        }

        @media (max-width: 991px) {
            .hero-slider {
                height: calc(100vh - 60px); /* Adjust for smaller header on mobile */
            }
        }

        .hero-slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-slide-link {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-slide::before {
            content: '';
            background: rgba(0, 0, 0, 0.4);
            position: absolute;
            bottom: 0;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1;
        }

        .hero-content {
            color: #fff;
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn-hero {
            background-color: var(--brand-color);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            background-color: var(--brand-light);
            transform: scale(1.05);
        }

        .swiper-pagination-bullet {
            background: #fff !important;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        /* All general CSS from previous steps */
        /* ... */

        /* Paste the NEW HEADER CSS from section 1 here */
        /* ... */

        /* Online Store Section */
        .online-store-section {
            padding: 60px 0;
            background: #fff9f9;
        }

        .online-store-card {
            background: linear-gradient(135deg, #a11212 0%, #c82828 100%);
            border-radius: 20px;
            color: white;
            padding: 50px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(161, 18, 18, 0.2);
        }

        .online-store-card h2 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .online-store-card p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .online-store-card .btn-explore {
            background: #fff;
            color: var(--brand-color);
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .online-store-card .btn-explore:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Latest Reviews Section */
        .latest-reviews {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border-right: 4px solid var(--brand-color);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .review-header .reviewer-name {
            font-weight: 700;
            color: #333;
            font-size: 18px;
        }

        .review-product {
            font-size: 14px;
            color: #777;
            margin-top: -5px;
        }

        .review-rating {
            margin-left: auto;
            color: #ffc107;
        }

        .review-comment {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
        }

        /* Online Store Section */
        .online-store-section {
            padding: 100px 0;
            background: #FBF9FE;
            position: relative;
            overflow: hidden;
            font-family: 'Vazirmatn', sans-serif;
        }

        .section-title .title-luxury {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-color);
            position: relative;
            margin-bottom: 15px;
        }

        .section-title .title-luxury::after {
            content: '';
            width: 80px;
            height: 5px;
            background: var(--gold-accent);
            border-radius: 3px;
            display: block;
            margin: 10px auto;
        }

        .section-title .subtitle-luxury {
            font-size: 1.1rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
        }

        .online-store-container {
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .online-store-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #5603AD 0%, #240046 100%);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.3);
            border-radius: 30px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .online-store-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(86, 3, 173, 0.5);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(86, 3, 173, 0.05), rgba(255, 255, 255, 0.1));
            z-index: 1;
            transition: opacity 0.4s ease;
        }

        .online-store-card:hover .card-overlay {
            opacity: 0.8;
        }

        .card-content {
            flex: 1;
            z-index: 2;
            color: #fff;
            text-align: right;
            padding-left: 40px;
        }

        .card-title {
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .card-description {
            font-size: 1.15rem;
            line-height: 1.9;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 450px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-explore-luxury, .btn-whatsapp-luxury {
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-explore-luxury {
            background: #fff;
            color: var(--brand-color);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-explore-luxury:hover {
            background: var(--gold-accent);
            color: #222;
            box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
            transform: translateY(-4px);
        }

        .btn-explore-luxury i {
            transition: transform 0.3s ease;
        }

        .btn-explore-luxury:hover i {
            transform: translateX(-6px);
        }

        .btn-whatsapp-luxury {
            background: #25D366;
            color: #fff;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp-luxury:hover {
            background: #128C7E;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .btn-whatsapp-luxury i {
            font-size: 1.3rem;
            margin-right: 8px;
        }

        .card-image {
            flex: 1;
            z-index: 2;
            text-align: center;
        }

        .card-image img {
            max-width: 90%;
            height: auto;
            border-radius: 20px;
            transition: transform 0.5s ease, filter 0.5s ease;
        }

        .online-store-card:hover .card-image img {
            transform: scale(1.08);
            filter: brightness(1.1);
        }

        /* Decorative Elements for Unique Feel */
        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .decorative-glow {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, rgba(131, 56, 236, 0) 70%);
            z-index: 0;
        }

        .decorative-glow.top-left {
            width: 250px;
            height: 250px;
            top: -60px;
            left: -60px;
        }

        .decorative-glow.bottom-right {
            width: 300px;
            height: 300px;
            bottom: -80px;
            right: -80px;
        }

        .saffron-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            background-size: contain;
            opacity: 0.3;
            z-index: 0;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .online-store-section {
                padding: 60px 0;
            }

            .online-store-card {
                flex-direction: column;
                padding: 30px;
                border-radius: 20px;
            }

            .card-content {
                padding-left: 0;
                text-align: center;
                margin-bottom: 25px;
            }

            .card-title {
                font-size: 1.9rem;
            }

            .card-description {
                font-size: 1rem;
                max-width: 100%;
            }

            .cta-buttons {
                justify-content: center;
            }

            .btn-explore-luxury, .btn-whatsapp-luxury {
                width: 100%;
                max-width: 280px;
                padding: 12px 30px;
            }

            .card-image img {
                max-width: 85%;
            }

            .decorative-glow.top-left {
                width: 180px;
                height: 180px;
                top: -40px;
                left: -40px;
            }

            .decorative-glow.bottom-right {
                width: 220px;
                height: 220px;
                bottom: -60px;
                right: -60px;
            }

            .saffron-icon {
                width: 60px;
                height: 60px;
                top: 15px;
                right: 15px;
            }
        }

        @media (max-width: 576px) {
            .online-store-section {
                padding: 40px 0;
            }

            .section-title .title-luxury {
                font-size: 1.8rem;
            }

            .section-title .subtitle-luxury {
                font-size: 0.95rem;
            }

            .online-store-card {
                padding: 20px;
            }

            .card-title {
                font-size: 1.6rem;
            }

            .card-description {
                font-size: 0.9rem;
            }

            .btn-explore-luxury, .btn-whatsapp-luxury {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .card-image img {
                max-width: 90%;
            }

            .decorative-glow.top-left {
                width: 120px;
                height: 120px;
                top: -20px;
                left: -20px;
            }

            .decorative-glow.bottom-right {
                width: 150px;
                height: 150px;
                bottom: -30px;
                right: -30px;
            }

            .saffron-icon {
                width: 50px;
                height: 50px;
            }
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background: #fffbe6;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            width: 90%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-family: 'Vazirmatn', sans-serif;
        }

        .popup-content .close-btn {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--brand-color);
            border: none;
            background: none;
        }

        .popup-content h2 {
            color: #333;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .popup-content p {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .popup-content .image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .popup-content a {
            background-color: var(--brand-color);
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            display: inline-block;
        }

        .popup-content a:hover {
            background-color: var(--brand-light);
        }

        .popup-content .logo {
            margin-top: 15px;
            font-size: 18px;
            color: var(--brand-color);
        }

        .popup-content .logo span {
            font-weight: bold;
        }

        /*هدر*/
        :root {
            --brand-color: #c75233;
            --dark-color: #333;
            --light-gray: #666;
        }

        /* Header Styles */
        .header {
            background: #ffffff;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
            border-radius: 0 0 15px 15px;
        }

        .header.header-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-color);
            text-decoration: none;
            font-family: 'Vazirmatn', sans-serif;
        }

        /* Desktop Navigation */
        .navbar {
            padding: 0;
        }

        .navbar ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            text-decoration: none;
            color: #555;
            font-size: 16px;
            font-weight: 500;
            font-family: 'Vazirmatn', sans-serif;
            padding: 10px 15px;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .navbar a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            background-color: var(--gold-accent);
            transition: width 0.3s ease;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--brand-color);
        }

        .navbar a:hover::after,
        .navbar .active::after {
            width: 50%;
        }

        .navbar .action-icon.cart-icon i {
            font-size: 22px;
            color: var(--light-gray);
            transition: all 0.3s ease;
        }

        .navbar .action-icon.cart-icon:hover i {
            color: var(--brand-color);
            transform: scale(1.1);
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-actions .btn-getstarted {
            background: #ff6f61;
            color: #fff;
            padding: 6px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Vazirmatn', sans-serif;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-actions .btn-getstarted:hover {
            background: #e65b50;
            transform: translateY(-2px);
        }

        .header-actions .action-icon.user-icon i {
            font-size: 18px; /* Smaller user icon */
            color: var(--light-gray);
            transition: all 0.3s ease;
        }

        .header-actions .action-icon.user-icon:hover i {
            color: var(--brand-color);
            transform: scale(1.1);
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--dark-color);
            background: none;
            border: none;
        }

        .hamburger-icon {
            width: 24px;
            height: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger-icon span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--brand-color);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        .offcanvas-menu {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            max-width: 80%;
            height: 100%;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 9998;
            display: flex;
            flex-direction: column;
            border-radius: 0 15px 15px 0;
        }

        .offcanvas-menu.show {
            left: 0;
        }

        .offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9997;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease;
        }

        .offcanvas-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .offcanvas-menu .menu-header {
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .offcanvas-menu .menu-close-btn {
            font-size: 22px;
            color: var(--brand-color);
            background: none;
            border: none;
            cursor: pointer;
        }

        .offcanvas-menu .logo {
            font-size: 22px;
        }

        .offcanvas-menu .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-menu .nav-list li {
            padding: 10px 0;
        }

        .offcanvas-menu .nav-list a {
            display: flex;
            align-items: center;
            font-size: 15px;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .offcanvas-menu .nav-list a:hover {
            color: var(--brand-color);
            padding-right: 5px;
        }

        .offcanvas-menu .nav-list a.active {
            color: var(--brand-color);
            font-weight: 600;
        }

        .offcanvas-menu .nav-list a i {
            font-size: 18px;
            margin-left: 12px;
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list .btn-login {
            margin-top: 10px;
            color: var(--brand-color);
            padding: 8px 15px;
            border-radius: 50px;
            text-align: center;
            justify-content: center;
            transition: all 0.3s ease;
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list .btn-login:hover {
            background-color: var(--brand-color);
            color: #fff;
        }

        .offcanvas-menu .nav-list .btn-login i {
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list .btn-login:hover i {
            color: #fff;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .navbar {
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: #fff;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }

            .navbar.active {
                max-height: 500px;
            }

            .navbar ul {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .navbar li {
                width: 100%;
                text-align: center;
            }

            .navbar a {
                padding: 12px 20px;
                display: block;
                width: 100%;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .header-actions .action-icon.user-icon {
                display: flex;
            }

            .header .logo {
                margin-right: 0;
            }
        }

        @media (min-width: 993px) {
            .header .logo {
                order: 0;
                margin-right: auto;
            }

            .navbar {
                order: 1;
            }

            .header-actions {
                order: 2;
            }
        }

        /* Track Order Section */
        .track-order-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
            position: relative;
            overflow: hidden;
            font-family: 'Vazirmatn', sans-serif;
        }

        .track-order-container {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .track-order-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.15);
            position: relative;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .track-order-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(86, 3, 173, 0.25);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(161, 18, 18, 0.05), rgba(255, 255, 255, 0.1));
            border-radius: 20px;
            z-index: 0;
        }

        .track-order-content {
            position: relative;
            z-index: 1;
        }

        .input-group {
            border-radius: 50px;
            overflow: hidden;
            background: #fff;
            transition: all 0.3s ease;
            border: 1px solid #E9D8FD;
        }

        .input-group:hover {
            border-color: var(--brand-color);
            box-shadow: 0 4px 15px rgba(86, 3, 173, 0.1);
        }

        .input-group-text {
            background: #F3E5F5;
            color: var(--brand-color);
            border: none;
            font-size: 18px;
            padding: 0 20px;
        }

        .form-control {
            border: none;
            font-size: 16px;
            padding: 12px 20px;
            font-family: 'Vazirmatn', sans-serif;
            background: transparent;
            color: #333;
        }

        .form-control:focus {
            box-shadow: none;
            background: transparent;
            color: #333;
        }

        .form-control::placeholder {
            color: #888;
            opacity: 0.8;
        }

        .btn-luxury-track {
            background: linear-gradient(90deg, var(--brand-color) 0%, #8338EC 100%);
            box-shadow: 0 5px 15px rgba(86, 3, 173, 0.3);
            color: #fff;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-luxury-track:hover {
            background: linear-gradient(90deg, #46028C 0%, #6A1B9A 100%);
            box-shadow: 0 8px 20px rgba(86, 3, 173, 0.4);
            transform: translateY(-3px);
        }

        .order-details {
            background: #FBF9FE;
            border: 1px solid #E9D8FD;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .order-details-title {
            color: var(--brand-color);
            font-size: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .order-details-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background: var(--gold-accent);
            position: absolute;
            bottom: 0;
            right: 0;
        }

        .order-details p {
            font-size: 15px;
            color: #555;
            margin-bottom: 10px;
        }

        .order-details .badge {
            font-size: 14px;
            padding: 6px 12px;
            border-radius: 20px;
        }

        .order-details .text-success {
            color: #25D366 !important;
        }

        .order-details .text-danger {
            color: var(--brand-color) !important;
        }

        .address-title {
            color: var(--brand-color);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .alert-danger {
            background: #F3E5F5;
            border: 1px solid var(--brand-color);
            color: var(--brand-color);
            border-radius: 10px;
            padding: 15px;
            font-size: 15px;
            text-align: center;



        }

        /* Decorative Elements */
        .track-order-section .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .track-order-section .decorative-glow {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 201, 163, 0.3) 0%, rgba(255, 201, 163, 0) 70%);
        }

        .track-order-section .decorative-glow.top-left {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }

        .track-order-section .decorative-glow.bottom-right {
            width: 250px;
            height: 250px;
            bottom: -60px;
            right: -60px;
        }

        .track-order-section .saffron-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            background-size: contain;
            opacity: 0.2;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .track-order-section {
                padding: 60px 0;
            }

            .track-order-card {
                padding: 30px;
            }

            .track-order-container {
                margin: 30px auto 0;
            }

            .btn-luxury-track {
                padding: 12px 25px;
                font-size: 15px;
            }

            .order-details-title {
                font-size: 18px;
            }

            .order-details p {
                font-size: 14px;
            }

            .address-title {
                font-size: 16px;
            }

            .track-order-section .decorative-glow.top-left {
                width: 150px;
                height: 150px;
                top: -30px;
                left: -30px;
            }

            .track-order-section .decorative-glow.bottom-right {
                width: 180px;
                height: 180px;
                bottom: -40px;
                right: -40px;
            }

            .track-order-section .saffron-icon {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 576px) {
            .track-order-section {
                padding: 40px 0;
            }

            .track-order-card {
                padding: 20px;
                border-radius: 15px;
            }

            .section-title .title-luxury {
                font-size: 2rem;
            }

            .section-title .subtitle-luxury {
                font-size: 1rem;
            }

            .input-group-text {
                padding: 0 15px;
                font-size: 16px;
            }

            .form-control {
                font-size: 14px;
                padding: 10px 15px;
            }

            .btn-luxury-track {
                padding: 10px 20px;
                font-size: 14px;
            }

            .order-details {
                padding: 15px;
            }

            .order-details-title {
                font-size: 16px;
            }

            .order-details p {
                font-size: 13px;
            }

            .alert-danger {
                font-size: 14px;
                padding: 12px;
            }

            .track-order-section .decorative-glow.top-left {
                width: 100px;
                height: 100px;
                top: -20px;
                left: -20px;
            }

            .track-order-section .decorative-glow.bottom-right {
                width: 120px;
                height: 120px;
                bottom: -20px;
                right: -20px;
            }

            .track-order-section .saffron-icon {
                width: 50px;
                height: 50px;
            }
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
            position: relative;
            font-family: 'Vazirmatn', sans-serif;
        }

        .feature-box {
            background: #fff;
            border-radius: 15px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #E9D8FD;
            margin: 5px;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.15);
        }

        .feature-icon-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--brand-color), var(--gold-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: background 0.3s ease;
        }

        .feature-box:hover .feature-icon-circle {
            background: linear-gradient(45deg, var(--gold-accent), var(--brand-color));
        }

        .feature-icon {
            font-size: 28px;
            color: #fff;
        }

        .feature-box h4 {
            font-size: 18px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 8px;
        }

        .feature-box p {
            font-size: 14px;
            color: #555;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .features-section {
                padding: 40px 0;
            }

            .feature-box {
                padding: 20px 10px;
                margin-bottom: 15px;
            }

            .feature-icon-circle {
                width: 50px;
                height: 50px;
            }

            .feature-icon {
                font-size: 24px;
            }

            .feature-box h4 {
                font-size: 16px;
            }

            .feature-box p {
                font-size: 13px;
            }

            .row {
                display: flex;
                flex-wrap: wrap;
            }

            .col-sm-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 576px) {
            .feature-box {
                padding: 15px 8px;
            }

            .feature-icon-circle {
                width: 45px;
                height: 45px;
            }

            .feature-icon {
                font-size: 22px;
            }

            .feature-box h4 {
                font-size: 15px;
            }

            .feature-box p {
                font-size: 12px;
            }
        }

        /* Online Store Section */
        .online-store-section {
            padding: 80px 0;
            background: #FBF9FE;
            position: relative;
            font-family: 'Vazirmatn', sans-serif;
            overflow: hidden;
        }

        .section-title .title-luxury {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--brand-color);
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .section-title .subtitle-luxury {
            font-size: 1.2rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .online-store-container {
            max-width: 1000px;
            margin: 40px auto 0;
        }

        .online-store-card {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #5603AD 0%, #240046 100%);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .online-store-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(161, 18, 18, 0.2);
        }

        .card-content {
            flex: 1;
            padding: 40px;
            text-align: right;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #a11212;
            margin-bottom: 15px;
            position: relative;
        }

        .card-title::after {
            content: '';
            width: 50px;
            height: 2px;
            background: var(--gold-accent);
            position: absolute;
            bottom: -8px;
            right: 0;
        }

        .card-description {
            font-size: 1rem;
            color: #FFFFFF;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .btn-explore-luxury {
            background: linear-gradient(90deg, #a11212 0%, #d4a017 100%);
            color: var(--brand-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-explore-luxury:hover {
            background: var(--gold-accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(161, 18, 18, 0.3);
        }

        .card-image {
            flex: 1;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card-image:hover img {
            transform: scale(1.05);
        }

        /* Decorative Elements */
        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .decorative-glow {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, rgba(131, 56, 236, 0) 70%);
        }

        .decorative-glow.top-left {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }

        .decorative-glow.bottom-right {
            width: 250px;
            height: 250px;
            bottom: -60px;
            right: -60px;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .online-store-section {
                padding: 60px 0;
            }

            .online-store-card {
                flex-direction: column;
                text-align: center;
            }

            .card-content {
                padding: 30px;
            }

            .card-title {
                font-size: 1.6rem;
            }

            .card-title::after {
                right: 50%;
                transform: translateX(50%);
            }

            .card-description {
                font-size: 0.95rem;
            }

            .btn-explore-luxury {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .card-image img {
                max-height: 300px;
            }

            .decorative-glow.top-left {
                width: 150px;
                height: 150px;
                top: -30px;
                left: -30px;
            }

            .decorative-glow.bottom-right {
                width: 180px;
                height: 180px;
                bottom: -40px;
                right: -40px;
            }
        }

        @media (max-width: 576px) {
            .online-store-section {
                padding: 40px 0;
            }

            .section-title .title-luxury {
                font-size: 2rem;
            }

            .section-title .subtitle-luxury {
                font-size: 1rem;
            }

            .card-content {
                padding: 20px;
            }

            .card-title {
                font-size: 1.4rem;
            }

            .card-description {
                font-size: 0.9rem;
            }

            .btn-explore-luxury {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            .card-image img {
                max-height: 250px;
            }

            .decorative-glow.top-left {
                width: 100px;
                height: 100px;
                top: -20px;
                left: -20px;
            }

            .decorative-glow.bottom-right {
                width: 120px;
                height: 120px;
                bottom: -20px;
                right: -20px;
            }
        }

        /* =================================== */
        /* ==== NEW STYLES FOR BLOG & TRUST SECTIONS ==== */
        /* =================================== */
        .latest-articles-section {
            padding: 60px 0;
            background-color: #FBF9FE;
        }

        .article-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .article-card .category {
            color: var(--brand-light);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .article-card .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .article-card .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .article-card .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.75rem;
            flex-grow: 1;
        }

        .article-card .card-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .article-card .btn-primary {
            background-color: var(--brand-color);
            color: white;
            border-radius: 99px; /* Pill shape */
            transition: background-color 0.3s;
            text-decoration: none;
            padding: 0.5rem 1.5rem;
            align-self: flex-start;
        }

        .article-card .btn-primary:hover {
            background-color: var(--brand-dark);
        }

        .trust-platform-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
        }

        .trust-platform-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            border: 1px solid #E9D8FD;
        }

        .trust-platform-card .icon-box {
            font-size: 48px;
            color: var(--brand-color);
            margin-bottom: 15px;
        }

        .trust-platform-card h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--brand-dark);
        }

        .trust-platform-card p {
            font-size: 16px;
            color: #555;
            max-width: 500px;
            margin: 15px auto 30px;
        }

        .platform-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .platform-logos img {
            height: 40px;
            max-width: 120px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .platform-logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .view-all-btn {
            background-color: var(--brand-color);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background-color: #8c0c0c;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(161, 18, 18, 0.3);
        }

        @media (min-width: 992px) {
            .mobile-bottom-nav {
                display: none !important;
            }
        }
        .online-store-card .card-title {
            color: #fff; /* چون پس زمینه تیره است */
        }



        /* General & Roots overrides */
        :root {
            --brand-color: #5603AD;  /* بنفش سلطنتی */
            --brand-light: #8338EC;  /* بنفش روشن */
            --brand-dark: #2A1B3D;   /* بنفش تیره */
            --gold-accent: #FFB703;  /* طلایی */
            --bg-light: #FBF9FE;     /* پس زمینه روشن */
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #FBF9FE 0%, #F3E5F5 100%);
            padding: 60px 0 30px;
            font-family: 'Vazirmatn', sans-serif;
            border-top: 3px solid var(--brand-color);
        }

        .footer-about .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-color);
            margin-bottom: 15px;
        }

        .footer-links h4, .footer-contact h4, .footer-support h4 {
            color: var(--brand-color);
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .footer-links h4:after, .footer-contact h4:after, .footer-support h4:after {
            content: '';
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-accent); /* خط طلایی */
        }

        .footer-links a:hover, .footer-contact a:hover {
            color: var(--brand-color);
            padding-right: 5px;
        }

        .footer-links i, .footer-contact i {
            color: var(--brand-color);
            margin-left: 8px;
            font-size: 16px;
        }

        .social-links a {
            color: var(--brand-color);
            background: #fff;
            box-shadow: 0 4px 10px rgba(86, 3, 173, 0.1);
        }

        .social-links a:hover {
            color: #fff;
            background: var(--brand-color);
            transform: scale(1.2);
        }

        /* About Saffron Section */
        .about-saffron {
            background-color: var(--bg-light);
            padding: 60px 0;
            border-radius: 15px;
            margin: 30px 0;
        }

        .about-saffron .section-title h2 {
            color: var(--brand-color);
        }

        .saffron-type-card h4 {
            color: var(--brand-color);
            border-bottom: 2px solid #E9D8FD; /* مرز بنفش کمرنگ */
            padding-bottom: 10px;
        }

        .authentic-tips {
            background: #fff;
            border: 1px solid #E9D8FD;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
        }

        .authentic-tips h3 {
            color: var(--brand-color);
            margin-bottom: 20px;
        }

        .authentic-tips li {
            padding: 10px 0;
            border-bottom: 1px dashed #D1C4E9;
        }

        .authentic-tips li i {
            color: var(--gold-accent); /* آیکون‌های طلایی */
            margin-left: 10px;
        }

        /* Bulk Order Section */
        .bulk-order {
            background-color: #F3E5F5;
            padding: 60px 0;
            border-radius: 15px;
            margin: 30px 0;
        }

        .bulk-order .section-title h2 {
            color: var(--brand-color);
        }

        .bulk-order-content h3 {
            color: var(--brand-color);
            margin-bottom: 20px;
        }

        .benefits-list i {
            color: var(--brand-color);
        }

        .request-form {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #E9D8FD;
            border: 2px dashed var(--brand-color);
        }

        /* Professional Saffron Section */
        .pro-saffron {
            background: linear-gradient(135deg, #fff 0%, #FBF9FE 100%);
            padding: 80px 0;
        }

        .pro-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.08);
            border: 1px solid #E9D8FD;
            transition: transform 0.3s;
        }

        /* Stats Section */
        .stat-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--brand-color);
            box-shadow: 0 5px 15px rgba(86, 3, 173, 0.15);
            border: 1px solid #E9D8FD;
        }

        /* Trust Support */
        .trust-support {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            border-right: 4px solid var(--gold-accent);
        }

        /* Products Section */
        .products {
            padding: 40px 0;
            background-color: #fff;
        }

        .studio-products-banner {
            background: linear-gradient(90deg, #F3E5F5 0%, #ffffff 100%);
            border-left: 5px solid var(--brand-color);
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
        }

        .studio-products-banner-inner h3 {
            color: var(--brand-dark);
        }

        .studio-banner-cta {
            background: var(--brand-color);
            color: #fff;
            box-shadow: 0 8px 18px rgba(86, 3, 173, 0.2);
        }

        .studio-banner-cta:hover {
            background: var(--brand-light);
            color: #fff;
        }

        .studio-card.center-highlight {
            border: 2px solid var(--gold-accent);
            box-shadow: 0 20px 40px rgba(255, 183, 3, 0.15);
        }

        .studio-badge.sale {
            left: 12px;
            background: var(--brand-color);
        }

        .studio-badge.new {
            right: 12px;
            background: var(--gold-accent);
            color: #333;
        }

        .studio-image {
            background: linear-gradient(180deg, #FBF9FE 0%, #fff 100%);
        }

        .price-new {
            color: var(--brand-color);
            font-size: 18px;
        }

        .btn-studio-view {
            background: #F3E5F5;
            border: 1px solid #E9D8FD;
            color: var(--brand-color);
        }

        .btn-studio-view:hover {
            background: var(--brand-color);
            color: #fff;
            box-shadow: 0 5px 15px rgba(86, 3, 173, 0.2);
        }

        /* Mobile Bottom Nav */
        @media (max-width: 991px) {
            .mobile-bottom-nav .nav-item.active {
                color: var(--brand-color);
            }
            .mobile-bottom-nav .nav-item.active i {
                color: var(--brand-color);
            }
            .mobile-bottom-nav .nav-item:hover {
                color: var(--brand-light);
            }
        }

        /* Support Float */
        .support-button {
            background-color: var(--brand-color);
            box-shadow: 0 5px 20px rgba(86, 3, 173, 0.4);
        }

        .support-button:hover {
            box-shadow: 0 8px 25px rgba(86, 3, 173, 0.6);
            background-color: var(--brand-light);
        }

        .close-button:hover {
            color: var(--brand-color);
        }

        .option-icon {
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        /* Header specifics */
        .header .mobile-nav-toggle {
            color: var(--brand-color);
        }

        .hamburger-icon span {
            background-color: var(--brand-color);
        }

        .offcanvas-menu .menu-close-btn {
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list a:hover {
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list a.active {
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list a i {
            color: var(--gold-accent);
        }

        .offcanvas-menu .nav-list .btn-login {
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        .offcanvas-menu .nav-list .btn-login:hover {
            background-color: var(--brand-color);
        }

        /* Luxury Footer & Elements */
        .modern-luxury-footer {
            background-color: #FBF9FE;
        }

        .modern-luxury-footer::before {
            background-color: var(--brand-color);
        }

        .modern-luxury-footer .logo-text {
            color: var(--brand-color);
        }

        .modern-luxury-footer .social-btn {
            color: var(--brand-color);
            border-color: #E9D8FD;
        }

        .modern-luxury-footer .social-btn:hover {
            background-color: var(--brand-color);
        }

        .modern-luxury-footer .footer-title {
            color: var(--brand-color);
        }

        .modern-luxury-footer .footer-links-list a:hover {
            color: var(--brand-color);
        }

        .modern-luxury-footer .footer-links-list a::before {
            color: var(--gold-accent);
        }

        /* Navbar specifics */
        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--brand-color);
        }

        .navbar a::after {
            background-color: var(--brand-color);
        }

        .header .header-actions .cart-badge {
            background: var(--gold-accent);
            color: #222;
        }

        .header .header-actions .action-icon:hover {
             color: var(--brand-color);
        }

        /* Slogan Top Banner */
        .slogan-top-banner {
            background: linear-gradient(to right, var(--brand-color), var(--brand-light));
        }

        /* Luxury Titles */
        .title-luxury {
            color: var(--brand-color);
        }

        .title-luxury:after {
            background: var(--gold-accent);
        }

        /* Trust Section */
        .trust-section {
            background-color: var(--bg-light);
        }

        .trust-badge-icon {
            background-color: #fff;
            color: var(--brand-color);
            border: 1px solid #E9D8FD;
            box-shadow: 0 5px 20px rgba(86, 3, 173, 0.08);
        }

        .trust-badge-item:hover .trust-badge-icon {
            background-color: var(--brand-color);
        }

        /* Why Us Section */
        .why-us-section {
            background: linear-gradient(180deg, #fff 0%, #FBF9FE 100%);
        }

        .why-us-card .icon-box {
            background-color: #F3E5F5;
            color: var(--brand-color);
        }

        .why-us-card:hover .icon-box {
            background-color: var(--brand-color);
        }

        /* Products Carousel */
        .products-carousel-section {
            background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
        }

        .products-swiper .swiper-button-prev:hover,
        .products-swiper .swiper-button-next:hover {
            background: var(--brand-color);
        }

        .products-swiper .swiper-pagination-bullet {
            background: var(--brand-color);
        }

        /* Promo Banners */
        .promo-banner-card.banner-1 {
            background: linear-gradient(to right, #F3E5F5 0%, #FBF9FE 100%);
            border: 1px solid #E9D8FD;
        }

        .promo-banner-card.banner-2 {
            background: linear-gradient(to right, #FFF8E1 0%, #FFFDE7 100%); /* Gold tint */
            border: 1px solid #FFE082;
        }

        .promo-banner-content {
            color: var(--brand-color);
        }

        .promo-swiper-pagination .swiper-pagination-bullet {
            background: var(--brand-color);
        }

        /* Saffron Knowledge */
        .saffron-knowledge-section {
            background-color: var(--bg-light);
        }

        .knowledge-card-content h4 {
            color: var(--brand-color);
        }

        .knowledge-card-content i {
            color: var(--gold-accent);
        }

        .authentic-tips-new h3 i {
            color: var(--brand-color);
        }

        .authentic-tips-new li i {
            color: var(--brand-color);
        }

        /* Bulk Order New */
        .bulk-order-new-section {
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
        }

        .bulk-benefits li i {
            color: var(--brand-color);
        }

        /* Pro Saffron New */
        .pro-content-box {
            background: linear-gradient(135deg, #FBF9FE 0%, #fff 100%);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.08);
            border: 1px solid #E9D8FD;
        }

        .pro-content-box h3 {
            color: var(--brand-color);
        }

        .btn-luxury-view-more {
            background: var(--gold-accent);
            box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
            color: #222; /* متن تیره روی طلایی خواناتر است */
        }

        .btn-luxury-view-more:hover {
            background: #FFCA28;
            box-shadow: 0 8px 20px rgba(255, 183, 3, 0.5);
            color: #000;
        }

        /* Hero Slider */
        .btn-hero {
            background-color: var(--brand-color);
        }

        .btn-hero:hover {
            background-color: var(--brand-light);
        }

        /* Online Store Section - The Red Gradient Card */
        .online-store-section {
            background: #FBF9FE;
        }

        .online-store-card {
            /* تغییر گرادینت قرمز به بنفش سلطنتی */
            background: linear-gradient(135deg, #5603AD 0%, #240046 100%);
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.3);
        }

        .online-store-card:hover {
            box-shadow: 0 25px 70px rgba(86, 3, 173, 0.5);
        }

        .online-store-card .btn-explore {
            color: var(--brand-color);
        }

        /* Latest Reviews */
        .review-card {
            border-right: 4px solid var(--brand-color);
        }

        /* Section Titles Luxury */
        .section-title .title-luxury {
            color: var(--brand-color);
        }

        .section-title .title-luxury::after {
            background: var(--gold-accent);
        }

        /* CTA Buttons Luxury */
        .btn-explore-luxury {
            color: var(--brand-color);
        }

        .btn-explore-luxury:hover {
            background: var(--gold-accent);
            color: #222;
            box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
        }

        /* Decorative Elements */
        .decorative-glow {
            background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, rgba(131, 56, 236, 0) 70%);
        }

        /* Popup */
        .popup-content .close-btn {
            color: var(--brand-color);
        }

        .popup-content a {
            background-color: var(--brand-color);
        }

        .popup-content a:hover {
            background-color: var(--brand-light);
        }

        .popup-content .logo {
            color: var(--brand-color);
        }

        /* Header Logo */
        .header .logo {
            color: var(--brand-color);
        }

        .navbar a::after {
            background-color: var(--gold-accent);
        }

        /* Track Order */
        .track-order-section {
            background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
        }

        .track-order-card {
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.15);
        }

        .track-order-card:hover {
             box-shadow: 0 20px 50px rgba(86, 3, 173, 0.25);
        }

        .card-overlay {
            background: linear-gradient(45deg, rgba(86, 3, 173, 0.05), rgba(255, 255, 255, 0.1));
        }

        .input-group {
            border: 1px solid #E9D8FD;
        }

        .input-group:hover {
            border-color: var(--brand-color);
            box-shadow: 0 4px 15px rgba(86, 3, 173, 0.1);
        }

        .input-group-text {
            background: #F3E5F5;
            color: var(--brand-color);
        }

        .btn-luxury-track {
            background: linear-gradient(90deg, var(--brand-color) 0%, #8338EC 100%);
            box-shadow: 0 5px 15px rgba(86, 3, 173, 0.3);
        }

        .btn-luxury-track:hover {
            background: linear-gradient(90deg, #46028C 0%, #6A1B9A 100%);
            box-shadow: 0 8px 20px rgba(86, 3, 173, 0.4);
        }

        .order-details {
            background: #FBF9FE;
            border: 1px solid #E9D8FD;
        }

        .order-details-title {
            color: var(--brand-color);
        }

        .order-details-title::after {
            background: var(--gold-accent);
        }

        .order-details .text-danger {
             color: var(--brand-color) !important;
        }

        .address-title {
            color: var(--brand-color);
        }

        .alert-danger {
            background: #F3E5F5;
            border: 1px solid var(--brand-color);
            color: var(--brand-color);
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
        }

        .feature-box {
            border: 1px solid #E9D8FD;
            box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
        }

        .feature-box:hover {
            box-shadow: 0 15px 40px rgba(86, 3, 173, 0.15);
        }

        .feature-icon-circle {
            background: linear-gradient(45deg, var(--brand-color), var(--gold-accent));
        }

        .feature-box:hover .feature-icon-circle {
            background: linear-gradient(45deg, var(--gold-accent), var(--brand-color));
        }

        /* Online Store Section - Refined Card */
        .online-store-card .card-title {
            color: #fff; /* چون پس زمینه تیره است */
        }

        .card-title::after {
            background: var(--gold-accent);
        }

        .btn-explore-luxury {
            background: #fff;
            color: var(--brand-color);
        }

        .btn-explore-luxury:hover {
            background: var(--gold-accent);
            color: #222;
        }

        /* Article Card */
        .latest-articles-section {
            background-color: #FBF9FE;
        }

        .article-card .category {
            color: var(--brand-light);
        }

        .article-card .btn-primary {
            background-color: var(--brand-color);
        }

        .article-card .btn-primary:hover {
            background-color: var(--brand-dark);
        }

        /* Trust Platform */
        .trust-platform-section {
            background: linear-gradient(135deg, #fff 0%, #F3E5F5 100%);
        }

        .trust-platform-card {
            border: 1px solid #E9D8FD;
        }

        .trust-platform-card .icon-box {
            color: var(--brand-color);
        }

        .trust-platform-card h3 {
            color: var(--brand-dark);
        }

        .view-all-btn {
            background-color: var(--brand-color);
        }

        .view-all-btn:hover {
            background-color: var(--brand-dark);
            box-shadow: 0 4px 15px rgba(86, 3, 173, 0.3);
        }



    /*کد های b2b*/
/* فروش سازمانی - کارت مینیمال و سنتی */
.corporate-sales-section {
    background: linear-gradient(135deg, #FBF9FE 0%, #F9F5FF 100%);
}

.corporate-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(86, 3, 173, 0.08);
    border: 1px solid #E9D8FD;
    transition: all 0.4s ease;
}

.corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(86, 3, 173, 0.12);
}

.corporate-image-wrapper img {
    max-height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.corporate-benefits li {
    font-size: 1.02rem;
    color: #444;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.corporate-benefits i {
    color: var(--brand-color);
    font-size: 1.4rem;
}

/* ریسپانسیو موبایل‌فرندلی */
@media (max-width: 991px) {
    .corporate-card {
        padding: 30px 20px;
    }
    .corporate-image-wrapper img {
        max-height: 260px;
    }
}
/* ==================== HERO BANNER CAROUSEL (16:9) ==================== */
.hero-banner-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* دقیقاً 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(86, 3, 173, 0.15);
    background: #f8f1ff;
}

.promo-swiper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.swiper-slide-active .banner-img {
    transform: scale(1.04);
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* دکمه‌های ناوبری */
.promo-swiper .swiper-button-next,
.promo-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(86, 3, 173, 0.75);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 50%;
}

.promo-swiper .swiper-button-next:after,
.promo-swiper .swiper-button-prev:after {
    font-size: 20px;
}

/* پیجینیشن */
.promo-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 10px;
    height: 10px;
}
.promo-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.3);
}

/* ریسپانسیو */
@media (max-width: 992px) {
    .hero-banner-wrapper {
        margin-top: 30px;
        border-radius: 16px;
    }
}
@media (max-width: 576px) {
    .hero-banner-wrapper {
        border-radius: 12px;
    }
}
    /*    استایل پاپ اپ*/
        .luxury-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}
.luxury-popup-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(86, 3, 173, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.3s ease;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.popup-close {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.popup-close:hover {
    background: #f0f0f0;
    color: var(--brand-color);
}
.popup-image img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}
.popup-text {
    padding: 24px 24px 32px;
}
.popup-title {
    color: var(--brand-color);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.popup-message {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
        .popup-close-btn {
    background: var(--brand-color);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
        .popup-close-btn:hover {
            background: var(--brand-light);
            transform: translateY(-2px);
        }
        /* ================= Installment Luxury Card ================= */
.installment-promo-section {
    background-color: #FBF9FE;
    font-family: 'Vazirmatn', sans-serif;
}

.installment-card.glass-luxury {
    background: linear-gradient(135deg, rgba(86, 3, 173, 0.95), rgba(42, 27, 61, 0.98)); /* Royal Purple */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 183, 3, 0.4); /* Metallic Gold Accent */
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(86, 3, 173, 0.25);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.installment-card.glass-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(86, 3, 173, 0.35);
}

.badge-gold {
    background: rgba(255, 183, 3, 0.15);
    color: #FFB703;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.installment-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #ffffff;
}

.installment-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Payment Partners */
.payment-partners {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
}

.partner-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.partner-logo span {
    color: #333;
    font-weight: 700;
    font-size: 14px;
}

/* Luxury Gold Button */
.btn-luxury-gold {
    background: linear-gradient(135deg, #FFB703, #FFD54F);
    color: #2A1B3D !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.btn-luxury-gold:hover {
    background: linear-gradient(135deg, #FFCA28, #FFE082);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 183, 3, 0.5);
}

/* Mockup Graphic */
.mockup-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px dashed rgba(255, 183, 3, 0.5);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-badge {
    position: absolute;
    background: #FFB703;
    color: #2A1B3D;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.floating-badge.badge-2 { bottom: 30px; left: -20px; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness (Mobile-First approach applied downward for simplicity here) */
@media (max-width: 991px) {
    .installment-card.glass-luxury {
        padding: 35px 25px;
        text-align: center;
    }
    .installment-title { font-size: 1.8rem; }
    .payment-partners { justify-content: center; }
    .btn-luxury-gold { width: 100%; justify-content: center; }
    .mockup-circle { width: 220px; height: 220px; }
}
/* =========================================
   Merchants Section (پذیرندگان) - Luxury & Glassmorphism
========================================= */
.merchants-section {
    padding: 80px 0;
    /* بک‌گراند با ترکیب بنفش روشن و افکت مرمری/شیشه‌ای */
    background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
    position: relative;
    overflow: hidden;
}

.merchant-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(86, 3, 173, 0.05);
    height: 100%;
    position: relative;
    z-index: 2;
}

.merchant-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(86, 3, 173, 0.12);
    border-color: var(--gold-accent);
}

.merchant-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold-accent);
    margin: 0 auto 20px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.2);
    transition: transform 0.3s ease;
}

.merchant-card:hover .merchant-avatar {
    transform: scale(1.05);
}

.merchant-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.merchant-info h4 {
    color: var(--brand-color);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
}

.merchant-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.merchant-info i {
    color: var(--gold-accent);
    margin-left: 5px;
}

.btn-merchant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(45deg, var(--brand-color), #8338EC);
    color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(86, 3, 173, 0.2);
}

.btn-merchant:hover {
    background: linear-gradient(45deg, #FFB703, #FFCA28);
    color: #2A1B3D !important;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
    transform: translateY(-2px);
}

/* موبایل فرست */
@media (max-width: 768px) {
    .merchants-section {
        padding: 50px 0;
    }
    .merchant-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    .merchant-avatar {
        width: 85px;
        height: 85px;
    }
}
.btn-luxury-solid {
    background: linear-gradient(45deg, var(--brand-color), #8338EC);
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(86, 3, 173, 0.2);
}

.btn-luxury-solid:hover {
    background: linear-gradient(45deg, #FFB703, #FFCA28);
    color: #2A1B3D !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
}


    /* استایل‌های بخش آزمایشگاه */
    .quality-lab-section {
        background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
        position: relative;
        overflow: hidden;
    }

    .quality-lab-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(131, 56, 236, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

    .quality-lab-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 40px rgba(86, 3, 173, 0.08);
        border: 1px solid #E9D8FD;
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .quality-lab-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(86, 3, 173, 0.15);
    }

    .lab-visual {
        position: relative;
    }

    .lab-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gold-accent);
        color: #222;
        padding: 8px 15px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
    }

    .lab-title {
        color: var(--brand-color);
        font-weight: 700;
        font-size: 1.8rem;
        position: relative;
        padding-bottom: 15px;
    }

    .lab-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 3px;
        background: var(--gold-accent);
        border-radius: 2px;
    }

    .lab-feature-item {
        background: #FBF9FE;
        border: 1px solid #E9D8FD;
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .lab-feature-item:hover {
        background: white;
        border-color: var(--brand-color);
        transform: translateX(-5px);
        box-shadow: 0 5px 15px rgba(86, 3, 173, 0.1);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        background: var(--bg-light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--brand-color);
        font-size: 18px;
    }

    .feature-content h5 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .feature-content p {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
    }

    .lab-results {
        background: linear-gradient(135deg, #FBF9FE 0%, #F3E5F5 100%);
        border-radius: 15px;
        padding: 20px;
    }

    .result-item {
        padding: 10px;
    }

    .result-value {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 5px;
        font-family: 'Vazirmatn', sans-serif;
    }

    .result-label {
        font-size: 12px;
        color: #666;
        font-weight: 500;
    }

    .lab-actions .btn {
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .lab-actions .btn-primary {
        background: var(--brand-color);
        border-color: var(--brand-color);
    }

    .lab-actions .btn-primary:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
    }

    .lab-actions .btn-outline-primary {
        color: var(--brand-color);
        border-color: var(--brand-color);
    }

    .lab-actions .btn-outline-primary:hover {
        background: var(--brand-color);
        color: white;
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .quality-lab-card {
            padding: 25px;
        }

        .lab-title {
            font-size: 1.5rem;
        }

        .result-value {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .quality-lab-section {
            padding: 40px 0;
        }

        .quality-lab-card {
            padding: 20px;
        }

        .lab-title {
            text-align: center;
        }

        .lab-title::after {
            right: 50%;
            transform: translateX(50%);
        }

        .lab-actions {
            text-align: center;
        }

        .lab-actions .btn {
            width: 100%;
            margin-bottom: 10px;
            margin-left: 0;
        }
    }

    @media (max-width: 576px) {
        .lab-feature-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .feature-icon {
            margin-bottom: 10px;
        }

        .result-value {
            font-size: 20px;
        }
    }