/**
 * میزبان پکینگ - فایل استایل اصلی
 * یک طراحی مدرن و حرفه‌ای با رنگ سبز اصلی
 */

/* =====================================================
   متغیرهای CSS
   ===================================================== */
:root {
    /* رنگ‌های اصلی */
    --primary: #418f4d;
    --primary-dark: #2d6b38;
    --primary-light: #5ab065;
    --primary-lighter: #e8f5e9;
    
    /* رنگ‌های ثانویه */
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --accent-light: #f0e6c8;
    
    /* رنگ‌های خنثی */
    --dark: #1a1a2e;
    --dark-light: #2c3e50;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    /* رنگ‌های پس‌زمینه */
    --bg-light: #faf8f3;
    --bg-cream: #f5f5dc;
    
    /* سایه‌ها */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* فونت‌ها */
    --font-primary: 'Vazirmatn', 'Tahoma', sans-serif;
    --font-heading: 'Vazirmatn', 'Tahoma', sans-serif;
    
    /* گردی */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* انتقال */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* =====================================================
   ریست و پایه
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--bg-light);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   تایپوگرافی
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* =====================================================
   ابزارها
   ===================================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--gray-600) !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--white) !important; }

/* =====================================================
   دکمه‌ها
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(65, 143, 77, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 143, 77, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   هدر
   ===================================================== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a:hover {
    color: var(--accent);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.top-bar-social a:hover {
    color: var(--accent);
}

/* هدر اصلی */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* منوی ناوبری */
.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* اکشن‌های هدر */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search {
    position: relative;
}

.header-search input {
    width: 250px;
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--gray-100);
    transition: var(--transition);
}

.header-search input:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(65, 143, 77, 0.1);
}

.header-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.header-search button:hover {
    color: var(--primary);
}

.header-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    transition: var(--transition);
}

.header-icon:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* منوی موبایل */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================================================
   اسلایدر هیرو
   ===================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    left: 5%;
    bottom: 0;
    max-width: 500px;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: 10%;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 30%;
}

/* =====================================================
   ویژگی‌ها
   ===================================================== */
.features {
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--white));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.feature-card h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================================================
   دسته‌بندی‌ها
   ===================================================== */
.categories {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: true;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: var(--transition-slow);
}

.category-card:nth-child(2) .category-card-bg {
    background: linear-gradient(135deg, #5a5a5a 0%, #3a3a3a 100%);
}

.category-card:nth-child(3) .category-card-bg {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.category-card:nth-child(4) .category-card-bg {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.category-card:nth-child(5) .category-card-bg {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.category-card:nth-child(6) .category-card-bg {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.category-card:nth-child(7) .category-card-bg {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.category-card:nth-child(8) .category-card-bg {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.category-card:hover .category-card-bg {
    transform: scale(1.1);
}

.category-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.category-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.category-card:hover .category-card-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255,255,255,0.3);
}

.category-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.category-card-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   محصولات
   ===================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-badge {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge-discount {
    background: var(--accent);
    color: var(--dark);
}

.product-badge-new {
    background: var(--primary);
    color: var(--white);
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action-btn {
    flex: 1;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-title a:hover {
    color: var(--primary);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.product-meta i {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price-old {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* =====================================================
   بنر CTA
   ===================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* =====================================================
   نظرات مشتریان
   ===================================================== */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h5 {
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 5px;
    color: var(--accent);
}

/* =====================================================
   فوتر
   ===================================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-about .logo-text h1 {
    color: var(--white);
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '←';
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.7;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-payments {
    display: flex;
    gap: 15px;
}

.footer-payments img {
    height: 35px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

/* =====================================================
   فرم‌ها
   ===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(65, 143, 77, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 45px;
}

/* =====================================================
   کارت‌ها
   ===================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.card-body {
    padding: 25px;
}

.card-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

/* =====================================================
   جدول
   ===================================================== */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--dark);
}

.table tbody tr:hover {
    background: var(--gray-100);
}

/* =====================================================
   پیام‌ها و هشدارها
   ===================================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border: 1px solid var(--primary-light);
}

.alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.alert-warning {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffcc80;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

/* =====================================================
   صفحه‌بندی
   ===================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb {
    background: var(--gray-100);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--gray-400);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list li:last-child {
    color: var(--primary);
    font-weight: 500;
}

/* =====================================================
   Modal
   ===================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* =====================================================
   انیمیشن‌ها
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fadeIn {
    animation: fadeIn 0.5s ease;
}

.animate-slideUp {
    animation: slideUp 0.5s ease;
}

/* =====================================================
   ریسپانسیو
   ===================================================== */
@media (max-width: 1200px) {
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-search {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid,
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* =====================================================
   Loading
   ===================================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   سبد خرید
   ===================================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    left: 0;
}

.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--dark);
    border: 1px solid var(--gray-300);
}

.cart-item-quantity button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* =====================================================
   صفحه محصول
   ===================================================== */
.product-detail {
    padding: 40px 0;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-info-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-info-price .current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.product-info-price .old {
    font-size: 1.2rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-info-price .discount {
    background: var(--accent);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: var(--radius);
    font-weight: 600;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-includes {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
}

.product-includes h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.product-includes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.product-includes li i {
    color: var(--primary);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =====================================================
   Auth Pages (Login/Register)
   ===================================================== */
.auth-page {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    min-height: calc(100vh - 200px);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.auth-logo i {
    font-size: 36px;
    color: var(--white);
}

.auth-header h1 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-600);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-weight: 500;
}

.auth-form label i {
    color: var(--primary);
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(65, 143, 77, 0.1);
    outline: none;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-left: 45px;
}

.toggle-password {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--gray-500);
    position: relative;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-social:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
}

.btn-google i {
    color: #db4437;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-features {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    color: var(--white);
}

.auth-features h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.auth-features ul {
    list-style: none;
    padding: 0;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.auth-features li:last-child {
    border-bottom: none;
}

.auth-features i {
    color: var(--accent);
}

.password-strength {
    font-size: 0.85rem;
    margin-top: 5px;
}

.password-strength.weak { color: #dc3545; }
.password-strength.medium { color: #ffc107; }
.password-strength.strong { color: #28a745; }

/* =====================================================
   Profile Page
   ===================================================== */
.profile-page {
    padding: 40px 0;
    background: var(--bg-light);
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.profile-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.user-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.user-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.profile-nav {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.profile-nav .nav-item:last-child {
    border-bottom: none;
}

.profile-nav .nav-item:hover,
.profile-nav .nav-item.active {
    background: var(--primary-lighter);
    color: var(--primary);
}

.profile-nav .nav-item.active {
    border-right: 3px solid var(--primary);
}

.profile-nav .nav-item.logout {
    color: #dc3545;
}

.profile-nav .nav-item.logout:hover {
    background: #fff5f5;
}

.profile-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.content-section .section-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--primary-lighter);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.orders-table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid var(--gray-200);
}

.orders-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-paid { background: #d1ecf1; color: #0c5460; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped { background: #d4edda; color: #155724; }
.status-delivered { background: #28a745; color: white; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray-600);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.profile-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.profile-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.profile-form .form-group input,
.profile-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
}

.profile-form .form-group input:focus,
.profile-form .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--gray-600);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 3px 0;
}

.social-links h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.telegram { background: #0088cc; }
.social-icon.whatsapp { background: #25d366; }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.contact-form .required {
    color: #dc3545;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.success-message {
    text-align: center;
    padding: 60px 20px;
}

.success-message i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    text-align: right;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =====================================================
   About Page
   ===================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--dark);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.9rem;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.story-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-lighter);
    padding: 10px 15px;
    border-radius: var(--radius);
    color: var(--primary-dark);
    font-weight: 500;
}

.mission-vision {
    background: var(--bg-light);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.mv-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.about-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stats .stat-item {
    text-align: center;
    color: var(--white);
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.about-stats .stat-plus {
    font-size: 2rem;
    color: var(--accent);
}

.about-stats .stat-label {
    display: block;
    margin-top: 10px;
    opacity: 0.9;
}

.about-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary);
    font-size: 0.9rem;
}

.why-us {
    background: var(--bg-light);
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.reason-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.reason-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.about-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.about-cta .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* =====================================================
   Checkout Page Additional Styles
   ===================================================== */
.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step-title {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.step.active .step-title,
.step.completed .step-title {
    color: var(--dark);
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 15px;
}

.step-line.completed {
    background: var(--primary);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.checkout-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.checkout-section .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.checkout-section .section-title i {
    color: var(--primary);
}

.saved-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.address-card {
    position: relative;
    cursor: pointer;
}

.address-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.address-card .address-content {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.3s;
}

.address-card input:checked + .address-content {
    border-color: var(--primary);
    background: var(--primary-lighter);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.default-badge {
    font-size: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
}

.new-address-option .address-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    color: var(--gray-500);
}

.new-address-option i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid .full-width {
    grid-column: span 2;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.payment-method.active .method-content {
    border-color: var(--primary);
    background: var(--primary-lighter);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.method-info strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.method-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.method-logos {
    margin-right: auto;
    display: flex;
    gap: 5px;
}

.method-logos img {
    height: 25px;
}

.order-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow);
}

.summary-title {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .item-image {
    width: 50px;
    height: 50px;
    position: relative;
}

.summary-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.summary-item .item-qty {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-item .item-name {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.summary-item .item-price {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.summary-totals {
    padding-top: 15px;
    border-top: 2px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row.discount {
    color: var(--primary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--gray-200);
}

.secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.secure-notice i {
    color: var(--primary);
}

/* =====================================================
   Quick View Modal
   ===================================================== */
.quick-view-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quick-view-image {
    position: relative;
}

.quick-view-image img {
    width: 100%;
    border-radius: var(--radius);
}

.quick-view-info .product-category {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.quick-view-info .product-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.quick-view-info .product-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.quick-view-info .product-price-box {
    margin-bottom: 20px;
}

.quick-add-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* =====================================================
   Responsive Styles for New Pages
   ===================================================== */
@media (max-width: 992px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-features {
        display: none;
    }
    
    .profile-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        order: -1;
    }
    
    .order-summary {
        position: static;
    }
    
    .quick-view-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        display: none;
    }
    
    .saved-addresses {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid .full-width {
        grid-column: span 1;
    }
    
    .profile-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
