/* ── EWB Frontend Styles ─────────────────────────────────────────────────── */

/* Template wrapper */
.ewb-template-wrap {
    width: 100%;
    min-height: 100vh;
}

/* Placeholders shown in the Elementor editor */
.ewb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 16px;
    background: #f0effe;
    border: 2px dashed #6959cd;
    border-radius: 6px;
    color: #6959cd;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* ── Single Product ── */
.ewb-product-images .woocommerce-product-gallery {
    width: 100%;
}

.ewb-product-add-to-cart .single_add_to_cart_button {
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.ewb-product-add-to-cart .single_add_to_cart_button:active {
    transform: scale(0.98);
}

/* ── Archive ── */
.ewb-archive-products ul.products {
    display: grid;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ewb-archive-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.ewb-archive-pagination .woocommerce-pagination {
    margin-top: 32px;
}

/* ── Responsive ── */
@media ( max-width: 768px ) {
    .ewb-archive-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}
