/* ============================================================
   DASHTICHAPP - Main Stylesheet (نسخه کامل + ریسپانسیو)
   ============================================================ */

/* ================= تنظیمات کلی ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ================= هدر ================= */
.header {
    background-color: #0a0a0a;
    padding: 15px 0;
    border-bottom: 1px solid #222;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 45px; border-radius: 5px; }
.logo-text h1 { font-size: 18px; font-weight: 800; letter-spacing: 1px; }
.logo-text span { font-size: 10px; color: #aaa; display: block; margin-top: -5px; }

.main-nav ul { display: flex; gap: 25px; }
.main-nav a { font-size: 14px; color: #ccc; transition: 0.3s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px; right: 0;
    width: 100%; height: 2px;
    background-color: #fff;
}

.header-actions { display: flex; align-items: center; gap: 20px; }
.cart-btn, .user-btn {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #ccc; transition: 0.3s;
}
.cart-btn:hover, .user-btn:hover { color: #fff; }
.cart-count {
    background-color: #fff; color: #000;
    font-size: 10px; font-weight: bold;
    width: 18px; height: 18px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}

/* ================= هیرو ================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 2; display: flex; justify-content: flex-start; align-items: center; width: 100%; }
.hero-content { flex: 1; max-width: 550px; }
.hero-subtitle { font-size: 16px; color: #bbb; margin-bottom: 15px; }
.hero-title { font-size: 52px; font-weight: 900; line-height: 1.3; margin-bottom: 25px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.hero-title span { color: #ddd; }
.hero-description { font-size: 15px; color: #999; line-height: 1.8; margin-bottom: 35px; }
.hero-buttons { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-primary { background-color: #e0e0e0; color: #000; padding: 12px 30px; border-radius: 50px; font-weight: bold; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-primary:hover { background-color: #fff; transform: translateY(-2px); }
.btn-secondary { color: #fff; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-secondary:hover { color: #aaa; }

/* ================= آمار ================= */
.stats-section { background-color: #0a0a0a; padding: 50px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-item h3 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 5px; }
.stat-item p { font-size: 14px; color: #888; }

/* ================= محصولات ================= */
.products-section { padding: 80px 0; background-color: #111; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.section-header p { color: #888; font-size: 15px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { background-color: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 15px; overflow: hidden; position: relative; transition: 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); border-color: #444; }
.product-card.featured { background-color: #222; border: 2px solid #555; box-shadow: 0 0 30px rgba(255,255,255,0.05); }
.badge-instant, .badge-design { position: absolute; top: 15px; right: 15px; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: bold; z-index: 2; }
.badge-instant { background-color: #fff; color: #000; }
.badge-design { background-color: #333; color: #ccc; border: 1px solid #444; }
.product-image { height: 200px; overflow: hidden; background-color: #0a0a0a; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 18px; font-weight: bold; margin-bottom: 8px; }
.product-info p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 15px; flex: 1; }
.btn-product { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background-color: #fff; color: #000; padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: bold; transition: 0.3s; width: 100%; }
.btn-product:hover { background-color: #ddd; }
.btn-product.btn-outline { background-color: transparent; color: #fff; border: 1px solid #555; }
.btn-product.btn-outline:hover { background-color: #333; }

/* ================= مراحل سفارش ================= */
.process-section { padding: 80px 0; background-color: #0a0a0a; }
.process-steps { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.step { background-color: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 15px; padding: 30px 20px; text-align: center; width: 220px; transition: 0.3s; }
.step:hover { border-color: #555; transform: translateY(-5px); }
.step-number { width: 45px; height: 45px; background-color: #fff; color: #000; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: bold; margin: 0 auto 15px; }
.step h4 { font-size: 16px; margin-bottom: 10px; }
.step p { font-size: 12px; color: #888; line-height: 1.7; }
.step-arrow { color: #444; font-size: 20px; }

/* ================= FAQ ================= */
.faq-section { padding: 80px 0; background-color: #0a0a0a; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; color: #fff; padding: 20px; font-size: 15px; font-weight: bold; font-family: inherit; text-align: right; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; }
.faq-question:hover { background-color: #222; }
.faq-question i { transition: 0.3s; color: #888; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 20px; color: #aaa; font-size: 13px; line-height: 1.8; }

/* ================= فوتر ================= */
.footer { background-color: #0a0a0a; border-top: 1px solid #222; padding-top: 60px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-col h3 { font-size: 16px; font-weight: bold; margin-bottom: 20px; color: #fff; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 2px; background-color: #fff; }
.footer-col p { font-size: 13px; color: #888; line-height: 1.8; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #888; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; padding-right: 5px; }
.footer-contact li { font-size: 13px; color: #888; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact li i { color: #fff; font-size: 14px; width: 20px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a { width: 38px; height: 38px; background-color: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #888; font-size: 16px; transition: 0.3s; }
.footer-social a:hover { background-color: #fff; color: #000; border-color: #fff; transform: translateY(-3px); }
.footer-bottom { background-color: #050505; border-top: 1px solid #1a1a1a; padding: 20px 0; }
.footer-bottom-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 12px; color: #666; }
.payment-methods { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #888; }
.zarinpal-logo { height: 25px; background-color: #fff; padding: 3px 8px; border-radius: 5px; }

/* ================= صفحات ورود/ثبت‌نام ================= */
.auth-section { display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 120px 20px 60px; background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #0a0a0a 70%); width: 100%; }
.auth-box { background-color: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 15px; padding: 40px; width: 100%; max-width: 450px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); margin: 0 auto; }
.auth-title { font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 15px; color: #fff; }
.auth-desc { font-size: 14px; color: #888; text-align: center; margin-bottom: 25px; line-height: 1.7; }
.auth-desc strong { color: #fff; }
.auth-box .form-group { margin-bottom: 18px; text-align: right; }
.auth-box .form-group label { display: block; font-size: 13px; color: #ccc; margin-bottom: 8px; }
.auth-box .form-group input { width: 100%; padding: 14px; background-color: #111; border: 1px solid #333; border-radius: 8px; color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: 0.3s; box-sizing: border-box; }
.auth-box .form-group input:focus { border-color: #666; background-color: #0a0a0a; }
.btn-auth { width: 100%; background-color: #e0e0e0; color: #000; border: none; padding: 14px; border-radius: 50px; font-size: 15px; font-weight: bold; font-family: inherit; cursor: pointer; transition: 0.3s; margin-top: 10px; box-sizing: border-box; }
.btn-auth:hover { background-color: #fff; transform: translateY(-2px); }
.auth-link { color: #aaa; font-size: 13px; transition: 0.3s; }
.auth-link:hover { color: #fff; }
.auth-footer { text-align: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid #2a2a2a; font-size: 13px; color: #888; }
.alert { padding: 12px 15px; border-radius: 8px; font-size: 13px; margin-bottom: 20px; text-align: center; }
.alert-error { background-color: #3a1a1a; color: #ff8888; border: 1px solid #5a2a2a; }
.alert-success { background-color: #1a3a1a; color: #88ff88; border: 1px solid #2a5a2a; }

/* ================= پنل کاربری مشتری ================= */
.dashboard-section { padding: 120px 0 80px; min-height: 100vh; background-color: #f0f0f0; background-image: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(230,230,230,0.6) 100%); }
.dashboard-welcome { background: linear-gradient(135deg, #f5f5f5 0%, #d8d8d8 100%); border: 1px solid #e0e0e0; border-radius: 20px; padding: 28px 35px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.welcome-text h1 { font-size: 24px; margin-bottom: 6px; color: #111; font-weight: 800; }
.welcome-text p { color: #555; font-size: 14px; }
.btn-logout { background-color: #1a1a1a; color: #fff; padding: 12px 28px; border-radius: 50px; font-size: 13px; font-weight: bold; transition: 0.3s; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.btn-logout:hover { background-color: #000; transform: translateY(-2px); }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.dash-card { border-radius: 18px; padding: 22px 25px; display: flex; align-items: center; gap: 18px; transition: 0.3s; position: relative; overflow: hidden; cursor: pointer; min-height: 110px; text-decoration: none; }
.dash-card:hover { transform: translateY(-4px); }
.dash-card-light { background: linear-gradient(135deg, #f0f0f0 0%, #d5d5d5 100%); border: 1px solid #ccc; box-shadow: 0 8px 25px rgba(0,0,0,0.12); color: #111; }
.dash-card-light:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.2); border-color: #aaa; }
.dash-card-dark { background: linear-gradient(135deg, #2a2a2a 0%, #000 100%); border: 1px solid #333; box-shadow: 0 8px 25px rgba(0,0,0,0.35); color: #fff; }
.dash-card-dark:hover { background: linear-gradient(135deg, #333 0%, #111 100%); box-shadow: 0 15px 40px rgba(0,0,0,0.5); border-color: #555; }
.dash-card-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: 0.3s; }
.dash-card-light .dash-card-icon { background: linear-gradient(135deg, #2a2a2a, #111); color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.25); }
.dash-card-dark .dash-card-icon { background: linear-gradient(135deg, #fff, #ccc); color: #000; box-shadow: 0 4px 15px rgba(255,255,255,0.15); }
.dash-card-content { flex: 1; display: flex; flex-direction: column; gap: 6px; text-align: right; }
.dash-card-title { font-size: 14px; font-weight: 700; }
.dash-card-number { font-size: 32px; font-weight: 900; line-height: 1; }
.dash-card-light .dash-card-number, .dash-card-light .dash-card-title { color: #111; }
.dash-card-dark .dash-card-number, .dash-card-dark .dash-card-title { color: #fff; }
.dash-card-arrow { font-size: 16px; opacity: 0.6; }
.dash-card-light .dash-card-arrow { color: #333; }
.dash-card-dark .dash-card-arrow { color: #fff; }
.dashboard-box { background: linear-gradient(135deg, #f5f5f5 0%, #d8d8d8 100%); border: 1px solid #ddd; border-radius: 20px; padding: 30px 35px; margin-bottom: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid #ccc; flex-wrap: wrap; gap: 10px; }
.dashboard-box h2 { font-size: 18px; color: #111; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.dashboard-box h2 i { color: #555; font-size: 16px; }
.link-view-all, .link-back { font-size: 13px; color: #333; display: inline-flex; align-items: center; gap: 5px; transition: 0.3s; padding: 8px 15px; border-radius: 30px; background-color: #fff; border: 1px solid #ccc; font-weight: 600; }
.link-view-all:hover, .link-back:hover { background-color: #111; color: #fff; border-color: #111; }
.table-wrapper { overflow-x: auto; width: 100%; }
.orders-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; min-width: 600px; }
.orders-table th, .orders-table td { padding: 16px 15px; text-align: right; font-size: 13px; white-space: nowrap; }
.orders-table th { color: #666; font-weight: 700; font-size: 12px; padding-bottom: 10px; }
.orders-table tbody tr { background-color: #fff; transition: 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.orders-table tbody tr:hover { background-color: #f9f9f9; }
.orders-table tbody tr td:first-child { border-radius: 12px 0 0 12px; color: #111; font-weight: 700; }
.orders-table tbody tr td:last-child { border-radius: 0 12px 12px 0; }
.orders-table td { color: #333; font-weight: 500; }
.link-detail { color: #fff; font-size: 12px; transition: 0.3s; padding: 6px 14px; border-radius: 20px; background-color: #111; border: 1px solid #111; display: inline-block; font-weight: 600; }
.link-detail:hover { background-color: #444; border-color: #444; }
.status-badge { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: bold; white-space: nowrap; }
.status-pending_payment { background-color: #ffe4b3; color: #8a5a00; }
.status-pending_design { background-color: #d4d4ff; color: #3a3a8a; }
.status-design_uploaded { background-color: #b3e6e6; color: #005a5a; }
.status-pending_approval { background-color: #fffb99; color: #7a7a00; }
.status-in_progress { background-color: #c4e8c4; color: #2a6a2a; }
.status-printing { background-color: #b8d4e8; color: #2a5a7a; }
.status-printed { background-color: #a8e8a8; color: #1a6a1a; }
.status-shipping { background-color: #e8c4e8; color: #6a2a6a; }
.status-delivered { background-color: #a8f0a8; color: #0a5a0a; }
.status-cancelled { background-color: #ffb8b8; color: #8a1a1a; }
.status-pending { background-color: #ddd; color: #555; }
.pay-status { display: inline-block; padding: 5px 12px; border-radius: 15px; font-size: 11px; font-weight: 700; }
.pay-status.paid { background-color: #a8f0a8; color: #0a5a0a; }
.pay-status.unpaid { background-color: #ffb8b8; color: #8a1a1a; }
.filter-tabs { display: flex; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.filter-tab { background-color: #fff; border: 1px solid #ccc; color: #555; padding: 10px 22px; border-radius: 50px; font-size: 13px; transition: 0.3s; font-weight: 600; }
.filter-tab:hover { color: #111; border-color: #111; }
.filter-tab.active { background-color: #111; color: #fff; border-color: #111; font-weight: bold; }
.order-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.order-info-grid > div { font-size: 14px; color: #111; padding: 15px 18px; background-color: #fff; border: 1px solid #ddd; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; gap: 10px; font-weight: 600; flex-wrap: wrap; }
.order-info-grid strong { color: #666; font-weight: 500; font-size: 12px; }
.order-notes { background-color: #fff; border: 1px solid #ddd; padding: 18px; border-radius: 12px; margin-top: 15px; }
.order-notes strong { color: #555; font-size: 12px; display: block; margin-bottom: 10px; font-weight: 700; }
.order-notes p { color: #222; font-size: 14px; line-height: 1.8; }
.files-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
.file-item { background-color: #fff; border: 1px solid #ddd; border-radius: 15px; padding: 22px; display: flex; gap: 15px; align-items: flex-start; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.file-item i { font-size: 28px; color: #fff; background: linear-gradient(135deg, #333, #111); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.file-item strong { color: #111; font-size: 14px; display: block; margin-bottom: 5px; font-weight: 700; word-break: break-all; }
.file-item p { color: #666; font-size: 12px; margin-bottom: 10px; }
.btn-sm { display: inline-block; background-color: #111; color: #fff; padding: 8px 18px; border-radius: 25px; font-size: 12px; transition: 0.3s; font-weight: 600; }
.btn-sm:hover { background-color: #444; }
.action-buttons { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.btn-approve { background: linear-gradient(135deg, #2a7a2a, #1a5a1a); color: #fff; border: none; padding: 14px 35px; border-radius: 50px; font-size: 14px; font-weight: bold; cursor: pointer; transition: 0.3s; font-family: inherit; box-shadow: 0 4px 15px rgba(42, 122, 42, 0.3); }
.btn-approve:hover { transform: translateY(-2px); }
.btn-secondary-sm { background-color: #111; color: #fff; border: none; padding: 12px 25px; border-radius: 50px; font-size: 13px; cursor: pointer; transition: 0.3s; font-family: inherit; font-weight: 600; }
.btn-secondary-sm:hover { background-color: #444; }
.help-text { color: #555; font-size: 13px; margin-bottom: 15px; padding: 12px 15px; background-color: #fff; border-radius: 10px; border-right: 3px solid #111; font-weight: 500; }
.messages-list { display: flex; flex-direction: column; gap: 15px; }
.message-item { background-color: #fff; border-radius: 12px; padding: 20px; border-right: 4px solid #ccc; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.message-item.message-customer { border-right-color: #333; background-color: #f9f9f9; }
.message-item.message-admin { border-right-color: #a5a53a; background-color: #fffef0; }
.message-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 10px; }
.message-header strong { color: #111; font-size: 13px; font-weight: 700; }
.message-header span { color: #999; font-size: 11px; }
.message-item p { color: #333; font-size: 14px; line-height: 1.8; }
.dashboard-box .form-group { margin-bottom: 18px; }
.dashboard-box .form-group label { display: block; font-size: 13px; color: #333; margin-bottom: 8px; font-weight: 700; }
.dashboard-box .form-group input, .dashboard-box .form-group textarea { width: 100%; padding: 14px 16px; background-color: #fff; border: 1px solid #ccc; border-radius: 10px; color: #111; font-size: 14px; font-family: inherit; outline: none; transition: 0.3s; box-sizing: border-box; }
.dashboard-box .form-group input:focus, .dashboard-box .form-group textarea:focus { border-color: #111; }
.dashboard-box .btn-auth { width: auto; padding: 14px 40px; background-color: #111; color: #fff; border: none; border-radius: 50px; font-size: 14px; font-weight: bold; cursor: pointer; transition: 0.3s; font-family: inherit; }
.dashboard-box .btn-auth:hover { background-color: #333; }

/* ================= صفحه محصول ================= */
.product-page { padding: 120px 0 80px; min-height: 100vh; background-color: #f5f5f5; }
.product-header { text-align: center; margin-bottom: 30px; }
.product-header h1 { font-size: 30px; font-weight: 900; color: #111; margin: 15px 0 10px; }
.product-header p { color: #666; font-size: 14px; }
.product-header .link-back { color: #555; font-size: 13px; }
.copyright-warning { background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%); border-right: 4px solid #f39c12; border-radius: 12px; padding: 15px 20px; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; color: #856404; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.copyright-warning i { font-size: 20px; color: #f39c12; }
.product-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 25px; align-items: start; }
.product-config-panel { background-color: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.panel-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 2px solid #f0f0f0; }
.panel-header i { font-size: 22px; color: #fff; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.panel-header h2 { font-size: 18px; color: #111; font-weight: 800; }
.setting-row { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px dashed #e5e5e5; }
.setting-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.setting-label { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; color: #333; font-size: 14px; font-weight: 700; }
.setting-label i { color: #fff; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.icon-color-copy { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; }
.icon-color-print { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important; }
.icon-color-pages { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important; }
.icon-color-service { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important; }
.icon-color-notes { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important; }
.icon-color-upload { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important; }
.icon-color-user { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important; }
.icon-color-questions { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important; }
.setting-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt-btn { background-color: #f8f8f8; border: 2px solid #e8e8e8; border-radius: 14px; padding: 18px; cursor: pointer; transition: 0.25s; text-align: right; font-family: inherit; display: flex; flex-direction: column; gap: 5px; }
.opt-btn strong { font-size: 16px; color: #111; font-weight: 800; }
.opt-btn span { font-size: 12px; color: #888; }
.opt-btn.active { background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); border-color: #000; }
.opt-btn.active strong { color: #fff; }
.opt-btn.active span { color: #aaa; }
.service-cards { display: flex; flex-direction: column; gap: 12px; }
.service-card { background-color: #f8f8f8; border: 2px solid #e8e8e8; border-radius: 14px; padding: 18px 20px; cursor: pointer; transition: 0.25s; font-family: inherit; display: flex; align-items: center; gap: 15px; text-align: right; width: 100%; }
.service-ico { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, #f0f0f0, #e0e0e0); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #111; flex-shrink: 0; }
.service-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.service-info strong { font-size: 15px; color: #111; font-weight: 800; }
.service-info span { font-size: 12px; color: #888; }
.service-arrow { color: #ccc; font-size: 14px; }
.service-card.active { background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); border-color: #000; }
.service-card.active .service-ico { background: linear-gradient(135deg, #fff, #ccc); color: #000; }
.service-card.active .service-info strong { color: #fff; }
.service-card.active .service-info span { color: #aaa; }
.service-card.active .service-arrow { color: #fff; }
.setting-row textarea { width: 100%; padding: 14px; border: 2px solid #e8e8e8; border-radius: 12px; background-color: #f8f8f8; font-family: inherit; font-size: 14px; color: #111; outline: none; transition: 0.2s; resize: vertical; line-height: 1.7; box-sizing: border-box; }
.setting-row textarea:focus { border-color: #111; background-color: #fff; }
.product-summary-panel { position: sticky; top: 100px; }
.summary-inner { background-color: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.summary-inner h3 { font-size: 17px; color: #111; font-weight: 800; margin-bottom: 22px; padding-bottom: 15px; border-bottom: 2px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.summary-inner h3 i { color: #fff; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); width: 35px; height: 35px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.summary-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 8px 0; gap: 10px; flex-wrap: wrap; }
.sum-row span { color: #888; }
.sum-row strong { color: #111; font-weight: 700; text-align: left; }
.summary-divider { height: 2px; background: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0); margin: 20px 0; }
.price-final { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.price-final > span { color: #888; font-size: 13px; }
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-old { font-size: 15px; color: #ff5555; text-decoration: line-through; text-decoration-thickness: 2px; font-weight: 600; }
.price-new { font-size: 30px; font-weight: 900; color: #111; line-height: 1; }
.price-unit { font-size: 13px; color: #888; }
.discount-tag { background: linear-gradient(135deg, #ff4444, #cc0000); color: #fff; padding: 10px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; }
.price-pending { background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 100%); border-radius: 14px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; border-right: 4px solid #4a9eff; }
.price-pending i { font-size: 24px; color: #4a9eff; background-color: #fff; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-pending strong { display: block; color: #111; font-size: 14px; margin-bottom: 5px; font-weight: 800; }
.price-pending p { color: #555; font-size: 12px; line-height: 1.7; }
.btn-checkout { width: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); color: #fff; border: none; padding: 17px; border-radius: 14px; font-size: 14px; font-weight: bold; font-family: inherit; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 15px; }
.btn-checkout:hover { transform: translateY(-2px); }
.secure-note { text-align: center; font-size: 12px; color: #888; display: flex; align-items: center; justify-content: center; gap: 6px; padding-top: 15px; border-top: 1px dashed #e5e5e5; }
.secure-note i { color: #2ecc71; }
.file-upload-area { position: relative; margin-bottom: 15px; }
.file-upload-area input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; }
.file-upload-label { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 40px 20px; background: linear-gradient(135deg, #f8f8f8, #f0f0f0); border: 2px dashed #ccc; border-radius: 15px; cursor: pointer; transition: 0.3s; text-align: center; }
.file-upload-label i { font-size: 40px; color: #667eea; }
.file-upload-label strong { color: #111; font-size: 15px; font-weight: 700; }
.file-upload-label span { color: #888; font-size: 12px; }
.files-list { margin-top: 20px; }
.files-list-title { font-size: 14px; color: #333; font-weight: 800; margin-bottom: 15px; }
.uploaded-file-card { background: #fff; border: 2px solid #e8e8e8; border-radius: 16px; padding: 18px; margin-bottom: 15px; transition: 0.3s; }
.file-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #e5e5e5; flex-wrap: wrap; }
.file-icon-wrap { width: 55px; height: 55px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0; }
.icon-pdf { background: linear-gradient(135deg, #ff4757 0%, #c0392b 100%); }
.icon-word { background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%); }
.icon-image { background: linear-gradient(135deg, #a55eea 0%, #6c3eb8 100%); }
.icon-zip { background: linear-gradient(135deg, #f7b731 0%, #d49000 100%); }
.icon-default { background: linear-gradient(135deg, #778ca3 0%, #4b6584 100%); }
.file-info-text { flex: 1; display: flex; flex-direction: column; gap: 6px; text-align: right; min-width: 0; }
.file-info-text strong { color: #111; font-size: 14px; font-weight: 700; word-break: break-all; }
.file-info-text span { color: #666; font-size: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.file-remove-btn { background-color: #ffe5e5; color: #cc0000; border: none; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; flex-shrink: 0; }
.file-settings-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0; padding: 12px; background-color: #f8f8f8; border-radius: 12px; }
.fs-group label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #555; font-weight: 700; margin-bottom: 8px; }
.fs-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.fs-btn { background-color: #fff; border: 2px solid #e0e0e0; border-radius: 8px; padding: 9px; font-family: inherit; font-size: 12px; font-weight: 700; cursor: pointer; transition: 0.2s; color: #555; }
.fs-btn.active { background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); border-color: #000; color: #fff; }
.file-page-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.page-mode-btn { background-color: #f8f8f8; border: 2px solid #e8e8e8; border-radius: 12px; padding: 12px 15px; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px; color: #555; font-size: 13px; font-weight: 700; }
.page-mode-btn.active { background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); border-color: #000; color: #fff; }
.file-range-box { background-color: #f8f8f8; border-radius: 12px; padding: 15px; margin-top: 12px; }
.file-range-input { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.file-range-input input { flex: 1; min-width: 90px; padding: 11px 14px; border: 2px solid #ddd; border-radius: 10px; font-family: inherit; font-size: 13px; background-color: #fff; outline: none; box-sizing: border-box; }
.btn-add-file-range { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; border: none; padding: 11px 22px; border-radius: 10px; font-family: inherit; font-size: 13px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.file-price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #f0f4ff; border-radius: 10px; margin-top: 12px; border-right: 4px solid #667eea; flex-wrap: wrap; gap: 10px; }
.product-config-panel .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.product-config-panel .form-group { margin-bottom: 15px; }
.product-config-panel .form-group label { display: block; font-size: 13px; color: #333; margin-bottom: 8px; font-weight: 700; }
.product-config-panel .form-group input, .product-config-panel .form-group select, .product-config-panel .form-group textarea { width: 100%; padding: 13px 15px; background-color: #f8f8f8; border: 2px solid #e8e8e8; border-radius: 12px; color: #111; font-size: 14px; font-family: inherit; outline: none; box-sizing: border-box; }
.product-config-panel .form-group input:focus, .product-config-panel .form-group select:focus, .product-config-panel .form-group textarea:focus { border-color: #667eea; background-color: #fff; }
.product-config-panel .form-group textarea { resize: vertical; line-height: 1.7; }
.btn-location { width: 100%; margin-top: 10px; background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #fff; border: none; padding: 14px; border-radius: 12px; font-family: inherit; font-size: 14px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; }
.first-order-badge { background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%); border: 2px solid #43e97b; border-radius: 12px; padding: 12px 15px; margin: 15px 0; display: flex; align-items: center; gap: 10px; color: #2a7a2a; font-size: 13px; font-weight: 600; }
.first-order-badge i { font-size: 20px; color: #43e97b; background: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.first-order-badge strong { color: #1a5a1a; font-weight: 800; }

/* ================= صفحه موفقیت ================= */
.success-section { padding: 120px 0 80px; min-height: 100vh; background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); display: flex; align-items: center; }
.success-box { background-color: #fff; border-radius: 24px; padding: 50px 40px; max-width: 600px; margin: 0 auto; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.success-icon { width: 90px; height: 90px; background: linear-gradient(135deg, #43e97b, #38f9d7); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 40px; color: #fff; }
.success-box h1 { font-size: 24px; color: #111; margin-bottom: 12px; font-weight: 900; }
.success-box > p { color: #666; font-size: 15px; margin-bottom: 30px; }
.success-info { background: #e8f4fd; border-radius: 15px; padding: 20px; display: flex; gap: 15px; align-items: flex-start; margin-bottom: 25px; text-align: right; border-right: 4px solid #4a9eff; flex-wrap: wrap; }
.success-info i { font-size: 24px; color: #4a9eff; background: #fff; width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.success-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.success-buttons .btn-primary, .success-buttons .btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-size: 14px; font-weight: bold; transition: 0.3s; }
.success-buttons .btn-primary { background: linear-gradient(135deg, #1a1a1a, #000); color: #fff; }
.success-buttons .btn-secondary { background-color: #f0f0f0; color: #333; }

/* ================= MODAL ================= */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal-box { background: #fff; border-radius: 20px; padding: 30px; max-width: 500px; width: 100%; animation: modalIn 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.map-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 2px solid #f0f0f0; }
.map-modal-header h3 { font-size: 16px; color: #111; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.map-modal-header h3 i { color: #4a9eff; }
.map-close-btn { background: #f0f0f0; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 16px; color: #555; }
.map-instruction { background: #fff9e6; border-right: 4px solid #ffc107; padding: 10px 15px; border-radius: 10px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #8a6a00; font-size: 13px; }
#map { height: 400px; border-radius: 12px; margin-bottom: 15px; z-index: 1; width: 100%; }
.map-coords { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.map-coords > div { background: #f8f8f8; padding: 10px 15px; border-radius: 10px; font-size: 12px; color: #555; text-align: center; }
.map-coords strong { color: #111; font-size: 13px; display: block; margin-top: 4px; direction: ltr; }
.map-address-preview { background: #e8f4fd; border-right: 4px solid #4a9eff; padding: 12px 15px; border-radius: 10px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #2c5f8d; font-size: 13px; line-height: 1.6; }
.map-modal-buttons { display: grid; grid-template-columns: 1fr 2fr; gap: 10px; }
.btn-map-cancel, .btn-map-confirm { border: none; padding: 14px; border-radius: 12px; font-family: inherit; font-size: 14px; font-weight: bold; cursor: pointer; }
.btn-map-cancel { background: #f0f0f0; color: #555; }
.btn-map-confirm { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ============================================================
   ریسپانسیو - تبلت (900px و پایین‌تر)
   ============================================================ */
@media (max-width: 900px) {
    .container { padding: 0 15px; }
    
    /* هدر */
    .header { padding: 10px 0; }
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .logo { flex: 0 0 auto; }
    .logo-img { height: 35px; }
    .logo-text h1 { font-size: 14px; }
    .logo-text span { font-size: 9px; }
    .main-nav { order: 3; width: 100%; }
    .main-nav ul {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 10px;
        border-top: 1px solid #222;
    }
    .main-nav a { font-size: 12px; }
    .header-actions { gap: 10px; }
    .cart-btn, .user-btn { font-size: 11px; gap: 5px; }
    .cart-btn span:last-child, .user-btn span:last-child { display: none; }
    .user-btn .fa-user, .user-btn .fa-regular { font-size: 14px; }
    
    /* هیرو */
    .hero-section { height: auto; min-height: 100vh; padding: 120px 0 60px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 14px; }
    .hero-description { font-size: 13px; }
    .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    /* آمار */
    .stats-container { gap: 20px; }
    .stat-item { min-width: 100px; flex: 0 0 calc(50% - 10px); }
    .stat-item h3 { font-size: 28px; }
    .stat-item p { font-size: 12px; }
    
    /* محصولات */
    .products-section { padding: 50px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section-header h2 { font-size: 24px; }
    
    /* مراحل */
    .process-section { padding: 50px 0; }
    .process-steps { flex-direction: column; }
    .step { width: 100%; max-width: 300px; }
    .step-arrow { transform: rotate(90deg); }
    
    /* FAQ */
    .faq-section { padding: 50px 0; }
    
    /* فوتر */
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom-container { flex-direction: column; text-align: center; }
    
    /* پنل کاربری */
    .dashboard-section { padding: 100px 0 50px; }
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .dash-card { padding: 15px; min-height: 90px; gap: 12px; }
    .dash-card-icon { width: 45px; height: 45px; font-size: 18px; }
    .dash-card-title { font-size: 12px; }
    .dash-card-number { font-size: 24px; }
    .dashboard-welcome { padding: 20px; flex-direction: column; text-align: center; }
    .dashboard-welcome h1 { font-size: 20px; }
    .dashboard-box { padding: 20px; }
    .order-info-grid { grid-template-columns: 1fr; }
    .files-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    
    /* صفحه محصول */
    .product-page { padding: 100px 0 50px; }
    .product-layout { grid-template-columns: 1fr; }
    .product-summary-panel { position: static; }
    .product-header h1 { font-size: 22px; }
    .panel-header h2 { font-size: 16px; }
    .config-options { grid-template-columns: 1fr; }
    .setting-options { grid-template-columns: 1fr; }
    .file-page-options { grid-template-columns: 1fr; }
    .file-settings-row { grid-template-columns: 1fr; }
    .file-range-input { flex-direction: column; align-items: stretch; }
    .file-range-input input { width: 100%; }
    .btn-add-file-range { width: 100%; justify-content: center; }
    .product-config-panel .form-row { grid-template-columns: 1fr; }
    .map-modal-buttons { grid-template-columns: 1fr; }
    .map-coords { grid-template-columns: 1fr; }
    #map { height: 300px !important; }
}

/* ============================================================
   ریسپانسیو - موبایل (600px و پایین‌تر)
   ============================================================ */
@media (max-width: 600px) {
    .container { padding: 0 12px; }
    
    /* هدر */
    .header-container { gap: 8px; }
    .logo-img { height: 30px; }
    .logo-text h1 { font-size: 12px; }
    .logo-text span { display: none; }
    .main-nav ul { gap: 8px; padding-top: 8px; }
    .main-nav a { font-size: 11px; }
    .cart-count { width: 16px; height: 16px; font-size: 9px; }
    
    /* هیرو */
    .hero-section { padding: 100px 0 40px; min-height: auto; }
    .hero-title { font-size: 28px; margin-bottom: 15px; }
    .hero-subtitle { font-size: 13px; margin-bottom: 10px; }
    .hero-description { font-size: 12px; margin-bottom: 20px; }
    .hero-buttons { gap: 10px; }
    .btn-primary { padding: 12px 20px; font-size: 13px; }
    .btn-secondary { font-size: 12px; }
    
    /* آمار */
    .stats-section { padding: 30px 0; }
    .stats-container { gap: 15px; }
    .stat-item { flex: 0 0 calc(50% - 8px); }
    .stat-item h3 { font-size: 22px; }
    .stat-item p { font-size: 11px; }
    
    /* محصولات */
    .products-section { padding: 40px 0; }
    .products-grid { grid-template-columns: 1fr; gap: 15px; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 20px; }
    .section-header p { font-size: 13px; }
    .product-info h3 { font-size: 16px; }
    
    /* مراحل */
    .process-section { padding: 40px 0; }
    .step { padding: 20px 15px; }
    .step h4 { font-size: 14px; }
    
    /* FAQ */
    .faq-section { padding: 40px 0; }
    .faq-question { padding: 15px; font-size: 13px; }
    .faq-answer p { padding: 0 15px 15px; font-size: 12px; }
    
    /* فوتر */
    .footer { padding-top: 40px; }
    .footer-container { grid-template-columns: 1fr; gap: 25px; padding-bottom: 25px; text-align: center; }
    .footer-col h3 { display: inline-block; }
    .footer-col h3::after { right: 50%; transform: translateX(50%); }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom-container { flex-direction: column; text-align: center; gap: 10px; }
    
    /* پنل کاربری */
    .dashboard-section { padding: 90px 0 40px; }
    .dashboard-grid { grid-template-columns: 1fr; gap: 10px; }
    .dash-card { padding: 15px; }
    .dashboard-box { padding: 15px; }
    .dashboard-welcome { padding: 18px; }
    .welcome-text h1 { font-size: 18px; }
    .orders-table { font-size: 11px; min-width: 500px; }
    .orders-table th, .orders-table td { padding: 10px 6px; }
    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 8px 14px; font-size: 11px; }
    
    /* صفحه محصول */
    .product-page { padding: 90px 0 40px; }
    .product-config-panel { padding: 18px; border-radius: 15px; }
    .summary-inner { padding: 20px; border-radius: 15px; }
    .product-header h1 { font-size: 20px; }
    .panel-header i { width: 38px; height: 38px; font-size: 18px; }
    .setting-label { font-size: 13px; }
    .setting-label i { width: 28px; height: 28px; font-size: 12px; }
    .opt-btn { padding: 14px; }
    .opt-btn strong { font-size: 14px; }
    .opt-btn span { font-size: 11px; }
    .summary-inner h3 { font-size: 15px; }
    .price-new { font-size: 22px; }
    .btn-checkout { padding: 15px; font-size: 13px; }
    .file-icon-wrap { width: 45px; height: 45px; font-size: 20px; }
    .file-info-text strong { font-size: 12px; }
    .file-info-text span { font-size: 11px; }
    .uploaded-file-card { padding: 14px; }
    .file-upload-label { padding: 30px 15px; }
    .file-upload-label i { font-size: 32px; }
    .file-upload-label strong { font-size: 13px; }
    .file-upload-label span { font-size: 11px; }
    
    /* صفحه موفقیت */
    .success-section { padding: 100px 0 60px; }
    .success-box { padding: 30px 20px; }
    .success-icon { width: 70px; height: 70px; font-size: 30px; }
    .success-box h1 { font-size: 20px; }
    .success-box > p { font-size: 13px; }
    .success-buttons { flex-direction: column; }
    .success-buttons .btn-primary, .success-buttons .btn-secondary { width: 100%; justify-content: center; }
    
    /* مودال */
    .modal-box { padding: 20px; border-radius: 15px; }
    .map-modal-header h3 { font-size: 14px; }
    #map { height: 250px !important; }
}