/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
header {
    background-color: #ffcbcb;
    color: #333;
    padding: 1rem;
    text-align: center;
}
footer {
    background-color: #ffcbcb;
    color: #333;
    padding: 1rem;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: grid;
    gap: 1rem;
}

/* Responsive grid settings */
@media (min-width: 992px) {
    .container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 991px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sweet item styling */
.sweet-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.sweet-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}
.sweet-item h2 {
    font-size: 1.5rem;
    color: #555;
}
.sweet-item p {
    color: #777;
}
.sweet-item .price {
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: bold;
}

/* Hover effects */
.sweet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.sweet-item:hover img {
    transform: scale(1.05);
}
