/**
 * Product Details - CSS Variables & Global Styles
 * Contains: CSS custom properties, global resets, and base styles
 * Part of modular product-details.css split
 */

:root {
    --primary-color: #000000;
    --primary-hover: #333333;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
}

* {
    border-radius: 0 !important;
    box-shadow: none !important;
}

body {
    background-color: var(--bg-white) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
