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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    padding-top: 65px;
    font-size: 0.96rem;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #002855; font-weight: 700; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.3rem; }

.btn-primary {
    background: #ff6600;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover { background: #e65c00; }

/* Thin top bar */
.navbar {
    background: #002855;
    color: white;
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.hamburger {
    font-size: 1.9rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.logo {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: white;
    margin: 0 auto;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Side drawer */
.drawer {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: #002855;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 70px;
}

.drawer a {
    padding: 16px 30px;
    text-decoration: none;
    font-size: 1.12rem;
    color: white;
    display: block;
}

.drawer a:hover { background: #ff6600; }

.drawer .closebtn {
    position: absolute;
    top: 8px;
    right: 25px;
    font-size: 3.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Main content */
.main-content {
    padding: 25px 15px 50px;
}

/* Page header */
.page-header {
    background: #002855;
    color: white;
    padding: 90px 15px 40px;
    text-align: center;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 30px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
}

.product-card img { width: 100%; height: 170px; object-fit: cover; }
.product-card h3 { padding: 14px 10px 6px; margin: 0; }
.product-card p { padding: 0 10px 14px; margin: 0; color: #555; }
.price { color: #ff6600; font-weight: bold; font-size: 1.15rem; }

/* CTA */
.cta {
    text-align: center;
    padding: 50px 0;
    background: #f8f9fa;
}

/* Footer */
footer {
    background: #002855;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}