#quote-heading-contents #quote-action-container .dokan_cancel_button {
    margin-right: 10px !important;
}

.woocommerce-MyAccount-content .woocommerce.ct-woo-account form {
    width: 100%;
}

/* Hide contact info on trade request pages for privacy */
.vanguard-trading-hide,
#quote-details-container .quote-customer-email,
#quote-details-container .quote-customer-phone,
.dokan-quote-details .customer-email-row,
.dokan-quote-details .customer-phone-row,
#quote-heading-contents .customer-email,
#quote-heading-contents .customer-phone,
/* Hide email in quote details section */
.quotation-details .store-email,
.quote-details-wrapper .customer-email,
section.quotation-details .store-email,
/* Hide Dokan's customer info email display */
.dokan-dashboard-content .customer-info .email,
.dokan-dashboard-content .customer-info .customer-email,
.dokan-rfq-quote-details .customer-email,
.dokan-rfq-quote-details .email-row,
/* More aggressive targeting for Dokan RFQ module */
.dokan-quote-details-wrapper .customer-email,
.quote-customer-details .email,
/* Hide any row with email class in customer info sections */
.dokan-dashboard-wrap .customer-info-row.email,
.dokan-dashboard-wrap tr.customer-email-row,
.woocommerce-account .customer-email-field,
/* Target quote info table rows */
.quote-customer-info .email-field,
.customer-details-table tr.email-row,
.rfq-customer-info tr.email,
.quote-info-table .email-row {
    display: none !important;
}

/* Hide trade request numbers in various places */
.quote-number-display {
    display: none !important;
}

/* ================================================
   Toast Notifications
   ================================================ */
.vanguard-trading-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 99999;
    max-width: 380px;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    border-left: 4px solid #4CAF50;
}

.vanguard-trading-toast.toast-visible {
    transform: translateX(0);
}

.vanguard-trading-toast.toast-success {
    border-left-color: #4CAF50;
}

.vanguard-trading-toast.toast-info {
    border-left-color: #2196F3;
}

.vanguard-trading-toast.toast-error {
    border-left-color: #f44336;
}

.vanguard-trading-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vanguard-trading-toast .toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: #E8F5E9;
    color: #4CAF50;
}

.toast-info .toast-icon {
    background: #E3F2FD;
    color: #2196F3;
}

.vanguard-trading-toast .toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.vanguard-trading-toast .toast-actions {
    display: flex;
    gap: 10px;
}

.vanguard-trading-toast .toast-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.vanguard-trading-toast .toast-view {
    background: #f5f5f5;
    color: #333;
}

.vanguard-trading-toast .toast-view:hover {
    background: #e0e0e0;
}

.vanguard-trading-toast .toast-send {
    background: #4CAF50;
    color: #fff;
}

.vanguard-trading-toast .toast-send:hover {
    background: #43A047;
}

.vanguard-trading-toast .toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.vanguard-trading-toast .toast-close:hover {
    color: #666;
}

/* ================================================
   Trade Basket Page Styles
   ================================================ */
.vanguard-trading-trade-basket {
    max-width: 800px;
    margin: 0 auto;
}

.trade-basket-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.trade-basket-header h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
}

.trade-basket-header .store-info {
    color: #666;
    font-size: 14px;
}

.trade-basket-actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.basket-buttons {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.basket-buttons .button {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.send-trade-request-btn {
    background: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.send-trade-request-btn:hover {
    background: #43A047 !important;
    border-color: #43A047 !important;
}

.basket-note {
    margin-top: 16px;
    text-align: center;
    color: #888;
}

.vanguard-trading-empty-basket {
    text-align: center;
    padding: 60px 20px;
}

.vanguard-trading-empty-basket .cart-empty {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .vanguard-trading-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .basket-buttons {
        flex-direction: column;
    }
    
    .basket-buttons .button {
        width: 100%;
    }
}

/* ================================================
   Trade Response Banner
   ================================================ */
.vanguard-trade-response-banner {
    position: fixed;
    top: 32px; /* Below WP admin bar */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 20px;
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* When no admin bar (logged out or front-end) */
body:not(.admin-bar) .vanguard-trade-response-banner {
    top: 0;
}

/* Mobile admin bar is taller */
@media screen and (max-width: 782px) {
    .admin-bar .vanguard-trade-response-banner {
        top: 46px;
    }
}

.response-banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.response-banner-icon {
    font-size: 18px;
}

.response-banner-text {
    line-height: 1.4;
}

.response-banner-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.response-banner-text a:hover {
    opacity: 0.9;
}

.response-banner-cancel {
    position: absolute;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.response-banner-cancel:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Adjust body padding when banner is present */
body.has-trade-response-banner {
    padding-top: 50px;
}

/* Mobile adjustments for banner */
@media (max-width: 600px) {
    .vanguard-trade-response-banner {
        padding: 10px 50px 10px 15px;
    }
    
    .response-banner-content {
        font-size: 13px;
    }
    
    .response-banner-icon {
        font-size: 16px;
    }
}