:root {
    --oro: #d4af37;
    --fondo: #0a0a0c;
    --texto: #e0e0e0;
    --acentos: #4b0082; /* Indigo/Violeta */
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: var(--fondo);
    color: var(--texto);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    color: var(--oro);
    text-align: center;
}

/* Header & Hero */
header {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1515594764775-95191136c557?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}

nav ul { display: flex; list-style: none; }
nav ul li a { color: white; text-decoration: none; margin-left: 20px; transition: 0.3s; }
nav ul li a:hover { color: var(--oro); }

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-gold {
    padding: 15px 30px;
    border: 2px solid var(--oro);
    color: var(--oro);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    margin-top: 20px;
}

.btn-gold:hover {
    background: var(--oro);
    color: black;
    box-shadow: 0 0 20px var(--oro);
}

/* Sections */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.card, .product-card {
    background: #16161a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.card:hover, .product-card:hover {
    transform: translateY(-10px);
    border-color: var(--oro);
}

/* Shop Styling */
.tag { color: var(--oro); font-size: 0.8rem; font-weight: bold; }
.price { display: block; font-size: 1.5rem; margin: 15px 0; color: #fff; }
.buy-btn {
    width: 100%;
    padding: 10px;
    background: var(--oro);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.parallax {
    height: 300px;
    background: fixed center/cover url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&q=80');
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay { background: rgba(0,0,0,0.6); padding: 40px; width: 100%; text-align: center; }

/* Estilos para el Cuento del Alfarero */
.story-section {
    padding: 80px 20px;
    background-color: #0f0f12; /* Un tono ligeramente distinto para destacar */
    display: flex;
    justify-content: center;
}

.story-container {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-left: 3px solid var(--oro);
    border-right: 3px solid var(--oro);
    border-radius: 20px;
}

.story-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gold-leaf {
    color: var(--oro);
    font-size: 2rem;
    display: block;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

.story-body p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #ccc;
}

blockquote {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--oro);
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    font-style: italic;
}

.story-moral {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(to right, #1a1a2e, #16213e);
    border-radius: 10px;
    border: 1px dashed var(--oro);
}

.story-moral h3 {
    margin-top: 0;
    color: var(--oro);
    font-size: 1.5rem;
}