.shop-main {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 200;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0.5rem;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.script-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    font-style: italic;
}

.welcome-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-weight: 200;
    text-align: center;
    letter-spacing: 0.5px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    width: 300px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 70%;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.category-card:hover .category-image img {
    transform: scale(1.03);
}

.category-card h2 {
    text-align: center;
    font-weight: 200;
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .welcome-text {
        padding: 0.5rem;
    }
    
    .script-heading {
        font-size: 1.4rem;
    }
    
    .categories-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .category-card {
        width: 85%;
    }
    
    .category-image img {
        height: 250px;
    }
}
