/* General Shop Style */
.shop {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.shop h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 3px solid #f0c6a6;
    display: inline-block;
    padding-bottom: 10px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    margin-top: 40px;
}

/* Individual Service Item */
.service-card {
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.service-card h3 {
    margin: 0;
    color: #221612;
    font-size: 20px;
    font-weight: bold;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f0e3d2;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .shop h2 {
        font-size: 40px;
    }
}

/* Additional Styling for Shop */
.shop:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Optional Animation for Service Items */
.service-card {
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
