/* استایل‌های سفارشی قالب ایهان پلاس */

/* ========== استایل‌های عمومی ========== */
.iehan-plus-theme {
    direction: rtl;
    text-align: right;
}

/* ========== هدر ========== */
.site-header {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .logo {
    max-height: 60px;
}

/* ========== منو ========== */
.main-navigation {
    background: transparent;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    transition: color 0.3s;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

/* ========== فوتر ========== */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary-color);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========== صفحه فروشگاه ========== */
.iehan-shop-page .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========== صفحه محصول ========== */
.single-product .product {
    display: flex;
    gap: 50px;
}

.single-product .product .images {
    flex: 1;
}

.single-product .product .summary {
    flex: 1;
}

/* ========== سبد خرید ========== */
.woocommerce-cart table.cart {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart table.cart th {
    background: #f8f9fa;
    padding: 15px;
}

/* ========== صفحه درباره ما ========== */
.iehan-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.iehan-about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.iehan-about-text {
    flex: 1;
}

.iehan-about-image {
    flex: 1;
}

.iehan-about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ========== دکمه‌ها ========== */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== رسپانسیو ========== */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iehan-shop-page .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .single-product .product {
        flex-direction: column;
    }
    
    .iehan-about-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .iehan-shop-page .products {
        grid-template-columns: 1fr;
    }
}