/*
Theme Name: Mesa Santos Theme
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: Tema personalizado para ecommerce de café con animaciones y transiciones elegantes
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mesa-santos
Tags: e-commerce, coffee, woocommerce, custom, animated
*/

:root {
    --color-primary: #2c1810;
    --color-primary-light: #3d2817;
    --color-secondary: #c9a961;
    --color-secondary-dark: #b8984a;
    --color-accent: #f5ede0;
    --color-accent-dark: #e8dcc8;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-black: #000000;
    
    --font-primary: 'Playfair Display', 'Georgia', serif;
    --font-secondary: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Great Vibes', 'Brush Script MT', cursive;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-xxl: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
    color: inherit;
}

a:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}
