/* ===== MOTOR SECTION SPACING FIX ===== */
/* Menambahkan spasi di bagian atas section Motor Honda */

/* Desktop - tambahkan margin top yang cukup */
.motor-honda-section {
    margin-top: 40px !important;
    padding-top: 40px !important;
}

/* Tablet */
@media (max-width: 992px) {
    .motor-honda-section {
        margin-top: 30px !important;
        padding-top: 30px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .motor-honda-section {
        margin-top: 25px !important;
        padding-top: 25px !important;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .motor-honda-section {
        margin-top: 20px !important;
        padding-top: 20px !important;
    }
}

/* Pastikan header dan filter navigation memiliki spasi yang baik */
.motor-honda-section .row.mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Spasi antara judul dan filter navigation */
.motor-honda-section h2 {
    margin-bottom: 1rem !important;
}

/* Spasi untuk filter navigation */
#motorFilter {
    margin-top: 0.5rem !important;
}

/* Mobile - adjust spacing untuk filter navigation */
@media (max-width: 768px) {
    .motor-honda-section h2 {
        margin-bottom: 0.75rem !important;
    }
    
    #motorFilter {
        margin-top: 0.25rem !important;
    }
}