/* ============================================
   global.css - Variables y estilos base para toda la tienda
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #b8860b;
    --secondary-color: #333333;
    --silver-color: #c0c0c0;
    --silver-dark: #a1a1a1;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}