/*  SHOP PAGES CSS */

/* --- HERO BANNER --- */
.shop-hero-banner {
    position: relative;
    height: 350px; /* Adjust height as needed */
    overflow: hidden;
    margin-top: -1px; /* seamless connection to header */
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(4px); /* Creates the blurry background effect */
    transform: scale(1.1); /* Prevents blur white edges */
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Slight tint for text readability */
}

.shop-hero-title {
    font-family: "Playfair Display", serif; /* Serif font like image */
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: white; /* Using your dark brand color */
}

.shop-hero-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 20px;
}

/* --- SEARCH BAR (IN BANNER) --- */
.shop-search-wrapper {
    width: 100%;
    max-width: 500px;
}

.shop-search-wrapper .input-group {
    background: white;
    border-radius: 50px; /* Fully rounded pills */
    padding: 5px 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.shop-search-wrapper input {
    box-shadow: none !important;
    font-size: 0.9rem;
    font-family: "Playfair Display", serif;
    color: #888;
}

/* --- FILTER BUTTONS --- */
.shop-filters {
    background-color: #FFEAEA; /* Main pink background */
}

.btn-filter {
    background-color: white;
    color: #31262A;
    border: none;
    border-radius: 50px; /* Pill shape */
    padding: 8px 25px;
    font-family: "Playfair Display", serif; /* Or Times New Roman */
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-filter:hover, .btn-filter.active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    color: #000;
}

/* --- PRODUCT CARDS --- */
.shop-grid {
    background-color: #FFEAEA; 
}

.shop-card {
    background: transparent;
    border: none;
    text-align: center;
}

.shop-card-img {
    border-radius: 10px; 
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1.1;
}

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-img img {
    transform: scale(1.05);
}

.shop-card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #31262A;
    margin-bottom: 5px;
}

.shop-card-price {
    font-family: "Montserrat", sans-serif; 
    font-size: 0.9rem;
    color: #31262A;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 2.5rem;
    }
    .shop-search-wrapper {
        width: 90%;
    }
}