/* Products page specific styles */

/* Filter section styles */
.products-filter-container {
    margin-bottom: 2rem;
}

.products-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.products-filter-select {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Products grid section */
.products-grid-section {
    padding: 0 0 6rem;
}

/* Product card styles */
.product-card {
    position: relative;
    cursor: pointer;
}

.product-card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.product-card__image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    position: relative;
    text-align: center;
    z-index: 0;
}

/* CTA section styles */
.products-cta-section {
    background: #f8f8f8;
}

.products-cta-actions {
    margin-top: 2rem;
}

/* Pagination styles */
.products-pagination {
    margin-top: 3rem;
}

/* Craftsmanship section description */
.craftsmanship-description {
    max-width: 600px;
    margin: 0 auto;
}

/* Button spacing */
.btn--spaced {
    margin-right: 1rem;
}