:root {
    --primary-color: #d35400;
    --primary-dark: #a84300;
    --secondary-color: #27ae60;
    --bg-light: #fdfaf6;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background-color: var(--bg-light);
}

.bg-primary-custom { background-color: var(--primary-color) !important; }
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.bg-secondary-custom { background-color: var(--secondary-color) !important; color: #fff; }

.navbar-brand img { border-radius: 6px; }
img { max-width: 100%; height: auto; }

/* Prevent CLS when width/height are provided in markup */
img[width][height] { height: auto; }



.recipe-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.recipe-card .card-img-top {
    height: 190px;
    object-fit: cover;
}
.placeholder-img {
    height: 190px;
    background: #eee;
    color: #999;
}

.recipe-hero-img { max-height: 480px; object-fit: cover; }

.steps-list li { margin-bottom: 1rem; line-height: 1.8; }

.filter-box {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.footer-link { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-link:hover { color: #fff; }

.auth-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* شريط الكوكيز */
.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #1c1c1c;
    color: #fff;
    z-index: 1050;
    display: none;
}
.cookie-banner.show { display: block; }

/* اقتراحات البحث */
.suggest-box {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}
.suggest-box.show { display: block; }

/* لوحة التحكم */
.admin-body { background: #f1f2f6; }
.admin-sidebar {
    width: 250px;
    min-height: 100vh;
    background: #1c1c2e;
    position: sticky;
    top: 0;
}
.admin-nav-link {
    color: rgba(255,255,255,.75);
    padding: .6rem 1rem;
    border-radius: 8px;
    display: block;
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.stat-card {
    border-radius: 14px;
    padding: 1.5rem;
    color: #fff;
}
.stat-number { font-size: 2rem; font-weight: 700; }
.stat-label { opacity: .9; }
