@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #0a0f1a;
    color: #e0e0e0;
}

header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #faf89e, #f3c23b);
    color: #020000;
    box-shadow: 0 2px 10px #00b4ff;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: #0d1424;
    border-bottom: 1px solid #00b4ff40;
}

.categories {
    text-align: center;
    margin: 20px 0;
}

.category-btn {
    background: #001f3f;
    color: #00b4ff;
    border: 1px solid #00b4ff;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn:hover {
    background: #00b4ff;
    color: #fff;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: #10182c;
    border: 1px solid #00b4ff40;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px #00b4ff30;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card h3 {
    color: #00b4ff;
}

.price {
    color: #fff;
    font-weight: bold;
    margin: 8px 0;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

footer {
    text-align: center;
    background: #001f3f;
    color: #fff;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #00b4ff40;
}

iframe {
    border-radius: 10px;
    margin-top: 10px;
}