* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #3d2914;
    background: #fefcf8;
    direction: rtl;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(61, 41, 20, 0.7), rgba(139, 69, 19, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.whatsapp-hero {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.today-special {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 193, 7, 0.95);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.today-special:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.badge {
    background: #dc3545;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.today-special p {
    font-size: 0.9rem;
    color: #3d2914;
    font-weight: 500;
}

/* Products Grid */
.products {
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3d2914;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d2691e;
    margin-bottom: 0.8rem;
}

.order-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Story Section */
.story {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f4e4bc, #e8d5b7);
    text-align: center;
}

.story h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3d2914;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.story-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-3px);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #3d2914;
}

.story-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hours-banner {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.hours-banner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #3d2914;
}

.hours-banner p {
    margin-bottom: 1.5rem;
    color: #666;
}

.delivery-areas {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.area {
    background: #25d366;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 3rem 1rem;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3d2914;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-msg {
    background: #dcf8c6;
    padding: 1.5rem;
    border-radius: 20px 20px 5px 20px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.whatsapp-msg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #dcf8c6;
    border-right: 0;
    margin-bottom: -10px;
}

.whatsapp-msg p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #3d2914;
    font-style: italic;
}

.whatsapp-msg span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Sticky WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky span {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: #3d2914;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    font-weight: 300;
}

/* Buy Page Overlay */
.buy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.buy-content {
    background: white;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    border-radius: 8px;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.buy-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.buy-product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.buy-details {
    padding: 2rem;
}

.buy-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.buy-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d2691e;
}

.quantity, .delivery {
    margin-bottom: 1.5rem;
}

.quantity label, .delivery label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.quantity input, .delivery input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.quantity input {
    width: 80px;
}

.total {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.payment-methods h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-options label {
    display: block;
    margin-bottom: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background 0.2s;
}

.payment-options label:hover {
    background: #f8f9fa;
}

.payment-options input {
    margin-left: 0.5rem;
}

.checkout-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #333;
}

/* Order Confirmation */
.confirm-content {
    background: white;
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    max-width: 400px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirm-content h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.confirm-content p {
    margin-bottom: 2rem;
    color: #666;
}

.ok-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .today-special {
        top: 1rem;
        right: 1rem;
        padding: 0.8rem;
    }
    
    .buy-product {
        grid-template-columns: 1fr;
    }
    
    .buy-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .whatsapp-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .products {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .story, .reviews {
        padding: 2rem 1rem;
    }
    
    .buy-content {
        width: 95%;
    }
}