/*
 Theme Name:   Soledad Child Theme
 Theme URI:    http://pencidesign.com/
 Description:  Soledad Child Theme - Made by PenciDesign
 Author:       Pencidesign
 Version:      1.0
 Author URI:   http://pencidesign.com/
 Template:     soledad
 Text Domain:  soledad
*/

/* = Theme customization go here
-------------------------------------------------------------- */
/* Filter card styles on the main page */

.price-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.price-post-item {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

.price-post-title {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.price-post-value {
    font-weight: bold;
    color: #F44336;
}
.price-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.price-post-item {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 6px;
    background: #fff;
}

.price-post-value {
    font-weight: bold;
    color: #F44336;
    margin-top: 5px;
}
#price-filter-form select[name="category_id"] {
    min-width: 260px;     
    max-width: 100%;       
    padding: 6px 10px;
    white-space: normal;
    line-height: 1.3;
}
#price-filter-form select[name="order"] {
    width: 220px;
    max-width: 100%;
}

.footer-nav {
    background: #111111;
    padding: 40px 20px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* столбиком */
    gap: 12px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.2s ease;
}

/* hover эффект */
.footer-menu a:hover {
    color: #bbb;
}

/* активный пункт */
.footer-menu .current-menu-item a {
    color: #fff;
    font-weight: 600;
}

/* если есть подменю */
.footer-menu .sub-menu {
    margin-top: 6px;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-menu .sub-menu a {
    font-size: 14px;
    color: #ccc;
}
