* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* FULL BACKGROUND */
body {
    background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
    color: #1E293B;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(90deg, #93C5FD, #BFDBFE);
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #1E3A8A;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1E3A8A;
    font-weight: 600;
}

nav a:hover {
    color: #2563EB;
}

.search-box input {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    width: 260px;
    background: #EFF6FF;
}

/* HERO */
.hero {
    height: 70vh;
    background:
        linear-gradient(rgba(147,197,253,0.7), rgba(219,234,254,0.8)),
        url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content {
    max-width: 550px;
    color: #1E3A8A;
}

.hero h1 {
    font-size: 46px;
}

.hero button {
    margin-top: 20px;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    background: #3B82F6;
    color: white;
    cursor: pointer;
}

.hero button:hover {
    background: #2563EB;
}

/* SECTION BOX (IMPORTANT) */
.section-box {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    margin: 50px 40px;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section h2 {
    text-align: center;
    color: #1E40AF;
    margin-bottom: 35px;
    font-size: 32px;
}

/* CATEGORY */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: #F0F9FF;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    color: #1E3A8A;
    cursor: pointer;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    background: #BFDBFE;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: #F0F9FF;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: 0.3s;
    
}

.card:hover {
    transform: translateY(-12px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
}
.card h3{
    align-content: center;
    padding-left: 70px;
}

.card button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #3B82F6;
    color: white;
    cursor: pointer;
}

.card button:hover {
    background: #2563EB;
}

/* KIDS ZONE */
.kids-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.kids-zone img {
    width: 45%;
    border-radius: 30px;
}

.kids-btn {
    margin-top: 20px;
    padding: 14px 34px;
    border: none;
    border-radius: 30px;
    background: #3B82F6;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.kids-btn:hover {
    background: #1D4ED8;
    transform: scale(1.08);
}

/* FOOTER */
footer {
    background: linear-gradient(90deg, #93C5FD, #BFDBFE);
    text-align: center;
    padding: 30px;
    color: #1E3A8A;
}

.contact p {
    margin: 6px 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kids-zone {
        flex-direction: column;
        text-align: center;
    }

    .kids-zone img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }
}