.ymm-filter-container {
    background: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
    border-radius: 8px;
}

.ymm-filter-title {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.ymm-filter-form {
    max-width: 1200px;
    margin: 0 auto;
}

.ymm-filter-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.ymm-filter-field {
    flex: 1;
    min-width: 200px;
}

.ymm-filter-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.ymm-filter-field select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.ymm-filter-field select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.ymm-filter-field select:focus {
    outline: none;
    border-color: #007bff;
}

.ymm-filter-button {
    flex-shrink: 0;
}

.ymm-submit-btn {
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ymm-submit-btn:hover:not(:disabled) {
    background-color: #0056b3;
}

.ymm-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.motorcycle-details-container {
    padding: 20px 0;
}

.motorcycle-header {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.motorcycle-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.motorcycle-image-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.motorcycle-image-placeholder i {
    font-size: 80px;
    color: #999;
}

.motorcycle-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.motorcycle-type {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.motorcycle-specs h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.spec-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.spec-label {
    font-weight: 600;
    color: #555;
    margin-right: 8px;
}

.spec-value {
    color: #333;
}

.motorcycle-products-section {
    margin-top: 40px;
}

.motorcycle-products-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.category-filter {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-filter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-link {
    display: block;
    padding: 8px 12px;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.category-link:hover {
    background-color: #f0f0f0;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-miniature-wrapper {
    margin-bottom: 20px;
}

/* Expand/Collapse Specifications Button */
#expand-specs-btn {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

#expand-specs-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    text-decoration: none;
}

#expand-specs-btn i {
    font-size: 18px;
    vertical-align: middle;
}

#btn-text {
    display: inline;
}

@media (max-width: 768px) {
    .ymm-filter-row {
        flex-direction: column;
    }
    
    .ymm-filter-field,
    .ymm-filter-button {
        width: 100%;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}
