body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f5f9; /* رمادي فاتح جداً */
}

h1, h2, h3, h4, h5, h6, .fw-bold {
    font-weight: 700;
}

/* Header Styles */
.header-top {
    background-color: #063b3d; /* أخضر داكن */
    color: white;
    padding: 15px 0;
    border-bottom: 3px solid #f39c12; /* خط ذهبي/أصفر سفلي */
}
.header-top a, .header-top .header-title {
    color: white !important;
}
.header-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.search-bar {
    max-width: 500px;
    width: 100%;
}
.search-bar .btn-warning {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
}

/* Sidebar Categories (index.php) */
.sidebar-categories {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.sidebar-categories a {
    display: block;
    padding: 12px 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}
.sidebar-categories a:last-child {
    border-bottom: none;
}
.sidebar-categories a:hover {
    color: #063b3d;
    background-color: #f9f9f9;
}

/* Product Card Design */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12; /* شارة صفراء */
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
    font-weight: bold;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.current-price {
    color: #e67e22; /* برتقالي/ذهبي */
    font-size: 20px;
    font-weight: bold;
}
.buy-btn-small {
    background-color: #f1f2f6; /* خلفية رمادي فاتح */
    color: #333;
    border: none;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
}
.buy-btn-small:hover {
    background-color: #dfe4ea;
}

/* Navbar Styles */
.navbar-main {
    background-color: #37475a;
}
.navbar-main .nav-link {
    color: white !important;
}
.navbar-main .nav-link:hover {
    color: #ff9900 !important;
}

/* Footer Styles */
.footer {
    background-color: #ffffff; /* تم تغييره للأبيض في الطلب الأخير */
    color: #333;
    padding: 30px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #eee;
}
