/* ==========================================================================
   RESET Y ESTILOS BASE
   ========================================================================== */
:root {
    /* Paleta de colores principal */
    --primary: #107c77;        /* Verde cerceta profundo (inspirado en la pared) */
    --primary-light: #189c97;  /* Turquesa ola marina */
    --primary-dark: #0a5451;   /* Abismo marino profundo */
    --secondary: #dfb175;      /* Dorado arena de playa */
    --secondary-hover: #cb9c60; /* Tono madera / paja mojada */
    --bg-cream: #fcf9f2;       /* Crema suave de arena clara */
    --bg-white: #ffffff;
    --text-dark: #132627;      /* Carbón marino oscuro */
    --text-muted: #4a686b;     /* Pizarra cerceta apagada */
    --border-color: #e6e1d3;   /* Borde suave de arena */
    
    /* Fuentes */
    --font-display: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Sombras y transiciones */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Configuración del header */
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120' fill='none' stroke='%23107c77' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='0.08'%3E%3Cpath d='M16 26 C 16 16, 44 16, 44 26'/%3E%3Cline x1='36' y1='18' x2='42' y2='8'/%3E%3Cpath d='M17 26 L22 52 C 22 54, 38 54, 38 52 L43 26 Z'/%3E%3Cpath d='M22 26 C22 22, 26 20, 30 20 C34 20, 38 22, 38 26'/%3E%3Ccircle cx='30' cy='39' r='4'/%3E%3Cpath d='M76 86 C 76 76, 104 76, 104 86'/%3E%3Cline x1='96' y1='78' x2='102' y2='68'/%3E%3Cpath d='M77 86 L82 112 C 82 114, 98 114, 98 112 L103 86 Z'/%3E%3Cpath d='M82 86 C82 82, 86 80, 90 80 C94 80, 98 82, 98 86'/%3E%3Ccircle cx='90' cy='99' r='4'/%3E%3Cpath d='M 83 40 L 81 32 L 99 32 L 97 40 Z'/%3E%3Cpath d='M 87 32 L 88 40'/%3E%3Cpath d='M 93 32 L 92 40'/%3E%3Cpath d='M 90 32 L 90 40'/%3E%3Cpath d='M 81 32 C 81 28, 99 28, 99 32'/%3E%3Cpath d='M 84 29 C 84 24, 96 24, 96 29'/%3E%3Ccircle cx='90' cy='22' r='1.8' fill='%23107c77' fill-opacity='0.08' stroke='none'/%3E%3Cpath d='M 90 20 Q 92 17 94 18'/%3E%3Cpath d='M 23 100 L 21 92 L 39 92 L 37 100 Z'/%3E%3Cpath d='M 27 92 L 28 100'/%3E%3Cpath d='M 33 92 L 32 100'/%3E%3Cpath d='M 30 92 L 30 100'/%3E%3Cpath d='M 21 92 C 21 88, 39 88, 39 92'/%3E%3Cpath d='M 24 89 C 24 84, 36 84, 36 89'/%3E%3Ccircle cx='30' cy='82' r='1.8' fill='%23107c77' fill-opacity='0.08' stroke='none'/%3E%3Cpath d='M 30 80 Q 32 77 34 78'/%3E%3Cpath d='M60 25 L61 29 L65 30 L61 31 L60 35 L59 31 L55 30 L59 29 Z'/%3E%3Cpath d='M60 85 L61 89 L65 90 L61 91 L60 95 L59 91 L55 90 L59 89 Z'/%3E%3Cpath d='M30 55 L31 59 L35 60 L31 61 L30 65 L29 61 L25 60 L29 59 Z'/%3E%3Cpath d='M90 55 L91 59 L95 60 L91 61 L90 65 L89 61 L85 60 L89 59 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-hover);
}

/* ==========================================================================
   DISEÑO DE CONTENEDORES Y ELEMENTOS GENERALES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

ul {
    list-style: none;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-cream);
    box-shadow: 0 4px 14px rgba(16, 124, 119, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(223, 177, 117, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-cream);
    transform: translateY(-2px);
}

/* Etiquetas y títulos comunes */
.section-tag {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   NAVBAR (HEADER)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 75px;
    box-shadow: var(--shadow-sm);
    background-color: rgba(253, 251, 247, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px; /* Altura más grande de 55px a 70px */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 58px; /* Encoger el logo suavemente al hacer scroll */
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fallback-icon {
    font-size: 1.8rem;
}

.fallback-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.fallback-text span {
    color: var(--secondary);
}

/* Menú de navegación */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

/* Acciones del menú */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--primary);
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    background-color: rgba(16, 124, 119, 0.05);
    color: var(--secondary);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-cream);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Palmeras decorativas de fondo */
.hero-palm {
    position: absolute;
    bottom: -20px;
    width: 280px;
    height: auto;
    opacity: 0.06; /* Sutil marca de agua de fondo */
    color: var(--primary);
    pointer-events: none;
    z-index: 0;
}

.hero-palm-left {
    left: -80px;
    transform: rotate(15deg);
}

.hero-palm-right {
    right: -80px;
    transform: scaleX(-1) rotate(18deg);
    bottom: -40px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    background-color: rgba(223, 177, 117, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Lado Visual del Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
}

.hero-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobMorph 8s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobMorph 8s ease-in-out infinite alternate;
    z-index: 2;
    border: 4px solid var(--bg-cream);
    box-shadow: var(--shadow-lg);
}

/* Tarjetas Flotantes */
.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatElement 4s ease-in-out infinite;
}

.floating-icon {
    font-size: 1.5rem;
    background-color: var(--bg-cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.info-card {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.hours-card {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */
@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 40% 60% 50% 50% / 50% 60% 40% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Animación de entrada inicial */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .animate-in:nth-child(1) { animation-delay: 0.1s; }
.hero-content .animate-in:nth-child(2) { animation-delay: 0.2s; }
.hero-content .animate-in:nth-child(3) { animation-delay: 0.3s; }
.hero-content .animate-in:nth-child(4) { animation-delay: 0.4s; }
.hero-content .animate-in:nth-child(5) { animation-delay: 0.5s; }
.hero-visual.animate-in { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CARACTERÍSTICAS (FEATURES)
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-cream);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 163, 115, 0.15);
}

.feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--bg-cream);
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: rotate(10deg);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   MENÚ INTERACTIVO (MENU SECTION)
   ========================================================================== */
.menu-section {
    padding: 100px 0;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-cream);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(16, 124, 119, 0.15);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-tag.text-hot {
    background-color: #EF4444;
    color: white;
}

.product-tag.text-new {
    background-color: #10B981;
    color: white;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
}

.product-rating {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add-cart {
    background-color: var(--primary);
    color: var(--bg-cream);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-add-cart:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.btn-add-cart svg {
    transition: transform 0.3s;
}

.btn-add-cart:hover svg {
    transform: rotate(90deg);
}

/* ==========================================================================
   SOBRE NOSOTROS (ABOUT SECTION)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img {
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary);
    color: var(--bg-cream);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--secondary);
}

.badge-year {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
}

.badge-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.1em;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 36px;
    display: grid;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
}

.feature-checkmark {
    background-color: rgba(223, 177, 117, 0.15);
    color: var(--secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-weight: 700;
    color: var(--primary);
}

.about-feature-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    margin-top: 2px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.rating-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.user-info h4 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT AND LOCATION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-lead-text {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: grid;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 1.6rem;
    color: var(--secondary);
    background-color: var(--bg-cream);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.opening-hours {
    background-color: var(--bg-cream);
    padding: 30px;
    border-radius: 20px;
    border: 1px dashed var(--secondary);
}

.opening-hours h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.opening-hours ul li:last-child {
    border-bottom: none;
}

/* Formulario */
.contact-form-panel {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-panel h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 124, 119, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-status {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    color: #10B981;
}

.form-status.error {
    color: #EF4444;
}

/* ==========================================================================
   CARRITO DE COMPRAS (SIDEBAR)
   ========================================================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
}

.close-cart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.close-cart-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cart-items {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 16px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.qty-btn {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #EF4444;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-cream);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.btn-checkout {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='0.04'%3E%3Cpath d='M16 26 C 16 16, 44 16, 44 26'/%3E%3Cline x1='36' y1='18' x2='42' y2='8'/%3E%3Cpath d='M17 26 L22 52 C 22 54, 38 54, 38 52 L43 26 Z'/%3E%3Cpath d='M22 26 C22 22, 26 20, 30 20 C34 20, 38 22, 38 26'/%3E%3Ccircle cx='30' cy='39' r='4'/%3E%3Cpath d='M76 86 C 76 76, 104 76, 104 86'/%3E%3Cline x1='96' y1='78' x2='102' y2='68'/%3E%3Cpath d='M77 86 L82 112 C 82 114, 98 114, 98 112 L103 86 Z'/%3E%3Cpath d='M82 86 C82 82, 86 80, 90 80 C94 80, 98 82, 98 86'/%3E%3Ccircle cx='90' cy='99' r='4'/%3E%3Cpath d='M 83 40 L 81 32 L 99 32 L 97 40 Z'/%3E%3Cpath d='M 87 32 L 88 40'/%3E%3Cpath d='M 93 32 L 92 40'/%3E%3Cpath d='M 90 32 L 90 40'/%3E%3Cpath d='M 81 32 C 81 28, 99 28, 99 32'/%3E%3Cpath d='M 84 29 C 84 24, 96 24, 96 29'/%3E%3Ccircle cx='90' cy='22' r='1.8' fill='%23ffffff' fill-opacity='0.04' stroke='none'/%3E%3Cpath d='M 90 20 Q 92 17 94 18'/%3E%3Cpath d='M 23 100 L 21 92 L 39 92 L 37 100 Z'/%3E%3Cpath d='M 27 92 L 28 100'/%3E%3Cpath d='M 33 92 L 32 100'/%3E%3Cpath d='M 30 92 L 30 100'/%3E%3Cpath d='M 21 92 C 21 88, 39 88, 39 92'/%3E%3Cpath d='M 24 89 C 24 84, 36 84, 36 89'/%3E%3Ccircle cx='30' cy='82' r='1.8' fill='%23ffffff' fill-opacity='0.04' stroke='none'/%3E%3Cpath d='M 30 80 Q 32 77 34 78'/%3E%3Cpath d='M60 25 L61 29 L65 30 L61 31 L60 35 L59 31 L55 30 L59 29 Z'/%3E%3Cpath d='M60 85 L61 89 L65 90 L61 91 L60 95 L59 91 L55 90 L59 89 Z'/%3E%3Cpath d='M30 55 L31 59 L35 60 L31 61 L30 65 L29 61 L25 60 L29 59 Z'/%3E%3Cpath d='M90 55 L91 59 L95 60 L91 61 L90 65 L89 61 L85 60 L89 59 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
    color: var(--bg-cream);
    padding: 80px 0 24px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-logo .fallback-text {
    color: var(--bg-cream);
}

.footer-desc {
    color: #94A3B8;
    max-width: 320px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-cream);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links-group h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links-group ul {
    display: grid;
    gap: 12px;
}

.footer-links-group ul li {
    font-size: 0.9rem;
    color: #94A3B8;
}

.footer-links-group ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748B;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .btn-nav-cta {
        display: none; /* Ocultar CTA en móviles para no saturar */
    }
    
    /* Menú Hamburguesa para Móvil */
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-cream);
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
        padding: 40px 24px;
        z-index: 999;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-item {
        font-size: 1.2rem;
    }
    
    .blob-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .info-card {
        left: 0;
    }
    
    .hours-card {
        right: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-badge {
        position: static;
        margin-top: 20px;
        width: 100%;
        box-shadow: var(--shadow-sm);
    }
    
    .contact-form-panel {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   SCROLL REVEAL (JS ANIMACIONES)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ESTILOS PARA TIEMPO DE PREPARACIÓN
   ========================================================================== */
.product-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-prep-row {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

/* ==========================================================================
   DIVISORES DE OLAS MARINAS (BEACH DETAILS)
   ========================================================================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: transparent;
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 45px;
    transform: rotate(180deg); /* Olas fluyen hacia abajo */
}

.wave-divider .shape-fill {
    fill: var(--bg-white); /* Para secciones con fondo blanco */
}

/* Para transiciones hacia el fondo crema de arena */
.wave-divider.to-cream .shape-fill {
    fill: var(--bg-cream);
}

/* Para transiciones hacia el fondo del footer oscuro */
.wave-divider.to-footer .shape-fill {
    fill: var(--primary-dark);
}

/* Invertir dirección de las olas */
.wave-divider.flipped svg {
    transform: none; /* Olas fluyen hacia arriba */
}

/* Olas multicapa del footer */
.wave-divider.multi-layer {
    position: relative;
    margin-bottom: -2px; /* Previene brechas de renderizado */
}

.wave-divider.multi-layer svg {
    height: 110px; /* Altura más alta para las capas de olas */
    transform: none; /* Las olas apuntan hacia arriba */
}

/* Palmeras independientes en el footer (evitan la deformación del SVG estirado) */
.footer-palm {
    position: absolute;
    bottom: 12px; /* Ajustado para que surjan del agua */
    width: 75px;
    height: 90px;
    color: var(--primary-dark);
    z-index: 12; /* En frente de las olas */
    pointer-events: none;
    transition: var(--transition-smooth);
}

.footer-palm-left {
    left: 8%;
    transform: rotate(-5deg);
}

.footer-palm-right {
    right: 8%;
    transform: scaleX(-1) rotate(-8deg);
}

/* Ajustes adaptativos para dispositivos móviles */
@media (max-width: 768px) {
    /* Hacer las palmeras del hero más grandes y visibles en móvil para que se aprecien bien */
    .hero-palm {
        width: 200px;
        opacity: 0.12; /* Mayor opacidad para que destaquen de fondo */
    }
    .hero-palm-left {
        left: -50px;
        bottom: 22%;
    }
    .hero-palm-right {
        right: -50px;
        bottom: 12%;
    }
    
    /* Hacer las palmeras del footer más grandes y visibles */
    .footer-palm {
        width: 65px; /* Tamaño destacado en pantallas móviles */
        height: 78px;
        bottom: 12px;
    }
    .footer-palm-left {
        left: 6%;
    }
    .footer-palm-right {
        right: 6%;
    }
}
