﻿body {
            font-family: Sahel, Sahel, sans-serif;
            background: #f2f5f7;
            color: #333;
            line-height: 1.6;
}
   * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }


        a {
            text-decoration: none;
            color: inherit;
        }

            a:hover {
                color: #fff;
            }

        /* هدر */
        header {
            background: #3498db;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
        }

        .search-box {
            flex: 1;
            margin: 10px;
        }

            .search-box input {
                width: 100%;
                padding: 10px 15px;
                border-radius: 50px;
                border: none;
                font-size: 14px;
            }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #fff;
        }

        /* منو */
        nav {
            flex-basis: 100%;
            margin-top: 10px;
        }

            nav ul {
                list-style: none;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                margin: 0;
                padding: 0;
                transition: max-height 0.3s ease;
                overflow: hidden;
            }

                nav ul li {
                    margin: 0 5px;
                }

                    nav ul li a {
                        display: block;
                        padding: 10px 20px;
                        font-weight: bold;
                        color: #fff;
                        border-radius: 5px;
                        transition: 0.3s;
                    }

                        nav ul li a:hover {
                            background: #2980b9;
                        }

        /* شماره تماس موبایل */
        .call-support {
            display: none;
            background: #e74c3c;
            color: #fff;
            padding: 8px 12px;
            border-radius: 50px;
            font-weight: bold;
        }

        /* محتوا و سایدبار */
        main {
            width: 90%;
            max-width: 1200px;
            margin: 30px auto;
            display: flex;
            gap: 20px;
        }

        .content {
            flex: 3;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar {
            flex: 1;
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            height: fit-content;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

            .sidebar h3 {
                margin-bottom: 15px;
                font-size: 16px;
                border-bottom: 1px solid #ddd;
                padding-bottom: 5px;
                color: #2c3e50;
            }

            .sidebar ul {
                list-style: none;
                padding: 0;
            }

                .sidebar ul li {
                    margin: 10px 0;
                }

        /* پرینترها */
        .printer-item {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: 0.3s;
            width: 100%;
        }

            .printer-item:hover {
                transform: translateY(-3px);
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .printer-item h4 {
                margin-bottom: 10px;
                font-size: 20px;
                color: #2c3e50;
            }

            .printer-item p {
                font-size: 14px;
                color: #555;
            }

        /* فوتر */
        footer {
            margin-top: 50px;
            padding: 20px 0;
            background: #2c3e50;
            text-align: center;
            font-size: 14px;
            color: #fff;
        }

        /* موبایل */
        @media (max-width: 900px) {
            .search-box {
                display: none;
            }
            /* حذف سرچ موبایل */
            .menu-toggle {
                display: block;
            }

            nav ul {
                flex-direction: column;
                max-height: 0;
                background: #3498db;
                border-radius: 10px;
            }

                nav ul.show {
                    max-height: 500px;
                }
                /* نمایش منو */
                nav ul li {
                    margin: 0;
                    border-bottom: 1px solid #2980b9;
                }

            .call-support {
                display: inline-block;
                margin: 10px;
            }

            main {
                flex-direction: column;
            }

            .sidebar {
                display: none;
            }
            /* مخفی کردن سایدبار در موبایل */
        }
            .nav-buttons {
        width: 100%;
        text-align: center;
        margin: 50px 0;
    }

    .nav-btn {
        border: none;
        padding: 14px 36px;
        margin: 8px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.35s ease;
        color: #fff;
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .nav-btn.prev {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
    }

    .nav-btn.next {
        background: linear-gradient(135deg, #ff512f, #dd2476);
    }

    .nav-btn:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
        opacity: 0.95;
    }

    .nav-btn:active {
        transform: scale(0.96);
    }

    @media (max-width: 576px) {
        .nav-btn {
            width: 90%;
            margin: 6px auto;
            display: block;
            font-size: 15px;
        }
    }
         .about-section {
            direction: rtl;
            background: #f7f9fc;
            padding: 80px 15px;
        }

        .about-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #fff;
            border-radius: 18px;
            padding: 50px 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .about-title {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        .about-text {
            font-size: 17px;
            line-height: 2.1;
            color: #444;
            text-align: justify;
        }

        @media (max-width: 768px) {
            .about-container {
                padding: 30px 20px;
            }

            .about-title {
                font-size: 24px;
            }

            .about-text {
                font-size: 15px;
            }
        }
         
/* موبایل */
@media (max-width: 600px) {
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
    direction: rtl;
}

.pagination-wrapper a,
.pagination-wrapper span {
    min-width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 0 6px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* لینک‌ها */
.pagination-wrapper a {
    background: #f1f3f6;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.pagination-wrapper a:hover {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255,65,108,0.4);
}

/* صفحه فعال */
.pagination-wrapper span {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,117,252,0.45);
}

/* موبایل */
@media (max-width: 768px) {
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
        margin: 0 4px;
    }
}
        .aparat-box {
    max-width: 900px;
    margin: 0 auto;
}

.aparat-box iframe {
    width: 100% !important;
    height: 500px !important;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
    a {
            text-decoration: none;
            color: inherit;
        }

        /* تیتر بالا */
   

        /* کارت اصلی */
        .product-wrapper {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 40px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* محتوای داخلی */
      
        /* عکس */
        .printer-image {
            flex: 1.2;
            text-align: center;
        }

        .printer-image img {
            width: 100%;
            max-width: 520px;
            border-radius: 16px;
            background: #fafafa;
            padding: 20px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }

        /* توضیحات */
        .printer-details {
            flex: 1.8;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .printer-details h2 {
            font-size: 30px;
            color: #1f2d3d;
        }

        .printer-details p {
            font-size: 16px;
            color: #555;
        }

        /* قیمت */
        .price {
            font-size: 26px;
            color: #e74c3c;
            font-weight: bold;
        }

        /* دکمه خرید */
        .buy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: #fff;
            font-size: 17px;
            font-weight: bold;
            border-radius: 50px;
            box-shadow: 0 8px 20px rgba(46,204,113,0.4);
            transition: 0.3s;
            width: fit-content;
        }

        .buy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(46,204,113,0.6);
        }

        /* توضیحات کامل پایین */
        .long-description {
            margin-top: 40px;
            background: #fff;
            padding: 30px;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            font-size: 15px;
            color: #444;
            line-height:40px
        }

        /* موبایل */
        @media (max-width: 900px) {
            .product-wrapper {
                padding: 25px;
            }

            main {
                flex-direction: column;
                gap: 30px;
            }

            .printer-details h2 {
                font-size: 24px;
            }

            .buy-btn {
                width: 100%;
            }
        }
             body {
            background: #f3f6f9;
        }

        .driver-wrapper {
            direction: rtl;
            font-family: Gandom;
            padding: 40px 0;
        }

        .driver-box {
            max-width: 900px;
            margin: auto;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 15px 40px rgba(0,0,0,.08);
            padding: 30px;
        }

        .driver-header {
            display: flex;
            gap: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 25px;
        }

        .driver-image img {
            width: 280px;
            border-radius: 12px;
            border: 1px solid #ddd;
        }

        .driver-info h1 {
            font-size: 20px;
            color: #1b5e20;
            margin-bottom: 12px;
        }

        .driver-info .short-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 15px;
        }

        .price-box {
            background: #e8f5e9;
            padding: 14px;
            border-radius: 10px;
            font-size: 16px;
            color: #2e7d32;
            font-weight: bold;
            width: fit-content;
        }

        .buy-section {
            margin-top: 30px;
            background: #fafafa;
            padding: 25px;
            border-radius: 12px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            color: #555;
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 14px;
        }

        .buy-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg,#2e7d32,#43a047);
            color: #fff;
            border-radius: 10px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            margin-top: 10px;
        }

        .buy-btn:hover {
            background: linear-gradient(135deg,#256b2b,#388e3c);
        }

        .driver-description {
            margin-top: 35px;
            font-size: 14px;
            line-height: 2;
            color: #555;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        @media(max-width:768px) {
            .driver-header {
                flex-direction: column;
                text-align: center;
            }

            .driver-image img {
                width: 100%;
                max-width: 300px;
            }

            .price-box {
                margin: auto;
            }
        }