/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}

/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 80px;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

.nav-links a.active {
    color: #f6a000;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= PAGE BANNER ================= */
.page-banner {
    height: 260px;
    background: url("../Images/banner.jpg") center / cover no-repeat;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-overlay h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 8px;
}

.banner-overlay p {
    color: #dddddd;
    font-size: 14px;
}

/* ================= PRODUCT SECTION ================= */
.product-section {
    padding: 70px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
}

/* ================= SIDEBAR ================= */
.sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    cursor: pointer;
}

.sidebar ul li.active {
    color: #f6a000;
    font-weight: 600;
}

/* ================= PRODUCT CONTENT ================= */
.product-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 4px;
}

.product-card p {
    margin-top: 12px;
    font-weight: 500;
}

.result-count {
    margin-top: 40px;
    font-size: 14px;
    color: #666666;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b1c2d;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer p {
    font-size: 14px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}
.buttom-menu a{
    text-decoration:none;
    color: white;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    /* NAVIGATION */
    .nav-links {
        display: none;
        position: absolute;
        right: 20px;
        top: 80px;
        background: #ffffff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 6px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* PRODUCT LAYOUT */
    .product-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .product-toolbar {
        flex-direction: column;
        gap: 10px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* BANNER TEXT */
    .banner-overlay h1 {
        font-size: 30px;
    }
}
