.sufiya-shop-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 2rem;
    overflow: hidden;
}
.sufiya-shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(128, 0, 128, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}
.sufiya-shop-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.sufiya-shop-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}
.sufiya-shop-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #F5F5F5;
    margin-bottom: 1rem;
}
.sufiya-shop-hero a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #FFD700, #FFEC8B);
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 2px solid #800080;
}
.sufiya-shop-hero a:hover {
    background: #800080;
    color: #FFD700;
}
@media (max-width: 768px) {
    .sufiya-shop-hero {
        height: 400px;
    }
    .sufiya-shop-hero h1 {
        font-size: 2rem;
    }
    .sufiya-shop-hero p {
        font-size: 1rem;
    }
    .sufiya-shop-hero a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}