/*
Theme Name: Arepa Labs Theme
Theme URI: https://www.diamundialdelaarepa.com/
Author: Arepa Labs IA
Author URI: https://www.diamundialdelaarepa.com/
Description: Tema premium de alta costura gastronómica para Arepa Labs IA, diseñado en color negro, dorado y tipografías Inter y Playfair Display.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arepa-labs-theme
*/

/* ==========================================
   LOS CANCILLERES DE LA AREPA
   Design System — Dark Luxury + Gold
   ========================================== */

/* --- Tokens --- */
:root {
    --gold: #d4a017;
    --gold-light: #e8c547;
    --gold-dark: #8b6914;
    --gold-glow: rgba(212, 160, 23, 0.25);
    --black: #0a0a0a;
    --black-card: #111111;
    --black-surface: #161616;
    --white: #f5f5f5;
    --white-muted: #a0a0a0;
    --border-gold: rgba(212, 160, 23, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.gold-text { color: var(--gold); }

/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold), 0 0 60px rgba(212, 160, 23, 0.2);
    transform: translateY(-2px);
}
.btn-lg { padding: 1.15rem 3rem; font-size: 0.95rem; }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid var(--border-gold);
    color: var(--gold);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold);
}

/* ==========================================
   HEADER
   ========================================== */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent);
}
.logo-crown { font-size: 1.5rem; color: var(--gold); }
.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: var(--white);
}
.logo-text b { color: var(--gold); }

#main-nav ul {
    display: flex;
    gap: 2.5rem;
}
#main-nav a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}
#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
#main-nav a:hover { color: var(--gold); }
#main-nav a:hover::after { width: 100%; }

.search-btn {
    color: var(--gold);
    padding: 0.5rem;
    transition: var(--transition);
}
.search-btn:hover { transform: scale(1.15); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; }
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
#hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-preheading {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
#hero h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-highlight {
    color: var(--gold);
    display: block;
    font-size: 4.5rem;
}
.hero-sub {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-featured-cards {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}
.featured-mini-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    transition: var(--transition);
    cursor: pointer;
}
.featured-mini-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.featured-mini-card img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}
.mini-title { font-size: 0.78rem; font-weight: 700; }
.mini-loc { font-size: 0.68rem; color: var(--white-muted); }

/* Chefs Photo */
.hero-right { position: relative; display: flex; justify-content: center; }
.chefs-photo-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.chef-img-hero {
    width: 100%;
    max-width: 620px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-gold), 0 20px 45px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.chef-img-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(212,160,23,0.3), 0 25px 50px rgba(0,0,0,0.6);
}
.chefs-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

/* ==========================================
   MAPAMUNDI + CAROUSEL
   ========================================== */
#mapamundi {
    padding: 6rem 0;
    border-top: 1px solid var(--border-subtle);
}
.mapa-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}
.mapa-left h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.mapa-left p {
    color: var(--white-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Carousel */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.carousel-header h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
}
.carousel-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.carousel-nav a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; }
.carousel-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
}
.carousel-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.recipe-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}
.card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.recipe-card:hover .card-img-wrap img { transform: scale(1.08); }
.ai-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.recipe-card h3 {
    padding: 1rem 1.2rem 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}
.card-loc {
    padding: 0 1.2rem;
    font-size: 0.78rem;
    color: var(--white-muted);
    margin-bottom: 0.8rem;
}
.card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-top: 1px solid var(--border-subtle);
}
.card-actions button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--white-muted);
    transition: var(--transition);
}
.card-actions button:hover { color: var(--gold); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
    transition: var(--transition);
    cursor: pointer;
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ==========================================
   CATEGORÍAS
   ========================================== */
#categorias {
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
}
#categorias h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
@media (max-width: 992px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
.cat-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    background: var(--black-surface);
}
.cat-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    transition: var(--transition);
}
.cat-card:hover .cat-icon {
    background: var(--gold);
    color: var(--black);
}
.cat-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

/* ==========================================
   COMUNIDAD
   ========================================== */
#comunidad {
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .community-grid { grid-template-columns: 1fr; }
}
.community-card {
    background: var(--black-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
}
.community-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--black);
    flex-shrink: 0;
}
.user-name { font-weight: 700; font-size: 0.9rem; }
.user-role { font-size: 0.75rem; color: var(--gold); font-style: italic; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 3px; }
.review { font-size: 0.85rem; color: var(--white-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.card-footer-actions {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}
.card-footer-actions button {
    font-size: 0.78rem;
    color: var(--white-muted);
    transition: var(--transition);
}
.card-footer-actions button:hover { color: var(--gold); }

/* ==========================================
   CHEF'S TABLE
   ========================================== */
#chefstable-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-subtle);
    background: radial-gradient(circle at center, rgba(212, 160, 23, 0.02) 0%, transparent 70%);
}
.chef-table-header { margin-bottom: 4rem; }
.chef-intro { text-align: center; color: var(--white-muted); max-width: 800px; margin: 0 auto; font-size: 0.95rem; }
.chefs-bio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
@media (max-width: 992px) {
    .chefs-bio-grid { grid-template-columns: 1fr; }
}
.chef-profile-card {
    background: var(--black-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.chef-profile-card:hover {
    border-color: var(--border-gold);
}
.chef-avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.chef-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.chef-title { font-size: 0.75rem; color: var(--white-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.chef-bio { font-size: 0.85rem; font-style: italic; color: var(--white-muted); }

.chef-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .chef-menu-grid { grid-template-columns: 1fr; }
}
.menu-item-card {
    background: var(--black-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.menu-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.menu-img-wrap { height: 200px; overflow: hidden; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.menu-item-card:hover .menu-img-wrap img { transform: scale(1.06); }
.menu-card-body { padding: 1.8rem; }
.menu-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.menu-card-header h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.menu-card-header span { font-size: 0.72rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.menu-desc { font-size: 0.85rem; color: var(--white-muted); margin-bottom: 1.2rem; min-height: 60px; }
.menu-pairing { font-size: 0.78rem; background: rgba(255,255,255,0.02); border-left: 3px solid var(--gold); padding: 0.6rem 0.8rem; border-radius: 0 6px 6px 0; margin-bottom: 1.5rem; color: var(--white); }
.btn-menu-gold { font-size: 0.78rem; font-weight: 700; color: var(--gold); border-bottom: 1px dashed var(--gold); letter-spacing: 0.05em; text-transform: uppercase; display: inline-block; }

/* ==========================================
   LEAFLET MAP OVERLAYS
   ========================================== */
#map {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    z-index: 1;
}
.custom-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pin-ring {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsatePin 1.8s infinite ease-in-out;
}
.pin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 8px var(--gold);
}
@keyframes pulsatePin {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

/* Luxury Map Popup Styling */
.luxury-map-popup .leaflet-popup-content-wrapper {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-sm) !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-gold), 0 10px 25px rgba(0,0,0,0.5) !important;
}
.luxury-map-popup .leaflet-popup-content {
    margin: 0 !important;
    width: 220px !important;
}
.luxury-map-popup .leaflet-popup-tip {
    background: rgba(15, 15, 15, 0.95) !important;
    border-left: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.map-popup-card {
    display: flex;
    flex-direction: column;
}
.popup-img-wrap {
    height: 110px;
    overflow: hidden;
}
.popup-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-body {
    padding: 0.9rem 1.1rem;
    color: var(--white);
}
.popup-body h4 {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.2rem !important;
    color: var(--white) !important;
}
.popup-loc {
    font-size: 0.72rem;
    color: var(--white-muted);
    margin-bottom: 0.6rem;
}
.popup-link {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* ==========================================
   RECIPE DETAIL TEMPLATE (Renderizado en page.php)
   ========================================== */
.recipe-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.recipe-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recipe-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, var(--black) 95%);
}
.recipe-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}
.recipe-hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    margin-top: 0.4rem;
    margin-bottom: 0;
    color: var(--white);
}

.recipe-body {
    max-width: 900px;
    margin: -3rem auto 4rem;
    position: relative;
    z-index: 3;
    padding: 0 1rem;
}
.recipe-glass {
    background: #ffffff;
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    color: #1a1a1a;
}
.recipe-meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}
.meta-item { text-align: center; }
.meta-item .label {
    font-size: 0.65rem;
    color: #666666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.meta-item .value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-top: 0.2rem;
}

.allergens-row {
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}
.allergens-label {
    font-size: 0.65rem;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.allergen-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111111;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Estilos de contenido del post */
.recipe-content { color: #1a1a1a; }
.recipe-content h1, .recipe-content h2, .recipe-content h3 {
    font-family: var(--font-display);
    color: var(--gold-dark);
}
.recipe-content h1 { font-size: 2.2rem; margin: 0 0 1.5rem; font-weight: 900; line-height: 1.2; text-align: center; }
.recipe-content h2 {
    font-size: 1.45rem;
    border-bottom: 2px solid rgba(212, 160, 23, 0.12);
    padding-bottom: 0.6rem;
    margin: 2.8rem 0 1.5rem;
    position: relative;
    font-weight: 800;
}
.recipe-content h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}
.recipe-content h3 { font-size: 1.15rem; margin: 1.8rem 0 0.8rem; font-weight: 700; color: #333333; text-transform: uppercase; letter-spacing: 0.03em; }
.recipe-content p {
    margin-bottom: 1.5rem;
    color: #2a2a2a;
    line-height: 1.85;
    font-size: 0.98rem;
}
.recipe-content > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #111111;
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 1.8rem;
    margin: 1.5rem 0 2.5rem;
    font-family: var(--font-display);
}

/* Lista de Ingredientes en Grilla */
.recipe-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}
.recipe-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 0.4rem;
}
.recipe-content ul li::before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--gold-dark);
    font-size: 0.85rem;
}

/* Timeline Gourmet para Pasos */
.recipe-content ol {
    list-style: none;
    counter-reset: recipe-step;
    padding-left: 0;
    margin: 2.2rem 0;
}
.recipe-content ol li {
    position: relative;
    padding-left: 3.8rem;
    margin-bottom: 2.2rem;
    font-size: 0.98rem;
    color: #2b2b2b;
    line-height: 1.85;
}
.recipe-content ol li::before {
    counter-increment: recipe-step;
    content: counter(recipe-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(212, 160, 23, 0.08);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(212,160,23,0.12);
}

.recipe-content .meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.recipe-content .meta-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
}
.recipe-content .meta-card strong {
    display: block;
    color: var(--gold-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}
.recipe-content .meta-card span {
    font-size: 0.9rem;
    color: #111;
    font-weight: 500;
}

.recipe-content .tag-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.recipe-content .tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.juice-box {
    background: rgba(212, 160, 23, 0.08);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    color: #222222;
}
.juice-box strong { color: var(--gold-dark); }

.legal-disclaimer {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #555555;
    line-height: 1.6;
}
.legal-disclaimer > strong {
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.legal-disclaimer p { margin-bottom: 0.5rem; }

.cta-challenge {
    background: linear-gradient(135deg, #fdfdfd 0%, #f7f7f7 100%) !important;
    border: 2px solid var(--gold) !important;
    border-radius: var(--radius) !important;
    padding: 3.5rem 3rem 4rem !important;
    text-align: center !important;
    color: #111111 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    margin: 5rem auto 2.5rem !important;
    max-width: 800px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.challenge-icon {
    font-size: 2.8rem !important;
    color: var(--gold) !important;
    margin-bottom: 1.2rem !important;
    line-height: 1 !important;
}
.cta-challenge h2 {
    font-family: var(--font-display) !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.2rem !important;
    color: #111111 !important;
}
.cta-challenge p {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    color: #444444 !important;
    margin: 0 auto 2rem !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    #hero { padding: 8rem 0 4rem; }
    #hero h1 { font-size: 2.5rem; }
    .hero-highlight { font-size: 3rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-featured-cards { justify-content: center; }
    .chef-img-hero { height: 320px; }
    
    .mapa-grid { grid-template-columns: 1fr; gap: 3rem; }
    .carousel-track { grid-template-columns: 1fr; }
    
    .recipe-hero-content h1 { font-size: 2rem; }
    .recipe-glass { padding: 1.5rem; }
    .recipe-meta { gap: 1.5rem; }
    
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
}
