/*
Theme Name: قالب اختصاصی گالری ساعت عرشیا
Author: علی چرمساز
Description: قالب فروشگاه ساعت - تمام عرض با طراحی روشن
Version: 1.0.0
*/

/* ============================================
   RESET کامل - حذف تمام استایل‌های پیش‌فرض
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'IRANSans', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.6;
    direction: rtl;
    background: #ffffff;
    color: #333;
}

/* ============================================
   هدر (طبق کدی که قبلاً دادیم)
============================================ */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    background: #9ee3b4;
    width: 100%;
    padding: 8px 0;
}

.main-header {
    background: #f8f9fa;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.main-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #1a2a3a;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-links {
    display: flex;
    gap: 15px;
}

.top-links a {
    color: #1a2a3a;
    text-decoration: none;
    font-size: 12px;
}

.top-links a:hover {
    opacity: 0.7;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-height: 55px;
    width: auto;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.menu-items li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-items li a:hover {
    background: #9ee3b4;
    color: #1a2a3a;
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #9ee3b4;
    color: #1a2a3a;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #7bc898;
    transform: translateY(-2px);
}

.cart-count {
    background: #1a2a3a;
    color: #9ee3b4;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    margin-right: 5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.site-main {
    width: 100%;
    min-height: 60vh;
    background: #ffffff;
}

/* ============================================
   فوتر
============================================ */
.site-footer {
    background: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 0;
    border-top: 1px solid #eee;
    width: 100%;
}

/* ============================================
   ووکامرس استایل‌ها
============================================ */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.woocommerce .products .product {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 15px;
    text-align: center;
}

.woocommerce .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.woocommerce .products .product .button {
    background: #9ee3b4 !important;
    color: #1a2a3a !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.woocommerce .products .product .button:hover {
    background: #7bc898 !important;
}

/* ============================================
   ریسپانسیو
============================================ */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .top-info, .top-links {
        justify-content: center;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        transition: 0.3s;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .menu-items {
        flex-direction: column;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
        display: none;
    }
    
    .overlay.active {
        display: block;
    }
    
    .btn-icon span {
        display: none;
    }
    
    .woocommerce .products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}
*
Theme Name: قالب اختصاصی گالری ساعت عرشیا
Theme URI: https://yourwebsite.com
Author: علی چرمساز
Author URI: https://yourwebsite.com
Description: قالب اختصاصی فروشگاه گالری ساعت عرشیا - طراحی شده برای نمایش حرفه‌ای محصولات
Version: 1.0.0
License: GPL v2 or later
Text Domain: gallery-saat-arshia
Domain Path: /languages
Template: hello-elementor
*/

/* ==============================================
   استایل‌های اختصاصی قالب فرزند
   تمام کدهای CSS سفارشی خود را اینجا بنویسید
=============================================== */

/* استایل سفارشی هدر */
.site-header {
    background: #1a1a1a;
    padding: 20px 0;
}

/* استایل سفارشی محصولات */
.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* استایل فوتر */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
}/*
Theme Name: قالب اختصاصی گالری ساعت عرشیا
Theme URI: https://yourwebsite.com
Author: علی چرمساز
Author URI: https://yourwebsite.com
Description: قالب اختصاصی فروشگاه گالری ساعت عرشیا - طراحی شده برای نمایش حرفه‌ای محصولات
Version: 1.0.0
License: GPL v2 or later
Text Domain: gallery-saat-arshia
Domain Path: /languages
Template: hello-elementor
*/

/* ==============================================
   استایل‌های اختصاصی قالب فرزند
   تمام کدهای CSS سفارشی خود را اینجا بنویسید
=============================================== */

/* استایل سفارشی هدر */
.site-header {
    background: #1a1a1a;
    padding: 20px 0;
}

/* استایل سفارشی محصولات */
.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* استایل فوتر */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
}

.button, .button, a.button, input[type="submit"] { font-family: 'Shabnam-Light', sans-serif !important; }