* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f4f7fc; color: #1e293b; line-height: 1.5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header-flex { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; flex-wrap: wrap; }
.logo { font-size: 1.5rem; font-weight: 800; color: #0a66b9; }
.logo i { margin-right: 8px; }
nav a { margin-left: 24px; text-decoration: none; color: #334155; font-weight: 500; transition: 0.2s; }
nav a:hover { color: #0a66b9; }
.hero { background: linear-gradient(135deg, #e6f0fa 0%, #ffffff 100%); padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.highlight { color: #0a66b9; background: #e6f0fa; padding: 0 10px; border-radius: 30px; }
.btn-primary { background: #0a66b9; color: white; border: none; padding: 12px 28px; border-radius: 40px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: 0.2s; }
.btn-primary:hover { background: #084a8a; transform: translateY(-2px); }
.products-section, .stores-section { padding: 60px 0; }
.products-section h2, .stores-section h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #0a66b9; }
.products-grid, .stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card, .store-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.05); transition: 0.2s; }
.product-card img { width: 100%; height: 180px; object-fit: cover; }
.product-card h3, .store-card h3 { margin: 16px 16px 8px; }
.product-card p, .store-card p { margin: 0 16px 12px; color: #475569; }
.price { font-size: 1.5rem; font-weight: 700; color: #0a66b9; margin: 0 16px 16px; }
.product-card button, .store-card .btn-outline { background: #0a66b9; border: none; width: calc(100% - 32px); margin: 0 16px 20px; padding: 10px; border-radius: 40px; font-weight: 700; cursor: pointer; transition: 0.2s; text-align: center; display: inline-block; text-decoration: none; color: white; }
.product-card button:hover, .store-card .btn-outline:hover { background: #084a8a; transform: translateY(-2px); }
.store-meta { font-size: 0.8rem; color: #64748b; margin: 0 16px 16px; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; z-index: 1000; }
.modal-content { background: #1e293b; border-radius: 32px; padding: 30px; max-width: 550px; width: 90%; color: white; }
.modal-content h3 { color: #facc15; margin-bottom: 20px; }
.modal-content input, .modal-content textarea { width: 100%; padding: 12px; margin-bottom: 16px; background: #0f172a; border: 1px solid #334155; border-radius: 16px; color: white; }
.currency-select { margin: 16px 0; display: flex; gap: 20px; }
.close-modal { float: right; font-size: 1.5rem; cursor: pointer; }
footer { background: #0f172a; color: #cbd5e1; text-align: center; padding: 24px; margin-top: 40px; }

/* Footer Styles */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h3 {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}
.footer-col ul li a:hover {
    color: #facc15;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #cbd5e1;
    font-size: 1.4rem;
    transition: 0.2s;
}
.social-links a:hover {
    color: #facc15;
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 0.8rem;
}
.footer-bottom .disclaimer {
    margin-top: 8px;
    opacity: 0.7;
}

/* Category filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.category-btn {
    background: #e2e8f0;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}
.category-btn.active {
    background: #0a66b9;
    color: white;
}
.category-btn:hover {
    background: #cbd5e1;
}
.category-btn.active:hover {
    background: #084a8a;
}

/* Rating stars */
.rating {
    margin: 12px 0;
    font-size: 0.85rem;
}
.rating i {
    margin-right: 2px;
}

/* Demo link */
.demo-link {
    background: #f7931a;
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}
.demo-link:hover {
    background: #fb923c;
}
