body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header {
    padding: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo {
    width: 60px;
    margin-bottom: 10px;
}

.category-card {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.category-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    transition: background .3s ease;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 22px rgba(0,0,0,.2);
}

.category-card:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}

.category-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: .5px;
    text-shadow: 0 3px 8px rgba(0,0,0,.6);
    z-index: 1;
    text-align: center;
}



.skeleton {
    background: linear-gradient(90deg,#f3f4f6 25%,#e5e7eb 37%,#f3f4f6 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s linear infinite;
    border-radius: .75rem;
    height: 150px;
}

@keyframes shimmer {
    100% { background-position: -400% 0; }
}




.products {
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.footer {
    margin-top: 50px;
    padding: 20px;
    font-size: 14px;
    color: #777;
}
