.product-disclaimer-container {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: #f9f9f9; /* Soft background to separate from product details */
    border-left: 4px solid #0062ff; /* Your brand blue */
    border-radius: 4px;
}

.product-disclaimer-text {
    font-size: 13px; /* Slightly smaller than main text for legal look */
    line-height: 1.6;
    color: #444; /* Dark grey for readability */
    margin: 0 !important;
    font-family: 'Poppins', sans-serif; /* Matching your site font */
    font-weight: 400;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .product-disclaimer-container {
        padding: 12px 15px;
        margin-top: 15px;
    }
    .product-disclaimer-text {
        font-size: 12px;
    }
}



/* --- QURESHI LABS: PRODUCT INFO SALE BADGE --- */

/* Target the specific tag link on the product page */
.single-product .taxonomy-product_tag {
    display: inline-flex !important;
    align-items: center;
    position: relative;
    
    /* The Solid Blue Background */
    background-color: #0062ff !important; 
    padding: 6px 15px 6px 20px !important; /* Extra left padding for the anchor */
    border-radius: 0 4px 4px 0 !important;
    margin-bottom: 20px !important;
    
    /* Clean shadow to make it pop */
    box-shadow: 0 4px 10px rgba(0, 98, 255, 0.2);
    overflow: hidden;
}

/* The White Left Anchor Line (Matches your design) */
.single-product .taxonomy-product_tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* The subtle vertical stripe */
}

/* Style the text inside the badge */
.single-product .taxonomy-product_tag a {
    color: #ffffff !important; /* Force text to white */
    font-weight: 800 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
}

/* Add the subtle light pulse we used earlier */
.single-product .taxonomy-product_tag {
    animation: badge-glow-pulse 1.8s ease-in-out infinite alternate;
}

@keyframes badge-glow-pulse {
    from { filter: brightness(100%); box-shadow: 0 2px 5px rgba(0, 98, 255, 0.2); }
    to { filter: brightness(115%); box-shadow: 0 5px 15px rgba(0, 98, 255, 0.4); }
}



/* --- REMOVE PRODUCT GAP ONLY --- */

.single-product div.product {
    gap: 0 !important; /* Removes the flex/grid spacing between columns */
    display: flex !important;
    flex-wrap: nowrap !important;
}

.woocommerce-product-gallery {
    margin-right: 0 !important;
    padding-right: 0 !important;
    flex: 0 0 45% !important; /* Adjust this % if you want the image wider/narrower */
}

.summary.entry-summary {
    margin-left: 0 !important;
    padding-left: 30px !important; /* Internal space so text doesn't touch the image */
    flex: 1 1 auto !important;
}


/* --- QURESHI LABS: RESEARCH WARNING BAR --- */

.research-warning-bar {
    background-color: #0a0a0a; /* Matches your site's dark theme */
    color: #ffffff;
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.03em;
    border-bottom: 3px solid #0062ff; /* Your Brand Blue */
    z-index: 9999;
    position: relative;
    display: block;
}

.warning-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.warning-content strong {
    color: #ff3b30; /* High-visibility warning red */
    font-weight: 800;
}

.warning-icon {
    font-size: 14px;
    flex-shrink: 0;
}

/* Ensure text doesn't get cut off on small mobile screens */
@media (max-width: 600px) {
    .research-warning-bar {
        font-size: 10px;
        padding: 10px;
    }
    .warning-content {
        flex-direction: row;
        text-align: left;
    }
}






/* --- QURESHI LABS: PREMIUM ADDED-TO-CART NOTICE --- */

/* 1. Container - Clean, Thin, and Minimal */
.woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success {
    background-color: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-left: 5px solid #0062ff !important; /* Your Brand Blue anchor */
    border-radius: 12px !important;
    padding: 15px 25px !important;
    box-shadow: 0 10px 30px rgba(0, 98, 255, 0.08) !important;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: center !important;
    animation: slideInDown 0.4s ease-out;
}

/* 2. Success Icon - Turn it Ultra Blue */
.woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success svg {
    fill: #0062ff !important;
    background: rgba(0, 98, 255, 0.1);
    border-radius: 50%;
    padding: 4px;
    margin-right: 15px !important;
}

/* 3. Text Styling */
.wc-block-components-notice-banner__content {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
}

/* 4. "View Cart" Button - The Premium Look */
.wc-block-components-notice-banner__content a.button.wc-forward {
    background: #0062ff !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 0.5px;
    margin-left: 20px !important;
    transition: all 0.3s ease;
    border: none !important;
}

.wc-block-components-notice-banner__content a.button.wc-forward:hover {
    background: #004ecc !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 98, 255, 0.3) !important;
}

/* Animation for the reveal */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}












/* --- QURESHI LABS: PREMIUM CART PAGE RENOVATION --- */

/* 1. Overall Page Background & Container */
.woocommerce-cart .entry-content {
    background-color: #ffffff;
    padding-top: 40px;
}

/* 2. The Cart Table Styling */
.woocommerce-cart-form {
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.shop_table.cart {
    border: none !important;
    margin-bottom: 0 !important;
}

.shop_table.cart thead {
    background-color: #f8fafc !important;
}

.shop_table.cart thead th {
    color: #1a1a1a !important;
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 1px;
    padding: 20px !important;
    font-weight: 700 !important;
}

/* 3. Product Row Adjustments */
.cart_item td {
    padding: 25px 20px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.product-name a {
    color: #111 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
}

.product-thumbnail img {
    border-radius: 8px;
    max-width: 70px !important;
}

/* 4. Quantity Input & Remove Button */
.product-quantity .quantity input {
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 8px !important;
    font-weight: 600;
}

.product-remove a {
    color: #ff3b30 !important; /* Medical Red for deletion */
    font-size: 20px !important;
    text-decoration: none !important;
}

/* 5. Cart Totals Sidebar (The Module Look) */
.cart-collaterals {
    padding-top: 30px;
}

.cart_totals {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.cart_totals h2 {
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    border-bottom: 2px solid #0062ff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px !important;
}

/* 6. Checkout & Payment Buttons */
.wc-proceed-to-checkout a.checkout-button {
    background-color: #0062ff !important; /* Your Brand Blue */
    border-radius: 8px !important;
    padding: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #004ecc !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 255, 0.3) !important;
}

/* PayPal/Venmo alignment */
#ppc-button-cart {
    margin-top: 15px !important;
}

/* 7. Mobile Optimization */
@media (max-width: 768px) {
    .shop_table.cart thead { display: none; }
    .cart_item td { display: block; text-align: right; padding-left: 50% !important; position: relative; }
    .cart_item td::before { content: attr(data-title); position: absolute; left: 20px; font-weight: 700; text-transform: uppercase; font-size: 10px; color: #64748b; }
}















