/* ===== MOTOR LAINNYA BUTTON SPACING FIX ===== */
/* Memberikan jarak yang lebih baik untuk tombol Motor Lainnya di desktop */

/* Desktop: Tambahkan jarak atas dan bawah yang lebih besar */
@media (min-width: 992px) {
    /* Container tombol Motor Lainnya */
    .motor-honda-section .row.mt-3 {
        margin-top: 2.5rem !important; /* Jarak dari cards motor di atasnya */
        margin-bottom: 2rem !important; /* Jarak ke section berikutnya */
    }
    
    /* Tombol Motor Lainnya itu sendiri */
    .btn-more-product {
        margin-top: 1rem !important; /* Jarak tambahan dari disclaimer */
        margin-bottom: 1rem !important; /* Jarak bawah tombol */
        padding: 12px 40px !important; /* Padding yang lebih besar untuk desktop */
        font-size: 1rem !important; /* Font size yang lebih besar */
    }
    
    /* Tambahkan jarak pada section Motor Honda */
    .motor-honda-section {
        padding-bottom: 2rem !important; /* Jarak bawah section */
    }
}

/* Tablet: Jarak sedang */
@media (min-width: 768px) and (max-width: 991px) {
    .motor-honda-section .row.mt-3 {
        margin-top: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-more-product {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        padding: 10px 30px !important;
        font-size: 0.95rem !important;
    }
}

/* Mobile: Tetap compact */
@media (max-width: 767px) {
    .motor-honda-section .row.mt-3 {
        margin-top: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .btn-more-product {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
}
