.shop-services {
    padding: 80px 0;
    background-color: #f5f5dc;
}
@media (max-width: 991.5px) {
    .shop-services{
        padding: 50px 0 0 0;
    }
}
@media (max-width: 543px) {
    .shop-services{
        padding: 30px 0 0 0;
    }
}
.shop-services .blog-header {
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width:991px){
    .shop-services .blog-header{
        margin-bottom: 30px;
    }
}
.shop-services .blog-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.shop-services .blog-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.shop-services .blog-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 30px 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.service-item:hover .service-icon {
    background: #7A5C43;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: #333;
    transition: fill 0.3s ease;
}

.service-item:hover .service-icon svg {
    fill: white;
}

.service-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animation classes */
[data-wow-delay] {
    animation: fadeInUp 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-services .blog-title {
        font-size: 28px;
    }
    
    .shop-services .blog-subtitle {
        font-size: 16px;
    }
    
    .shop-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shop-services .service{
        margin-bottom: 30px;
    }
    .service:last-child{
        margin-bottom: 0;
    }
}
@media (max-width:543px){
    .shop-services .blog-title{
        margin-bottom:15px
    }
}
@media (max-width:325px){
    .shop-services .blog-title{
        font-size: 25px;
    }
}