
/**
 * PriceWise Calculator Pro - WooCommerce Integration Styles
 * 
 * Table of Contents:
 * 1. Shop Button Styles
 * 2. Cart Locked Quantity Styles
 * 3. Responsive Adjustments
 */

/* ========================================
   1. Shop Button Styles
   ======================================== */

.pwcp-shop-quote-button {
    display: inline-block;
    width: auto;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    margin: 8px 0;
}

.pwcp-quote-link {
    color: white !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pwcp-quote-link:hover {
    color: white;
    opacity: 0.9;
}

.pwcp-quote-icon {
    flex-shrink: 0;
}

/* ========================================
   2. Cart Locked Quantity Styles
   ======================================== */

.pwcp-locked-quantity-wrapper {
    display: inline-block;
}

.pwcp-locked-quantity {
    display: inline-block;
    padding: 8px 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
}

.pwcp-locked-notice {
    display: block;
    color: #666;
    margin-top: 4px;
    font-size: 12px;
}

/* Hide quantity controls for locked items in cart */
.woocommerce-cart-form .pwcp-locked-quantity-wrapper .quantity-nav,
.woocommerce-cart-form .pwcp-locked-quantity-wrapper button {
    display: none;
}

/* ========================================
   3. Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .pwcp-shop-quote-button {
        padding: 10px 14px;
    }
    
    .pwcp-quote-link {
        font-size: 12px;
    }
}

h1.wp-block-post-title {
    display: none;
}
