/*
Theme Name: FEGO Tech
Theme URI: https://fego.tech
Author: FEGO Team
Description: ثيم ووردبريس مخصص لمتجر FEGO للإلكترونيات (لابتوبات، تابلتات، الخ) متوافق بالكامل مع إضافة WooCommerce.
Version: 1.0
Text Domain: fego-tech
*/

/* * لن نكتب الكثير من الأكواد هنا لأننا نعتمد على Tailwind CSS،
 * ولكن يمكننا إضافة التنسيقات المخصصة التي لا يدعمها Tailwind بشكل افتراضي.
 */

body {
    background-color: #f8fafc;
}

/* إخفاء شريط التمرير لأقسام المنتجات الأفقية */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* ... existing code ... */
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}

/* --- WooCommerce Forms & Inputs Styling --- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
width: 100%;
padding: 0.75rem 1rem;
border-radius: 0.5rem;
border: 1px solid #e5e7eb;
background-color: #f9fafb;
transition: all 0.2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
outline: none;
border-color: #0084ff;
box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}
.woocommerce-checkout h3 {
font-size: 1.25rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 1rem;
}
.woocommerce-checkout #payment {
background: transparent !important;
border-radius: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods {
border-bottom: 1px solid #e5e7eb !important;
padding-bottom: 1rem !important;
}
.woocommerce-checkout #payment div.payment_box {
background-color: #eef2ff !important;
color: #4b5563 !important;
border-radius: 0.5rem;
}
.woocommerce-checkout #payment div.payment_box::before {
border-bottom-color: #eef2ff !important;
}
.woocommerce button.button.alt {
background-color: #005bb5 !important;
border-radius: 0.5rem !important;
padding: 1rem !important;
font-weight: 700 !important;
text-transform: uppercase !important;
transition: background-color 0.3s !important;
}
.woocommerce button.button.alt:hover {
background-color: #004285 !important;
}


.woocommerce-MyAccount-content h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid #f3f4f6;
}