/**
 * WRON Prompts Store - استایل‌های کامل
 * طراحی لاکچری با رنگ کرمی و طلایی
 */

/* ریست استایل‌های پیش‌فرض */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

/* متغیرهای رنگ */
:root {
    /* رنگ‌های اصلی */
    --cream-primary: #F5F1E8;
    --cream-secondary: #E8E2D1;
    --cream-tertiary: #FFFBF5;
    
    /* طیف طلایی */
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-tertiary: #F4D03F;
    --gold-light: #FFE55C;
    --gold-dark: #996515;
    
    /* رنگ‌های سیاه و سفید */
    --black-primary: #1A1A1A;
    --black-secondary: #2D2D2D;
    --black-light: #404040;
    --white-primary: #FFFFFF;
    --white-secondary: #FAFAFA;
    
    /* رنگ‌های زرد منو */
    --menu-yellow: #FFD700;
    --menu-yellow-dark: #FFC107;
    --menu-yellow-light: #FFF176;
    
    /* رنگ‌های دکمه */
    --btn-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --btn-gold-hover: linear-gradient(135deg, #E6C158 0%, #F8DA5F 50%, #E6C158 100%);
    --btn-gold-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    --btn-gold-shadow-hover: 0 6px 25px rgba(212, 175, 55, 0.4);
    
    /* رنگ‌های متن */
    --text-primary: #2C1810;
    --text-secondary: #5D4037;
    --text-light: #8D6E63;
    --text-gold: #D4AF37;
    
    /* رنگ‌های فرم */
    --input-bg: #FFFBF5;
    --input-border: #E0D6C9;
    --input-focus: #D4AF37;
    --input-focus-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    --select-bg: #FFF9EF;
    
    /* رنگ‌های وضعیت */
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --info: #3498DB;
    
    /* سایه‌ها */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* شعاع‌های حاشیه */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* فاصله‌ها */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* فونت‌ها */
    --font-heading-en: 'Cinzel', serif;
    --font-body-en: 'Playfair Display', serif;
    --font-fa: 'Vazirmatn', sans-serif;
    
    /* عرض‌ها */
    --container-width: 1200px;
    --sidebar-width: 320px;
}

/* فونت‌ها و تایپوگرافی */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fa);
    background-color: var(--cream-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* خط طلایی دور صفحه */
.gold-border-frame {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1000;
    border: 12px solid transparent;
    background: linear-gradient(var(--cream-primary), var(--cream-primary)) padding-box,
                linear-gradient(45deg, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--gold-dark)) border-box;
    background-size: 300% 300%;
    animation: borderGlow 8s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* هامبورگر منو */
.hamburger-menu {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--white-primary);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.hamburger-menu:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--black-primary);
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--white-primary);
}

/* هدر اصلی */
.main-header {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-family: var(--font-heading-en);
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 
        3px 3px 0 var(--black-primary),
        -3px -3px 0 var(--black-primary),
        3px -3px 0 var(--black-primary),
        -3px 3px 0 var(--black-primary),
        0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    line-height: 1;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { text-shadow: 
        3px 3px 0 var(--black-primary),
        -3px -3px 0 var(--black-primary),
        3px -3px 0 var(--black-primary),
        -3px 3px 0 var(--black-primary),
        0 0 20px rgba(212, 175, 55, 0.3); }
    to { text-shadow: 
        3px 3px 0 var(--black-primary),
        -3px -3px 0 var(--black-primary),
        3px -3px 0 var(--black-primary),
        -3px 3px 0 var(--black-primary),
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.2); }
}

.logo-subtitle {
    font-family: var(--font-body-en);
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    font-weight: 500;
}

/* منوی کشویی */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--white-primary);
    box-shadow: var(--shadow-xl);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--gold-primary);
}

.sidebar-menu.active {
    right: 0;
}

.menu-header {
    padding: var(--space-lg);
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--cream-secondary);
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--menu-yellow);
    border-radius: var(--radius-full);
    color: var(--menu-yellow);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: var(--menu-yellow);
    color: var(--white-primary);
    transform: rotate(90deg);
}

.menu-items {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: transparent;
    border: 2px solid var(--menu-yellow);
    border-radius: var(--radius-md);
    color: var(--black-primary);
    font-family: var(--font-fa);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--menu-yellow-light), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.menu-item:hover::before {
    transform: translateX(100%);
}

.menu-item:hover {
    background: var(--menu-yellow);
    color: var(--white-primary);
    transform: translateX(-8px);
    box-shadow: var(--shadow-md);
}

.menu-item .menu-icon {
    font-size: 1.4rem;
    min-width: 40px;
    display: flex;
    justify-content: center;
}

.menu-item .menu-text {
    flex: 1;
}

.timer-display {
    background: var(--black-primary);
    color: var(--gold-light);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 90px;
    text-align: center;
    direction: ltr;
}

.menu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--cream-secondary);
}

.discount-badge {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-tertiary));
    color: var(--white-primary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* محتوای اصلی */
.main-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-3xl);
    position: relative;
    z-index: 10;
}

.hero-section {
    text-align: center;
    padding: var(--space-3xl) 0;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-fa);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.gold-text {
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.main-action {
    margin: var(--space-2xl) 0;
}

.primary-btn {
    font-family: var(--font-fa);
    font-size: 1.3rem;
    font-weight: 700;
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.gold-btn {
    background: var(--btn-gold-gradient);
    color: var(--black-primary);
    box-shadow: var(--btn-gold-shadow);
    border: 3px solid var(--gold-dark);
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: right 0.6s ease;
}

.gold-btn:hover::before {
    right: 100%;
}

.gold-btn:hover {
    background: var(--btn-gold-hover);
    transform: translateY(-4px);
    box-shadow: var(--btn-gold-shadow-hover);
}

.gold-btn:active {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.gold-btn:hover .btn-arrow {
    transform: translateX(8px);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: var(--font-heading-en);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--space-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* کانتینر صفحات */
.pages-container {
    min-height: 500px;
}

.page {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--cream-tertiary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold-light);
}

.page-title {
    font-family: var(--font-fa);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black-primary);
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* شبکه دکمه‌ها */
.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.action-btn {
    padding: var(--space-xl);
    background: var(--white-primary);
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    font-family: var(--font-fa);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-primary);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.action-btn:hover {
    background: var(--gold-primary);
    color: var(--white-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.action-btn .btn-icon {
    font-size: 2.5rem;
}

.action-btn .btn-description {
    font-size: 0.9rem;
    font-weight: normal;
    color: inherit;
    opacity: 0.9;
}

/* کارت پرومپت */
.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.prompt-card {
    background: var(--white-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--cream-secondary);
    transition: all 0.4s ease;
    position: relative;
}

.prompt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.prompt-card-header {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-tertiary));
    padding: var(--space-lg);
    color: var(--white-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prompt-id {
    font-family: monospace;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: bold;
}

.copy-id-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-primary);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.copy-id-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.prompt-card-body {
    padding: var(--space-lg);
}

.prompt-title {
    font-family: var(--font-fa);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.prompt-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.prompt-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.feature-tag {
    background: var(--cream-tertiary);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cream-secondary);
}

.prompt-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.prompt-price {
    font-family: var(--font-heading-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.prompt-difficulty {
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.difficulty-beginner {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.difficulty-intermediate {
    background: #FFF3E0;
    color: #EF6C00;
    border: 1px solid #FFCC80;
}

.difficulty-advanced {
    background: #F3E5F5;
    color: #7B1FA2;
    border: 1px solid #CE93D8;
}

.difficulty-expert {
    background: #E8EAF6;
    color: #303F9F;
    border: 1px solid #9FA8DA;
}

.difficulty-professional {
    background: #E0F2F1;
    color: #00796B;
    border: 1px solid #80CBC4;
}

.difficulty-master {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.prompt-card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--cream-secondary);
    background: var(--white-secondary);
}

.buy-btn {
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-tertiary));
    border: 2px solid var(--gold-dark);
    border-radius: var(--radius-md);
    color: var(--white-primary);
    font-family: var(--font-fa);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, var(--gold-tertiary), var(--gold-primary));
    transform: translateY(-2px);
    box-shadow: var(--btn-gold-shadow);
}

/* فرم سفارش سفارشی */
.custom-order-form {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-light);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-family: var(--font-fa);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: var(--space-sm);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: var(--radius-md);
    font-family: var(--font-fa);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--input-focus);
    box-shadow: var(--input-focus-shadow);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

.radio-group {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.radio-label {
    flex: 1;
    min-width: 200px;
}

.radio-input {
    display: none;
}

.radio-card {
    padding: var(--space-lg);
    background: var(--cream-tertiary);
    border: 2px solid var(--input-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.radio-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.radio-input:checked + .radio-card {
    background: var(--gold-primary);
    color: var(--white-primary);
    border-color: var(--gold-dark);
}

.radio-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.radio-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.radio-price {
    margin-top: var(--space-sm);
    font-weight: 700;
    font-size: 1.2rem;
}

.form-actions {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.secondary-btn {
    flex: 1;
    padding: var(--space-lg);
    background: transparent;
    border: 2px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font-fa);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* پنل مدیریت */
.admin-panel {
    background: var(--white-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold-dark);
    max-width: 800px;
    margin: 0 auto;
}

.admin-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--cream-secondary);
}

.admin-logo {
    font-family: var(--font-heading-en);
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.admin-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.password-form {
    max-width: 400px;
    margin: 0 auto var(--space-2xl);
}

.password-input {
    letter-spacing: 2px;
    font-family: monospace;
}

.search-form {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.search-input {
    flex: 1;
    font-family: monospace;
}

.search-btn {
    padding: 0 var(--space-xl);
    background: var(--gold-primary);
    color: var(--white-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--gold-secondary);
}

.prompt-full {
    background: var(--cream-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    border: 1px solid var(--gold-light);
}

.prompt-full-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.prompt-full-title {
    font-family: var(--font-fa);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-primary);
}

.copy-full-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--gold-primary);
    color: var(--white-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.copy-full-btn:hover {
    background: var(--gold-secondary);
}

.prompt-full-text {
    font-family: var(--font-body-en);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-primary);
    white-space: pre-wrap;
    background: var(--white-primary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--input-border);
    max-height: 400px;
    overflow-y: auto;
    direction: ltr;
}

/* فوتر */
.main-footer {
    background: var(--cream-secondary);
    padding: var(--space-2xl) var(--space-xl);
    margin-top: var(--space-3xl);
    border-top: 2px solid var(--gold-light);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading-en);
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: var(--space-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-fa);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* سیستم پیام */
.message-system {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    max-width: 400px;
    margin: 0 auto;
    z-index: 2000;
}

.message {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideUp 0.3s ease;
    transform-origin: bottom center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-success {
    background: var(--success);
    color: white;
    border-left: 5px solid #1E8449;
}

.message-error {
    background: var(--error);
    color: white;
    border-left: 5px solid #C0392B;
}

.message-warning {
    background: var(--warning);
    color: white;
    border-left: 5px solid #E67E22;
}

.message-info {
    background: var(--info);
    color: white;
    border-left: 5px solid #2980B9;
}

.message-icon {
    font-size: 1.5rem;
}

.message-content {
    flex: 1;
}

.message-title {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.message-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.message-close:hover {
    opacity: 1;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --sidebar-width: 280px;
    }
    
    .logo-text {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .prompts-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        gap: var(--space-xl);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-section {
        padding: var(--space-2xl) 0;
    }
    
    .custom-order-form,
    .admin-panel {
        padding: var(--space-lg);
    }
}

/* انیمیشن‌های اضافی */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, var(--cream-secondary) 25%, var(--cream-primary) 50%, var(--cream-secondary) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* اسکرول بار سفارشی */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-secondary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: var(--radius-full);
    border: 2px solid var(--cream-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}