/* ================================================================
   styles.css — Estilos consolidados y optimizados
   El Mesón de las Delicias
   ================================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "circular";
    src: url("../assets/fonts/circular/CircularStd-Medium.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    display: grid;
    place-items: center;
    background-color: rgb(21, 14, 8);
    color: #F5F5F5;
    overflow-x: hidden;
    font-family: 'circular', sans-serif;
    position: relative;
    width: 100dvw;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1.4px, transparent 1.4px);
    background-size: 3.5px 3.5px;
    pointer-events: none;
    z-index: 1;
}

section {
    width: 100dvw;
}


/* ===== HEADER ===== */
.header {
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100vw;
    height: fit-content;
    z-index: 10000;
    backdrop-filter: blur(3px);
    color: #F5F5F5;
    transition: all .3s ease-in;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.5);
}

.header > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    transition: all .3s ease-out;
}

.logo.logo-visible {
    color: #fff;
}

#logo-small {
    display: none;
    transition: all .3s ease-out;
}

#logo-small.logo-display {
    display: block;
}

.menu-nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    z-index: 1000;
}

.menu-nav li a {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu-nav li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.menu-nav li a:hover::after,
.menu-nav li a.activo::after {
    width: 100%;
}

.menu-nav li a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #F5F5F5;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle:hover {
    color: #d4af37;
}


/* ===== PARALLAX ===== */
.parallax-image {
    display: block;
    height: 35vh;
    width: 100dvw;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    place-content: center;
}

.parallax-image-01 {
    background-image: url("../img/first.jpg");
    height: 100vh;
    width: 100vw;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.parallax-image-02 {
    background-image: url("../img/menu/restaurante.jpg");
}

.parallax-image-03 {
    background-image: url("../img/menu/tacosc.png");
}

.parallax-image-04 {
    background-image: url("../img/menu/eventos.png");
}

.parallax-image-05 {
    background-image: url('../img/menu/galeria.png');
}

.parallax-content {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%),
                url('../img/img03.JPG');
    background-repeat: no-repeat;
    position: relative;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-size: cover;
}

.content-logo {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
}

.content-logo .img__logo {
    width: 50px;
}

.content-logo .hero__contlogo {
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 1rem;
}

.hero__contlogo .hero__line1 {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fff, rgba(255, 215, 0, 0));
    align-self: center;
    opacity: 0.8;
}

.hero__contlogo .hero__line2 {
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #fff, rgba(255, 215, 0, 0));
    align-self: center;
    opacity: 0.8;
}

.content-logo h1 {
    color: #FFD700;
}

.section-title {
    font-family: 'circular', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #d4af37;
    position: relative;
    margin-bottom: 20px;
}

.parallax-image .section-title {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #FFD700, #f4d03f, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-out, goldShimmer 3s ease-in-out infinite;
}

.parallax-image .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFD700);
    border-radius: 2px;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ===== SERVICES CARDS ===== */
.section-services {
    padding: 1rem 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 65rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card.first-card {
    grid-column: span 2;
    grid-row: span 2;
    cursor: auto;
}

.card.second-card {
    grid-column: span 1;
    grid-row: span 2;
}

.card {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 10px 20px rgba(255, 215, 0, 0.1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.5;
}

.corner::before,
.corner::after {
    position: absolute;
    content: '';
    background: #FFD700;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.right-top::before, .right-top::after { top: 1rem; right: 1rem; }
.right-bottom::before, .right-bottom::after { bottom: 1rem; right: 1rem; }
.left-bottom::before, .left-bottom::after { bottom: 1rem; left: 1rem; }
.left-top::before, .left-top::after { top: 1rem; left: 1rem; }
.corner::before { width: 0; height: 1px; }
.corner::after { height: 0; width: 1px; }

.card:hover { box-shadow: 5px 10px 10px rgba(255, 215, 0, 0.1); }

.card figcaption {
    position: absolute;
    text-align: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    max-width: 20rem;
    width: 100%;
    transform: translateY(-50%) translateX(-50%);
}

.card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    transition: all 0.4s ease;
    color: #FFD700;
}

.card p {
    opacity: 0;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn__card {
    width: fit-content;
    display: flex;
    gap: 5px;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-primary2 {
    margin: 10px auto;
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary3 {
    margin: 5px auto;
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-size: 0.8rem;
    gap: 4px;
    padding: 6px;
}

.card:hover img { opacity: 0.2; }
.card:hover .btn__card { opacity: 1; transition-delay: 0.2s; }
.card:hover .corner::before { width: 40px; opacity: 1; transition-delay: 0.2s; }
.card:hover .corner::after { height: 40px; opacity: 1; transition-delay: 0.2s; }
.card:hover h3 { opacity: 1; transition-delay: 0.3s; }
.card:hover p { opacity: 1; transition-delay: 0.35s; }


/* ===== RESTAURANT MENU ===== */
.hero__line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0));
    align-self: center;
    margin: 10px 0;
}

.restaurant-menu-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: auto;
    box-sizing: border-box;
}

.restaurant-hours {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.05) 60%, rgba(101, 67, 33, 0) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(80, 50, 30, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    box-sizing: border-box;
}

.restaurant-hours .highlight { color: #C9A14C; font-weight: bold; }
.restaurant-hours strong { color: #C9A14C; }
.restaurant-hours em { font-style: italic; color: #d4af37; }

.category-heading {
    font-size: 1.8em;
    color: #d4af37;
}

.food-item-card {
    display: flex;
    gap: 1rem;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.05) 60%, rgba(101, 67, 33, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    transition: transform 0.2s ease;
}

.food-item-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.dish-image-container {
    position: relative;
    width: 150px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dish-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-item-card:hover .dish-image-container img { transform: scale(1.05); }

.item-price-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(45deg, #caac06, #FFD700);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.dish-details { flex-grow: 1; }

.dish-name-label {
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(255,255,255,0.2);
}

.dish-description-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.extra-items {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.extra-items.show {
    max-height: 1000px;
    opacity: 1;
}

.ver-mas-container { display: flex; justify-content: center; }

.ver-mas-btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #caac06, #FFD700);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ver-mas-btn:hover { transform: scale(1.05); }


/* ===== PRODUCT SLIDER ===== */
.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
}

.product-slider {
    overflow: hidden;
    flex: 1;
    cursor: grab;
}

.product-slider-track {
    display: flex;
    gap: 19px;
    will-change: transform;
}

.product-slide {
    min-width: 220px;
    max-width: 220px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-slide:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.product-slide-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.product-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-slide:hover .product-slide-img img {
    transform: scale(1.08);
}

.product-price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-slide:hover .product-overlay { opacity: 1; }

.product-view-btn {
    background: #d4af37;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.product-slide-info {
    padding: 12px;
}

.product-slide-info h4 {
    font-size: 0.92rem;
    color: #f5f5f5;
    margin-bottom: 4px;
}

.product-slide-info p {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}



/* ===== SECTION DIVIDERS ===== */
.section-divider {
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.15) 20%, rgba(212, 175, 55, 0.4) 50%, rgba(212, 175, 55, 0.15) 80%, transparent 100%);
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.divider-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,215,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.divider-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    gap: 8px;
}

.divider-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37;
    margin-bottom: 8px;
}

.divider-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFD700, #f4d03f, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 12px;
}

.divider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.divider-line-left,
.divider-line-right {
    display: none;
}

.divider-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    letter-spacing: 1px;
}


/* ===== GALLERY ===== */
.gallery-section {
    overflow: hidden;
    padding: 1rem 0;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 12px;
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== ABOUT ===== */
.about {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
}

.about__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4af37;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.about__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1rem;
}

.about__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
}

.about__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #999;
    margin-bottom: 1.5rem;
}

.about__highlight {
    border-left: 3px solid #d4af37;
    padding: 1rem 1.2rem;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 0 10px 10px 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.about__values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
}

.about__value {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about__value::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4af37;
    flex-shrink: 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 18px;
}

.about__img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}


/* ===== CONVERSIONS (Status, Featured, CTAs, Testimonials, Stats, Reviews) ===== */

/* Status Badge */
.status-live {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1;
}

.status-live--open {
    display: inline-flex;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-live--closed {
    display: inline-flex;
    background: rgba(255, 100, 100, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot--open {
    background: #25D366;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
    animation: statusPulse 2s infinite;
}

.status-dot--closed { background: #ff6b6b; }

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.header.scrolled .status-live { display: inline-flex; }

/* Featured Dish */
.featured-dish {
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
}

.featured-dish__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-dish__inner:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.featured-dish__image {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.featured-dish__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-dish__inner:hover .featured-dish__image img { transform: scale(1.05); }

.featured-dish__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.featured-dish__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.featured-dish__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    font-weight: 600;
}

.featured-dish__name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.featured-dish__desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.5;
}

.featured-dish__price {
    font-size: 2rem;
    font-weight: 800;
    color: #d4af37;
}

.featured-dish__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.featured-dish__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* CTAs */
.menu-cta {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-cta__text {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 1rem;
}

.menu-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-cta__btn--whatsapp {
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.menu-cta__btn--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.menu-cta__btn--reserve {
    background: transparent;
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.menu-cta__btn--reserve:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-3px);
}

/* Stats */
.stats-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0.5rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 4px;
}

.stat-detail {
    display: block;
    font-size: 0.7rem;
    color: #777;
    letter-spacing: 0.3px;
}

/* Testimonials */
.testimonials {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials__tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4af37;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.testimonials__title {
    font-size: 2rem;
    font-weight: 700;
    color: #f5f5f5;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.testimonial-card__photo {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-card__photo img { transform: scale(1.05); }

.testimonial-card__stars {
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 0.9rem;
    color: #f0f0f0;
    display: block;
}

.testimonial-card__date {
    font-size: 0.72rem;
    color: #777;
    display: block;
}

/* Review Form */
.testimonials__action {
    text-align: center;
    margin-top: 2rem;
}

.testimonials__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.review-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.review-form--open {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.5rem;
}

.review-form__inner {
    max-width: 550px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.review-form__title { font-size: 1.3rem; font-weight: 700; color: #f5f5f5; margin: 0 0 4px; }
.review-form__subtitle { font-size: 0.8rem; color: #777; margin: 0 0 1.5rem; }
.review-form__field { margin-bottom: 1rem; }
.review-form__field label { display: block; font-size: 0.8rem; font-weight: 600; color: #ccc; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

.review-form__field input[type="text"],
.review-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #f5f5f5;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.review-form__field input:focus,
.review-form__field textarea:focus {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.review-form__field textarea { resize: vertical; min-height: 80px; }
.review-form__counter { display: block; text-align: right; font-size: 0.7rem; color: #666; margin-top: 4px; }

.review-form__stars { display: flex; gap: 6px; }
.review-star { font-size: 1.8rem; color: #444; cursor: pointer; transition: color 0.2s ease, transform 0.2s ease; line-height: 1; }
.review-star.active { color: #d4af37; }
.review-star:hover { transform: scale(1.2); color: #f4d03f; }

.review-form__upload {
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
    text-align: center;
}

.review-form__upload:hover { border-color: rgba(212, 175, 55, 0.3); }
.review-form__upload-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #666; font-size: 0.85rem; }
.review-form__preview { width: 100%; max-height: 200px; object-fit: cover; border-radius: 8px; }

.review-form__actions { display: flex; gap: 10px; margin-top: 1.5rem; }

.review-form__submit {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form__submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3); }
.review-form__submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.review-form__cancel {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form__cancel:hover { background: rgba(255,255,255,0.05); color: #ccc; }

.review-form__message { margin-top: 1rem; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; text-align: center; display: none; }
.review-form__message--success { display: block; background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.3); color: #25D366; }
.review-form__message--error { display: block; background: rgba(255, 100, 100, 0.1); border: 1px solid rgba(255, 100, 100, 0.3); color: #ff6b6b; }


/* ===== LOCATION ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.location-info__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-info__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    flex-shrink: 0;
}

.location-info__item strong {
    display: block;
    font-size: 0.85rem;
    color: #f0f0f0;
    margin-bottom: 2px;
}

.location-info__item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.location-actions {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn--maps {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-btn--maps:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.location-btn--wa {
    background: linear-gradient(45deg, #25D366, #20ba5a);
    color: #fff;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}


/* ===== FOOTER ===== */
#footer {
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-column { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { width: 50px; }

.social-wrapper { display: flex; gap: 0.5rem; }
.social-links { display: inline-flex; gap: 0.5rem; align-items: center; }
.social-links a { color: #959DA5; transition: color 0.3s ease; }
.social-links a:hover { color: #d4af37; }
.social-links ul { display: flex; flex-wrap: wrap; gap: 0.75rem; list-style: none; }

.footer-bottom-wrapper {
    display: flex;
    margin: 0 auto;
    gap: 1rem;
    color: #d4af37;
    padding: 2rem 0;
}

.small-footer { font-size: 1rem; }

.footer-bottom-links {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #959DA5;
    text-decoration: none;
    white-space: nowrap;
}


/* ===== WHATSAPP FLOATING ===== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.boton-whatsapp {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.boton-whatsapp:hover { transform: scale(1.1); }
.boton-whatsapp img { width: 30px; height: 30px; }

.whatsapp-tooltip {
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}


/* ===== ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.7s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 100;
    opacity: 0.7;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.scroll-indicator span {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 215, 0, 0.6);
    border-bottom: 2px solid rgba(255, 215, 0, 0.6);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(8px); }
    60% { transform: rotate(45deg) translateY(4px); }
}

.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.8s;
}

.btn-ripple:active::after { transform: scale(0, 0); opacity: 0.4; transition: 0s; }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #FFD700, #d4af37);
    z-index: 100000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-nav li a.nav-active { color: #d4af37 !important; }
.menu-nav li a.nav-active::after { width: 100% !important; }
.menu-toggle.active { color: #d4af37; transform: rotate(90deg); transition: transform 0.3s ease; }

.cards .card.scroll-reveal:nth-child(1) { --reveal-delay: 0s; }
.cards .card.scroll-reveal:nth-child(2) { --reveal-delay: 0.1s; }
.cards .card.scroll-reveal:nth-child(3) { --reveal-delay: 0.2s; }
.cards .card.scroll-reveal:nth-child(4) { --reveal-delay: 0.3s; }
.cards .card.scroll-reveal:nth-child(5) { --reveal-delay: 0.4s; }

/* Hero button styles */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cont-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sobre-nosotros {
    padding: 0 2rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: auto;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.images-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 65px);
    gap: 0.6rem;
}

.image-item {
    border-radius: 14px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-1 { grid-row: 1 / 4; }
.image-2 { grid-row: 1 / 4; }
.image-3 { grid-row: 4 / 7; }
.image-4 { grid-row: 4 / 7; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .card.first-card { grid-column: span 2; grid-row: span 2; }
    .card.second-card { grid-column: span 1; grid-row: span 2; }
    .about__grid { grid-template-columns: 1fr; }
    .images-section { grid-template-rows: repeat(4, 70px) !important; }
}

@media (max-width: 768px) {
    .header {
        padding: 5px 10px;
        height: 50px;
        position: fixed;
    }

    .logo { font-size: 1.2rem; }

    .menu-toggle { display: block; }

    .menu-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        right: 0;
        background: rgba(21, 18, 0, 0.9);
        width: 100%;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
    }

    .menu-nav.open { display: flex; }
    .header { flex-wrap: wrap; }

    section, #footer { width: 100vw !important; padding: 0; }

    .parallax-image { height: 30vh; background-attachment: scroll; }
    .parallax-image-01 { height: 100vh; }
    .parallax-image .section-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }

    .content-logo { width: 100vw; top: 54%; transform: translate(-50%, -50%); text-align: center; }

    .cards { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; margin: 0; }
    .card.first-card, .card.second-card { grid-column: span 1; grid-row: span 1; }
    .card figcaption { max-width: 90%; }
    .card h3 { font-size: 1.3rem; }
    .card p { font-size: 0.85rem; }

    .restaurant-menu-wrapper { width: 100%; padding: 0; }
    .restaurant-hours { font-size: 1rem; line-height: 1.4; width: 90vw; }

    .dish-image-container { height: 145px; }

    .featured-dish { width: 92%; margin: 1.5rem auto; }
    .featured-dish__inner { grid-template-columns: 1fr; border-radius: 14px; }
    .featured-dish__image { min-height: 180px; max-height: 200px; }
    .featured-dish__info { padding: 1.2rem; gap: 8px; }
    .featured-dish__name { font-size: 1.3rem; }
    .featured-dish__price { font-size: 1.5rem; }
    .featured-dish__cta { padding: 10px 20px; font-size: 0.8rem; }

    .menu-cta { padding: 1.5rem 1rem; }
    .menu-cta__text { font-size: 1.1rem; }
    .menu-cta__btn { padding: 10px 20px; font-size: 0.85rem; width: 100%; justify-content: center; }
    .menu-cta__buttons { flex-direction: column; gap: 0.6rem; }

    .stats-section { margin: 1rem auto; padding: 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .stat-item { padding: 1rem 0.5rem; border-radius: 10px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-detail { font-size: 0.65rem; }

    .status-live { display: none !important; }
    .header.scrolled .status-live { display: inline-flex !important; font-size: 0.6rem; padding: 3px 8px; }

    .testimonials__grid { grid-template-columns: 1fr; }
    .testimonials__btn { font-size: 0.85rem; padding: 10px 22px; }
    .review-form__inner { padding: 1.2rem; }
    .review-form__title { font-size: 1.1rem; }
    .review-form__actions { flex-direction: column; }
    .testimonial-card__photo { height: 120px; }
    .review-star { font-size: 1.5rem; }

    .location-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem; }
    .location-map iframe { height: 280px; }

    .scroll-indicator { bottom: 80px; }
    .scroll-indicator span { font-size: 0.65rem; }
    .whatsapp-container { bottom: 20px; right: 15px; }
    .whatsapp-tooltip { font-size: 0.75rem; padding: 6px 12px; }

    .about-container { grid-template-columns: 1fr; }
    .about__grid { grid-template-columns: 1fr; }
    .divider-title { font-size: 1.8rem; letter-spacing: 4px; }

    .footer-bottom-wrapper { flex-direction: column; align-items: center; gap: 1rem; }
    .footer-bottom-wrapper .small-footer { font-size: 1rem; text-align: center; }

    .btn-hero { padding: 0.75rem 1.5rem; font-size: 1rem; }
}

@media (max-width: 480px) {
    .product-slide { min-width: 180px; max-width: 180px; }
    .product-slide-img { height: 130px; }
    .slider-nav { width: 32px; height: 32px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal { opacity: 1; transform: none; transition: none; }
    .reveal-item { opacity: 1; transform: none; animation: none; }
    .scroll-arrow { animation: none; }
}


/* ===== PRODUCT MODAL (from modal.css) ===== */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(43, 29, 18, 0.55);
    backdrop-filter: blur(16px);
}

.product-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(43, 29, 18, 0.25);
    position: relative;
}

.product-modal-overlay.active .product-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #4A3728;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0;
    line-height: 0;
}

.modal-close:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
}

.modal-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-modal:hover .modal-image-container img {
    transform: scale(1.04);
}

.modal-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
    pointer-events: none;
}

.modal-price-float {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 5;
    font-size: 2rem;
    font-weight: 700;
    color: #C75B2A;
    line-height: 1;
}

.modal-price-float.no-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8B7355;
}

.modal-tag {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C75B2A;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #2B1D12;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-description {
    font-size: 0.95rem;
    color: #8B7355;
    line-height: 1.6;
    white-space: pre-line;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: rgba(43, 29, 18, 0.08);
    margin: 16px 0;
}

.modal-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.modal-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    background: #20ba5a;
}

@media (max-width: 768px) {
    .product-modal-overlay { align-items: flex-end; padding: 0; }
    .product-modal { max-width: 100%; border-radius: 24px 24px 0 0; max-height: 88vh; overflow-y: auto; transform: scale(1) translateY(100%); }
    .product-modal-overlay.active .product-modal { transform: scale(1) translateY(0); }
    .modal-image-container { height: 220px; }
    .modal-content { padding: 16px 20px 24px; }
    .modal-content h2 { font-size: 1.3rem; }
    .modal-price-float { font-size: 1.6rem; bottom: 12px; left: 16px; }
    .modal-order-btn { border-radius: 12px; font-size: 0.95rem; padding: 13px 20px; }
}

.product-modal-overlay.active .modal-tag { animation: modalFadeUp 0.4s ease-out 0.15s both; }
.product-modal-overlay.active .modal-content h2 { animation: modalFadeUp 0.4s ease-out 0.2s both; }
.product-modal-overlay.active .modal-description { animation: modalFadeUp 0.4s ease-out 0.25s both; }
.product-modal-overlay.active .modal-order-btn { animation: modalFadeUp 0.4s ease-out 0.35s both; }
.product-modal-overlay.active .modal-price-float { animation: modalPriceIn 0.5s ease-out 0.3s both; }

@keyframes modalFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes modalPriceIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }