/**
 * Add to Cart Styles
 *
 * @package Dino_Commerce
 * @since 1.0.0
 */

/* Button Wrapper */
.dino-atc-buttons-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Button Base Styles */
.dino-atc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dino-atc-button .dino-button-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.dino-atc-button .elementor-button-text {
    display: inline-block;
    vertical-align: middle;
}

/* Chat Button */
.dino-chat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0;
}

.dino-chat-button .dino-chat-icon {
    display: block;
    width: 24px;
    height: 24px;
}

/* Mobile Style */
@media (max-width: 700px) {
    #atc-button-wrapper {
        position: fixed;
        bottom: 0%;
        left: 0%;
        right: 0%;
        padding: 1rem;
        z-index: 999;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .dino-atc-buttons-wrapper {
        gap: 0.75rem;
    }
    
    #single-add-to-cart .elementor-button-text {
        display: none;
    }
    
    #single-add-to-cart {
        width: max-content;
        min-width: 48px;
    }
}

/* Desktop Hide Chat */
@media (min-width: 699px) {
    #chat {
        display: none;
    }
}

