/* brands-styles.css */
.navigation-brands {
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

.navigation-brands__title {
    font-size: 24px;
    margin-bottom: 20px;
}

.brands-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.brands-letters__item {
    padding: 2px 11px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #ceb14e;
    text-transform: lowercase;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-family: "FuturaPT-Book", Sans-serif;
}

.brands-letters__item:hover {
    background-color: #e0e0e0;
}

.brands-letters__item_active {
    background-color: #16513e;
    color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "FuturaPT-Book", Sans-serif;
    text-transform: none;
}

.brands-list-vertical {
    columns: 6 !important;
    -webkit-columns: 6 !important;
    -moz-columns: 6 !important;
    display: block;
}

.brands-list-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.navigation-brands__item {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    font-size: 0.875rem;
}

.navigation-brands__item:hover {
    background-color: #f0f0f0;
}

.brand-image-wrapper {
    margin-right: 10px;
}

.brand-image-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100px;
}

.brand-name {
    flex: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.brand-grid-item {
    display: block;
    text-align: center;
}

.brand-grid-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-content .elementor .brand-name {
    font-family: "FuturaPT-Book", Sans-serif;
    font-size: 13px;
}