/*
Theme Name: FitSport Wear
Author: FitSport Store
Description: قالب اختصاصی فروشگاه لباس ورزشی فیت اسپرت
Version: 1.0
*/
:root {
    --primary-color: #0f0f0f;
    --accent-color: #39FF14;
    --text-color: #333;
}
body { font-family: 'Tahoma', sans-serif; margin: 0; padding: 0; color: var(--text-color); background-color: #fff; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
/* هدر */
.site-header { background-color: var(--primary-color); color: #fff; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 24px; font-weight: bold; text-decoration: none; color: var(--accent-color); }
.main-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.main-nav a { color: #fff; text-decoration: none; transition: 0.3s; font-size: 15px; }
.main-nav a:hover { color: var(--accent-color); }
/* بنر */
.hero-section { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=1975&auto=format&fit=crop'); background-size: cover; background-position: center; height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; }
.hero-section h1 { font-size: 42px; margin-bottom: 10px; }
.hero-section p { font-size: 18px; margin-bottom: 20px; }
.btn-neon { background-color: var(--accent-color); color: #000; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; }
/* دسته بندی ها */
.categories-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 40px 20px; }
.category-card { background: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: center; width: 45%; min-width: 300px; }
.category-card img { width: 100%; height: 250px; object-fit: cover; }
.category-card h3 { margin: 15px 0 5px; font-size: 24px; }
.category-card p { color: #666; padding: 0 15px; }
.btn-dark { display: inline-block; margin: 15px 0 20px; background: var(--primary-color); color: #fff; padding: 10px 25px; text-decoration: none; border-radius: 5px; }
/* محصولات */
.products-section { padding: 40px 20px; text-align: center; }
.section-title { font-size: 28px; margin-bottom: 30px; border-bottom: 3px solid var(--accent-color); display: inline-block; }
.product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.product-item { width: 220px; text-align: center; border: 1px solid #eee; border-radius: 10px; padding: 15px; transition: 0.3s; }
.product-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.product-item img { max-width: 100%; height: auto; border-radius: 5px; }
.product-item h3 { font-size: 16px; margin: 10px 0; min-height: 40px; }
.product-item h3 a { text-decoration: none; color: #333; }
.product-price { font-weight: bold; color: var(--primary-color); margin-bottom: 10px; }
.btn-cart { background: var(--primary-color); color: var(--accent-color); padding: 8px 15px; text-decoration: none; border-radius: 5px; display: inline-block; border: none; cursor: pointer; font-size: 14px; }
/* فوتر */
.site-footer { background-color: var(--primary-color); color: #aaa; text-align: center; padding: 20px; margin-top: 40px; }