* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
    background: #fdf8f3;
    color: #333;
    line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #4e342e;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar h2 {
    font-size: 24px;
    letter-spacing: 1px;
}

.nav-links a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #d7a86e;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    padding: 100px 50px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #4e342e;
}

.hero-text p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #555;
}

.badge {
    background: #d7a86e;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-section img {
    flex: 1;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== BUTTONS ===== */
button, .hero-buttons a {
    background: #6d4c41;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
}

button:hover, .hero-buttons a:hover {
    background: #4e342e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ===== CARDS SECTION ===== */
.cards-section {
    padding: 100px 50px;
    text-align: center;
    background: #fff;
}

.cards-section h2 {
    margin-bottom: 50px;
    font-size: 36px;
    color: #4e342e;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    color: #4e342e;
}

.card p {
    margin-bottom: 12px;
    color: #666;
}

.highlight {
    color: #d7a86e;
    font-weight: 600;
}

.price {
    font-weight: bold;
    color: #6d4c41;
    font-size: 20px;
    margin-bottom: 15px;
}

.card button {
    width: 100%;
    background: #d7a86e;
    color: #4e342e;
}

.card button:hover {
    background: #c4955f;
    color: white;
}

/* ===== ORDER FORM ===== */
.order-form {
    padding: 100px 50px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.order-form-box {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.order-form-box h3 {
    margin-bottom: 30px;
    font-size: 26px;
    text-align: center;
    color: #4e342e;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
    min-width: 250px;
}
.cards-container{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

input, select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: 0.3s;
}
input:focus, select:focus {
    outline: none;
    border-color: #d7a86e;
    box-shadow: 0 0 0 3px rgba(215, 168, 110, 0.2);
}

#cart-list {
    margin: 20px 0;
    min-height: 50px;
}

#cart-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

#cart-list button {
    background: #d32f2f !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    margin: 0 !important;
}

#cart-list button:hover {
    background: #b71c1c !important;
    transform: scale(1.05);
}

#cart-total {
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0;
    color: #4e342e;
}

/* زرار الواتساب */
button[onclick="setWhatsAppMessage()"] {
    background: #25D366;
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
}

button[onclick="setWhatsAppMessage()"]:hover {
    background: #1ebe5a;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 35px;
    background: #4e342e;
    color: white;
}

footer p {
    margin-bottom: 8px;
    font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    .hero-section, .cards-section, .order-form {
        padding: 60px 20px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-content {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
    }
}
