/* Shop by Price Section */
.shop-by-price {
    padding: 2rem 0;
    background: #f9f9f9;
}

.shop-by-price h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #222;
    letter-spacing: 1px;
}

.price-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-buckets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-bucket {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.price-bucket:hover {
    border-color: #C27BA0;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(194, 123, 160, 0.15);
}

.price-range {
    font-size: 1.5rem;
    font-weight: 600;
    color: #C27BA0;
    margin-bottom: 0.5rem;
}

.price-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.price-count {
    font-size: 0.8rem;
    color: #999;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}

@media (max-width: 768px) {
    .shop-by-price {
        padding: 2rem 0;
    }
    
    .shop-by-price h2 {
        font-size: 2rem;
    }
    
    .price-buckets {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .price-bucket {
        padding: 1.5rem 0.75rem;
    }
}