﻿:root {
    --primary-color: #2c5530;
    --secondary-color: #8b4513;
    --accent-color: #daa520;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
}

* {
    font-family: "Cairo", sans-serif;
}

body {
/*    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
*/    min-height: 100vh;
}

.navbar {
    background: linear-gradient( 135deg, var(--primary-color) 0%, #1a3a1e 100% );
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
}

    .nav-link:hover {
        color: var(--accent-color) !important;
        transform: translateY(-2px);
    }

.hero-section {
    background: linear-gradient( rgba(44, 85, 48, 0.8), rgba(26, 58, 30, 0.8) ), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4f4f4" width="1200" height="600"/><g fill="%23ddd"><circle r="50" cx="200" cy="150"/><circle r="30" cx="800" cy="100"/><circle r="40" cx="1000" cy="200"/><rect width="80" height="60" x="400" y="300" rx="10"/><rect width="100" height="40" x="600" y="400" rx="5"/></g></svg>');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px );
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-hero {
    background: linear-gradient( 135deg, var(--accent-color) 0%, #b8860b 100% );
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
        background: linear-gradient( 135deg, #b8860b 0%, var(--accent-color) 100% );
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient( 90deg, var(--accent-color), var(--secondary-color) );
        border-radius: 2px;
    }

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.4s ease;
        border-radius: 0;
    }

    .product-image:hover img {
        transform: scale(1.1);
    }

    .product-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100% );
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-image:hover::before {
        opacity: 1;
    }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-add-cart {
    background: linear-gradient( 135deg, var(--primary-color) 0%, #1a3a1e 100% );
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-add-cart:hover {
        background: linear-gradient( 135deg, #1a3a1e 0%, var(--primary-color) 100% );
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
    }

.features-section {
    background: white;
    padding: 80px 0;
    margin: 60px 0;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

    .feature-card:hover {
        background: var(--light-bg);
        transform: translateY(-5px);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient( 135deg, var(--accent-color) 0%, var(--secondary-color) 100% );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.footer {
    background: linear-gradient( 135deg, var(--primary-color) 0%, #1a3a1e 100% );
    color: white;
    padding: 15px;
    /*margin-top: 60px;*/
}

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent-color);
        }

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        color: var(--accent-color);
        transform: translateY(-3px);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .floating-cart:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(218, 165, 32, 0.6);
    }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}




.lblcoloor {
    background: linear-gradient(135deg, #3c8c4a 0%, #1a3a1e 100%)!important;
}
