/*
    - Primary: #293240;
    - Secondary: #f9f9f9;
    - Accent: #FF4500;
    - Letters: #F5F5F5;

*/
/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
/*body { font-family: 'Segoe UI', sans-serif; background: #f4f6f8; padding: 20px; color: #333; }*/

/* Container */
.container { max-width: 1200px; margin: auto; }

/* Filters */
.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #293240;   
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.filters label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.filters select, .filters input {
    padding: 10px;
    border: 1px solid #434343;
    border-radius: 6px;
    min-width: 180px;
    font-size: 0.95em;
}

.filters .filter-group {
    display: flex;
    flex-direction: column;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #293240;    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);    
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #293240;
}

.product-link {
    color: #293240;
}

.product-description {
    font-size: 0.9em;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.product-price {
    font-size: 1.50em;
    font-weight: bold;
    color: #293240;
    margin-bottom: 10px;
    text-align: center;
}

.product-button {
    background-color: #FF4500;
    color: #F5F5F5;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.product-button:hover {
    background-color: #F5F5F5;
    color: #FF4500;
    border: 1px solid #FF4500;
}

@media (max-width: 600px) {
    .filters {
    flex-direction: column;
    }
}

.m-top-10 {
    margin-top: 10px;
}

.filter-button-search{
    padding: 10px 20px;
    background-color: #FF4500;
    color: #F5F5F5;
    border: 1px solid #FF4500;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    /*transition: background 0.2s ease;
    background: linear-gradient(135deg, #000000, #434343);
    transition: background 0.3s ease, transform 0.2s ease;    */
}

.filter-button-reset {
    padding: 10px 20px;
    background-color: #434343;
    color: #ffffff;
    border: 1px solid #434343;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    /*transition: background 0.2s ease;
    background: linear-gradient(135deg, #000000, #434343);
    transition: background 0.3s ease, transform 0.2s ease;*/
}

.filter-button-search:hover{
    background-color: #F5F5F5;
    color: #FF4500;
    border: 1px solid #FF4500;
    border-radius: 6px;
    /*background: linear-gradient(135deg, #434343, #000000);
    transform: scale(1.05);*/
}

.filter-button-reset:hover {
    background-color: #ffffff;
    color:  #434343;
    border: 1px solid #434343;
    /*background: linear-gradient(135deg, #434343, #000000);
    transform: scale(1.05);*/
}