/* --- Shop Specific Modern Styles --- */

/* 1. FIX SPACING - Stop content from overlapping hero */
main.main-content-area.landing-pages-offset {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* 2. CATEGORY PILLS - Total Cleanliness */
.shop-category-pill {
    display: inline-block !important;
    background: #f1f5f9 !important; /* Light gray background */
    color: #64748b !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    /* REMOVE EVERYTHING ELSE */
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Active/Hover state - only background color change */
.shop-category-pill:hover, 
.shop-category-pill.active {
    background: #30408a !important; /* Primary color */
    color: #ffffff !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: 0 10px 15px -3px rgba(48, 64, 138, 0.3) !important;
    transform: translateY(-2px);
}

/* 3. SCROLLBARS */
.no-scrollbar::-webkit-scrollbar { display: none !important; }
.no-scrollbar { -ms-overflow-style: none !important; scrollbar-width: none !important; }

/* 4. PRODUCT CARDS - Cleaned up */
.shop-item-card {
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 24px !important;
    padding: 16px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.shop-item-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.shop-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
}

.shop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.price-display {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e2a63;
}

.shop-cta-modern {
    margin: 60px 0;
    background: #f8fafc;
    border-radius: 32px;
    padding: 60px 20px;
    text-align: center;
}
