/**
 * Store Page Button Fixes
 * Properly sizes and aligns buttons on vendor store pages
 * 
 * @package Advercado_Core
 * @since 1.0.1
 */

/* Fix buttons on store pages - make them properly sized and aligned */
.dokan-single-store .button,
.dokan-single-store .add_to_cart_button,
.dokan-single-store a.button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    border: 2px solid #3bb273;
    background-color: #3bb273;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 100%;
}

.dokan-single-store .button:hover,
.dokan-single-store .add_to_cart_button:hover,
.dokan-single-store a.button:hover {
    background-color: #ffffff;
    color: #3bb273;
    border-color: #3bb273;
}

.dokan-single-store .products .product .button,
.dokan-single-store .products .product .add_to_cart_button {
    margin-top: 8px;
    width: auto;
    min-width: 120px;
}

/* Fix enquiry submit button styling */
#tab-seller_enquiry_form .row .col-md-10 input[type="submit"].dokan-btn-theme,
#tab-seller_enquiry_form .row .col-md-10 .dokan-btn-theme {
    padding: 12px 32px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#tab-seller_enquiry_form .row .col-md-10 input[type="submit"].dokan-btn-theme:hover,
#tab-seller_enquiry_form .row .col-md-10 .dokan-btn-theme:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

