body {
font-family: 'Segoe UI', sans-serif;
background-color: #fff;
}

/* COLORS */
:root {
--main-red: #C62828;
--main-orange: #FF6F00;
--soft-bg: #fff5f0;
}

/* LOGO */
.logo-img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}

.brand-name {
color: var(--main-red);
}

/* COVER */
.cover-section {
background: url('images/cover.jpg') center/cover no-repeat;
height: 300px;
position: relative;
}

.overlay {
background: linear-gradient(to right, rgba(198,40,40,0.8), rgba(255,111,0,0.8));
height: 100%;
display: flex;
align-items: center;
}

/* SLIDER */
.slider-img {
height: 300px;
object-fit: cover;
}

/* Section Titles */
.section-title {
    font-weight: bold;
    color: #c40000; /* Deep Red */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Product Images */
.product-img {
    border-radius: 12px;
    margin-bottom: 15px;
    max-height: 200px;
    object-fit: cover;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #ff6a00; /* Orange */
    margin-bottom: 10px;
}

/* Brand Button */
.btn-brand {
    background: linear-gradient(45deg, #c40000, #ff6a00);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-brand:hover {
    background: linear-gradient(45deg, #a00000, #e65c00);
    transform: scale(1.05);
}
.special-meal {
    border: 2px solid #ff6a00;
    background: linear-gradient(to right, #fff5f0, #ffffff);
    padding: 25px;
}

.special-meal h4 {
    color: #c40000;
    font-weight: bold;
}


/* BUTTON */
.btn-add {
background-color: var(--main-red);
color: white;
}

.btn-add:hover {
background-color: var(--main-orange);
}

/* ================= CART STYLING ================= */

.cart-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: bold;
    color: #c40000;
}

.item-details {
    font-size: 14px;
    color: #555;
}

.item-quantity {
    font-weight: bold;
    color: #ff6a00;
}

.remove-btn {
    background: none;
    border: none;
    color: #c40000;
    font-size: 18px;
    cursor: pointer;
}

.remove-btn:hover {
    color: #ff0000;
}

.cart-summary {
    background: #fff5f0;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #c40000;
}

/* Modern Order Button */
.btn-order {
    background: linear-gradient(45deg, #c40000, #ff6a00);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-order:hover {
    transform: scale(1.03);
    background: linear-gradient(45deg, #a00000, #e65c00);
}


footer {
    background: #8b0000; /* Dim deep red */
    color: #ffffff;
    padding: 30px 0;
    margin-top: 50px;
}

footer a {
    color: #ffcccb;
    text-decoration: none;
    transition: 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}


/* تنسيق زرار الواتساب العايم - نسخة آروما الاحترافية */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px; /* رفعتها شوية عشان متغطيش على كلام مهم */
    right: 20px;
    background-color: #25d366;
    color: white !important; /* تأكيد اللون الأبيض */
    width: auto; /* خليه مرن حسب المحتوى */
    min-width: 60px;
    height: 60px;
    padding: 0 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 99999; /* أعلى حاجة في الصفحة */
    transition: all 0.3s ease-in-out;
    cursor: pointer; /* عشان يظهر شكل الإيد عند الماوس */
}

/* حركة بسيطة لما الماوس يجي عليه */
.whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* تنسيق الأيقونة جوه الزرار */
.whatsapp-float-btn i {
    font-size: 28px;
}

/* تنسيق الرقم (البادج) لو حبيت تظهره */
.cart-badge {
    position: absolute;
    top: -5px;
    left: 5px;
    background-color: #8B0000; /* لون آروما البرجندي */
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    border: 2px solid white;
}
