/* 
PREMIUM QUANTITY & ADD TO CART
-------------------------------- */

/* Container Layout */
.woocommerce div.product form.cart,
.pahla-quick-view-inner form.cart {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

/* Quantity Input Wrapper */
.woocommerce div.product form.cart div.quantity,
.pahla-quick-view-inner form.cart div.quantity {
    float: none;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    height: 55px;
    /* Match button height */
}

/* Quantity Input Field */
.woocommerce div.product form.cart div.quantity input.qty,
.pahla-quick-view-inner form.cart div.quantity input.qty {
    width: 60px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 0;
    text-align: center;
    -moz-appearance: textfield;
}

.woocommerce div.product form.cart div.quantity input.qty:focus,
.pahla-quick-view-inner form.cart div.quantity input.qty:focus {
    outline: none;
    background: #fdfdfd;
}

/* Add to Cart Button */
.woocommerce div.product form.cart .button,
.pahla-quick-view-inner form.cart .button {
    flex-grow: 1;
    /* Make it fill remaining space or set specific width */
    height: 55px;
    border-radius: 8px;
    background-color: #000;
    /* Minimalist Black */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce div.product form.cart .button:hover,
.pahla-quick-view-inner form.cart .button:hover {
    background-color: var(--primary);
    /* Hover to brand color */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Add icon to button using psuedo element if needed, 
   but generic WC button doesn't support easy icon injection without filter. 
   We will stick to CSS styling first. */