/**
 * BFD Single Product Functions - Stock Status Styles
 * 
 * @package BFDSingleProductFunctions
 */

span.stock-status {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
    width: fit-content;
}

span.stock-status.in-stock {
    background: #EFFDEF;
    color: #000527;
}

span.stock-status.in-stock.low-stock {
    background: rgba(255, 225, 0, 0.10);
}

span.stock-status.out-of-stock {
    background: #fdefef !important;
    color: #000527 !important;
}

span.stock-status.pre-order {
    background: rgba(0, 87, 183, 0.10);
    color: #000527;
}

.brand-usps-section {
    margin: 16px 0 0;
}

.brand-usps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-usp-item {
    display: flex;
    gap: 8px;
    line-height: normal;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    color: #000c5e;
}

.brand-usp-item:last-child {
    border-bottom: none;
}

.no-usps {
    color: #666;
    font-style: italic;
    margin: 0;
}

.stock-notification {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.stock-notification > p {
    margin-bottom: 10px;
    color: #333;
}

.email-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.email-input-wrapper input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 2px solid #e6f2ff;
    border-radius: 999px;
}

.notification-submit {
    background: #000c5e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.notification-submit:hover {
    background: #000c5e;
}

.notification-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-message {
    color: #27ae60;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
}

.error-message {
    color: #e74c3c;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
}

.pre-order-message {
    display: block;
    font-size: 13px;
    color: #666;
    margin: 8px 0 0 0;
    font-style: italic;
}

.pre-order-message a {
    color: #000c5e;
}
