/* WooCommerce Out of Stock Notification Styles */

.woo-out-of-stock-notification-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.woo-out-of-stock-notification-form p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.woo-notification-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.woo-notification-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.4;
}

.woo-notification-form input[type="email"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.woo-notification-form .single_add_to_cart_button {
    /* Używa stylów WooCommerce */
    min-height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #0073aa;
    color: white;
}

.woo-notification-form .single_add_to_cart_button:hover {
    background: #0056cc;
    color: white;
}

.woo-notification-form .single_add_to_cart_button:active {
    background: #004499;
}

.woo-notification-form .single_add_to_cart_button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.woo-notification-message {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.woo-notification-message p {
    margin: 0;
    padding: 8px 12px;
    border-radius: 3px;
}

.woo-notification-message p[style*="color: green"] {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.woo-notification-message p[style*="color: red"] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsywność */
@media (max-width: 768px) {
    .woo-notification-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .woo-notification-form input[type="email"] {
        min-width: auto;
    }
    
    .woo-notification-form .single_add_to_cart_button {
        width: 100%;
    }
}

/* Ciemny motyw */
@media (prefers-color-scheme: dark) {
    .woo-out-of-stock-notification-form {
        background: #2c2c2e;
        border-color: #38383a;
    }
    
    .woo-out-of-stock-notification-form p {
        color: #f5f5f7;
    }
    
    .woo-notification-form input[type="email"] {
        background: #1d1d1f;
        border-color: #38383a;
        color: #f5f5f7;
    }
    
    .woo-notification-form input[type="email"]:focus {
        border-color: #0a84ff;
        box-shadow: 0 0 0 1px #0a84ff;
    }
} 