/**
 * WPC Buy Now Button for Elementor Loop Carousel - Frontend Styles
 */

/* Buy Now Button in Elementor Loop Items */
.e-loop-item .wpcbn-btn-elementor {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.e-loop-add-to-cart-form-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.e-loop-add-to-cart-form-container .wpcbn-btn-elementor {
    margin-left: 0;
}

/* Ensure button styling matches WooCommerce buttons */
.e-loop-item .wpcbn-btn-elementor.button {
    text-decoration: none;
    display: inline-block;
    padding: 0.6180469716em 1.41575em;
    font-weight: 600;
    border-radius: 3px;
    left: auto;
    color: #515151;
    background-color: #ebe9eb;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: none;
    line-height: 1.618;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.e-loop-item .wpcbn-btn-elementor.button:hover {
    background-color: #dfdcde;
    text-decoration: none;
}

/* Disabled state */
.e-loop-item .wpcbn-btn-elementor.wpcbn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .e-loop-add-to-cart-form-container {
        flex-direction: column;
        align-items: stretch;
    }

    .e-loop-item .wpcbn-btn-elementor {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

