/*
G-Stock Header Style
Clean and Professional Layout
*/

/* ========================================
   G-Stock Header Layout
   ======================================== */

/* Header اصلی */
.gstock-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0 !important;
}

.gstock-header .wp-block-group.alignwide {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* لوگو و نام جی استوک (سمت راست) */
.gstock-logo-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.gstock-logo-img {
    margin: 0 !important;
}

.gstock-logo-img img {
    border-radius: 8px !important;
    object-fit: contain !important;
}

.gstock-title {
    color: #ff4757 !important;
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif !important;
}

/* جستجو وسط */
.gstock-search-center {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    position: relative;
}

.gstock-search-center .wp-block-search__input {
    width: 100% !important;
    padding: 10px 45px 10px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    background: #f8f9fa !important;
    outline: none !important;
    font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif !important;
}

.gstock-search-center .wp-block-search__input:focus {
    border-color: #ff4757 !important;
    background: #ffffff !important;
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.2) !important;
}

.gstock-search-center .wp-block-search__button {
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #ff4757 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    color: white !important;
    cursor: pointer !important;
}

/* اکشن‌های سمت چپ */
.gstock-actions-left {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.gstock-cart,
.gstock-phone,
.gstock-login {
    color: #555;
    font-size: 14px;
    cursor: pointer;
    font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif;
    transition: color 0.3s ease;
}

.gstock-cart:hover,
.gstock-phone:hover,
.gstock-login:hover {
    color: #ff4757;
}

/* Navigation */
.gstock-nav {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0 !important;
}

.gstock-nav .wp-block-group.alignwide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* دکمه دسته بندی */
.gstock-category button {
    background: #2c3e50 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif !important;
    transition: background 0.3s ease;
}

.gstock-category button:hover {
    background: #34495e !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .gstock-header .wp-block-group.alignwide {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .gstock-search-center {
        order: 3 !important;
        flex-basis: 100% !important;
        margin: 10px 0 0 0 !important;
        max-width: 100% !important;
    }
    
    .gstock-actions-left {
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .gstock-header .wp-block-group.alignwide,
    .gstock-nav .wp-block-group.alignwide {
        padding: 0 15px !important;
    }
    
    .gstock-actions-left {
        gap: 10px !important;
    }
    
    .gstock-cart,
    .gstock-phone,
    .gstock-login {
        font-size: 13px !important;
    }
    
    .gstock-category button {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }
    
    .gstock-title {
        font-size: 20px !important;
    }
    
    .gstock-logo-img img {
        width: 30px !important;
        height: 30px !important;
    }
}