/* -------- TOP STRIP -------- */
.top-strip {
    background: #f5f5f5;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.top-strip-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #444;
}

.strip-btn {
    padding: 6px 14px;
    border: 1px solid #0098db;
    color: #0098db;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
}
.strip-btn.filled {
    background: #0098db;
    color: #fff;
}

/* -------- NAVBAR -------- */
.main-header {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a.active {
    color: #0098db;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Navbar */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 75px;
        right: 0;
        background: #fff;
        width: 220px;
        padding: 20px;
        gap: 0;
        display: none;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .nav-menu.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

/* -------- HERO -------- */
.page-hero {
    text-align: center;
    padding: 60px 20px;
    background: #eef7fc;
}

.page-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    color: #555;
}

/* -------- CATEGORIES GRID -------- */
.product-category-section {
    width: 90%;
    margin: 50px auto;
    text-align: center;
}

.product-category-section h2 {
    margin-bottom: 30px;
    font-size: 26px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.category-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: .3s;
}

.category-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.category-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.catalog-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    background: #0098db;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* ===== Footer ===== */
.footer {
    background: #f5f7fa;
    color: #2b2b2b;
    margin-top: 70px;
    border-top: 1px solid #e0e0e0;
}

.footer-top {
    max-width: 1300px;
    padding: 60px 30px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003366;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 280px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #0078d4;
}

/* Contact Icons */
.footer-contact li i {
    margin-right: 8px;
    color: #0078d4;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8ecf1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078d4;
    font-size: 18px;
    transition: 0.25s ease;
}

.social-icon:hover {
    background: #0078d4;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 18px;
    background: #e7ecf5;
    font-size: 14px;
    color: #4d4d4d;
}

/* Responsive */
@media(max-width: 950px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-tagline {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
}

