/* ============================= */
/* GLOBAL SETTINGS */
/* ============================= */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    color: #0f5132 !important;
}

.nav-link {
    font-weight: 600;
}

/* NAV SEARCH */
.nav-search {
    border-radius: 50px;
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    font-size: 14px;
}

    .nav-search:focus {
        box-shadow: 0 0 0 0.2rem rgba(25,135,84,.25);
        border-color: #198754;
    }
@media (max-width: 768px) {
    .nav-search {
        font-size: 13px;
        padding: 6px 12px;
    }
}



/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero-section {
    background: linear-gradient(135deg, #0f5132, #198754);
    color: white;
    padding: 8px 10px; /* small banner */
    font-size: 14px;
}


/* ============================= */
/* CATEGORY SECTION */
/* ============================= */

.categories-wrapper {
    margin-top: 15px;
}

.category-item {
    background: #ffffff;
    color: #198754;
    padding: 8px 6px;
    border-radius: 18px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
    cursor: pointer;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1.2;
}

    .category-item:hover {
        background: #198754;
        color: #ffffff;
    }

/* ============================= */
/* PRODUCT CARD */
/* ============================= */

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.product-img {
    height: 150px;
    object-fit: cover;
}

.price {
    color: #198754;
    font-weight: 700;
    font-size: 18px;
}


/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    background: #ffffff;
}
