/* Base Styles - Variables, Reset, Typography */

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

html {
    scroll-behavior: smooth;
}

:root {
    --cream: #f5f1e8;
    --brown-dark: #6b3e2e;
    --brown-medium: #8b5a3c;
    --brown-light: #a67c52;
    --text-dark: #3a2618;
    --accent: #d4a574;
    --success: #25D366;
    --error: #f44336;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #ede8dc 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.btn-more-info {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.btn-more-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes addedToCart {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); background: var(--success); }
    100% { transform: scale(1); }
}

.added-animation {
    animation: addedToCart 0.5s ease;
}
