.toytrade-member-only {
    display: inline-block;
    padding: 2px 10px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.inquiry-basket-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
}

.btn-add-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #0f3460;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-inquiry:hover {
    background: #1a4a8a;
}

.btn-add-inquiry.added {
    background: #10b981;
}

.inquiry-basket-page table.widefat {
    border-radius: 8px;
    overflow: hidden;
}

.inquiry-basket-page table.widefat th {
    background: #f9fafb;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.inquiry-basket-page table.widefat td {
    vertical-align: middle;
    padding: 12px;
}

.inquiry-basket-page .postbox {
    border-radius: 8px;
    overflow: hidden;
}

.inquiry-basket-page .postbox .hndle {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.inquiry-sent-page {
    text-align: center;
    padding: 80px 20px;
}

.inquiry-sent-page h1 {
    color: #10b981;
    margin-bottom: 16px;
}

.product-card .add-to-inquiry-btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: #0f3460;
    color: #fff;
    border: none;
    border-radius: 0 0 8px 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.product-card .add-to-inquiry-btn:hover {
    background: #1a4a8a;
}

.product-card .member-only-badge {
    display: block;
    width: 100%;
    padding: 8px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 0 0 8px 8px;
    font-size: 0.8125rem;
    text-align: center;
}

.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    background: #10b981;
    color: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
