body {
    margin: 0;
    font-family: Poppins, sans-serif;
    background: #f8f9fa;
    color: #333;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero-buttons .btn {
    margin: 10px;
}

/* BUTTONS */
.btn {
    background: #ffb703;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn.secondary {
    background: white;
    color: #1e3c72;
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.9rem;
}

/* CATEGORY GRID */
.categories {
    padding: 50px 20px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 1.1rem;
}
.category-card {
    display: block;
    text-decoration: none;
    color: #333;
}

/* FEATURED PRODUCTS */
.featured {
    padding: 50px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 6px;
}

/* COMPARISON TABLE */
.comparison {
    padding: 50px 20px;
    text-align: center;
}

table {
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* BLOG SECTION */
.blog {
    padding: 50px 20px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.blog-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* TRUST SECTION */
.trust {
    padding: 50px 20px;
    background: #e9ecef;
    text-align: center;
}

.trust ul {
    list-style: none;
    padding: 0;
}

.trust li {
    margin: 10px 0;
}

/* FOOTER */
footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 20px;
}
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e3c72;
    margin: 10px 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
}

.features li {
    font-size: 0.9rem;
    margin: 5px 0;
}

.product-detail {
    padding: 50px 20px;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.product-image img {
    width: 350px;
    border-radius: 8px;
}

.product-info {
    flex: 1;
}

.specs, .pros, .cons {
    list-style: none;
    padding: 0;
}

.specs li, .pros li, .cons li {
    margin: 6px 0;
}
.comparison-page {
    padding: 50px 20px;
    text-align: center;
}

.compare-table {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.compare-table th, .compare-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.search-container {
    text-align: center;
    margin: 30px 0;
}

#searchInput {
    width: 80%;
    max-width: 400px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        text-align: center;
    }

    .product-image img {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }

    .category-grid, .product-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.9rem;
    }
}
:root {
    --primary: #1e3c72;
    --secondary: #ffb703;
    --accent: #2a5298;
    --bg: #f8f9fa;
    --text: #333;
}
body {
    background: var(--bg);
    color: var(--text);
}

.btn {
    background: var(--secondary);
}
.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.filters select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.product-card, .category-card, .blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover,
.category-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.btn {
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: #ffc94a;
}
.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.03em;
}