/* WooCommerce Overrides for Purple Clinical Theme */

/* Buttons */
.woocommerce button.button.alt,
.woocommerce-page button.button.alt,
.woocommerce input.button.alt,
.woocommerce-page input.button.alt,
.woocommerce a.button.alt,
.woocommerce-page a.button.alt {
    background: #7B2FE0 !important;
    color: #fff !important;
    border-radius: 2rem !important;
    padding: 15px 32px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(123, 47, 224, 0.25) !important;
}

.woocommerce button.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-page input.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce-page a.button.alt:hover {
    background: hsl(270, 80%, 50%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(123, 47, 224, 0.3) !important;
}

/* Hide breadcrumbs */
.woocommerce-breadcrumb {
    display: none !important;
}

/* Default Product Layout (we want our own Elementor page, but just in case) */
.woocommerce div.product {
    background: var(--glass-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(120, 60, 200, 0.08);
}

.woocommerce div.product .product_title {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    line-height: 1.2;
    font-weight: 800;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--foreground) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.woocommerce-product-details__short-description {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

/* Quantities Container */
.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 0 1rem 0 0;
}

.woocommerce div.product form.cart div.quantity input.qty {
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 10px;
    height: 52px;
    min-width: 60px;
}