/*big-cart- style start!*/

@media (max-width: 767px) {    
    td.actions .button, 
    td.actions .checkout-button {
        display: inline-block; 
        width: auto;        
    }   
   
    td.actions {
        text-align: center;
    }    
    
    td.actions .button, 
    td.actions .checkout-button {
        white-space: nowrap;
    }
}
/*big-cart- style end!*/

/* mini item cart start! */
.dropdown-footer .buttons {
    display: flex;
    justify-content: space-between; 
    gap: 10px; 
    flex-wrap: wrap; 
}

.dropdown-footer .buttons a {
    white-space: nowrap;
    flex: 1 1 auto;
}


@media (max-width: 767px) {
    .dropdown-footer .buttons {
        flex-direction: column; 
        align-items: center; 
    }
    
    .dropdown-footer .buttons a {
        width: 100%;
        margin-bottom: 10px; 
    }
    
    .dropdown-footer .buttons a:last-child {
        margin-bottom: 0; 
    }
}

/* mini item cart end! */