        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, sans-serif;
        }

        .meta-item p {
            font-size: 13px;
        }

        summary h2 {
            font-size: 16px;
        }

        .accordion h2 {
            font-size: 18px;
        }

        body {
            background: #fff;
        }

        /* HERO */
        .hero {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
        }

        /* RECETAS */
        .recetas {
            padding: 50px 20px;
        }

        .subtitulo {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .titulo {
            font-family: "Georgia", serif;
            font-size: 32px;
            font-style: italic;
            margin-bottom: 40px;
        }

        .titulo span {
            font-style: normal;
            font-weight: bold;
        }

        .categorias {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .categoria {
            text-align: center;
            cursor: pointer;
        }

        .categoria img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .categoria img:hover {
            transform: scale(1.05);
        }

        .categoria p {
            margin-top: 10px;
            font-weight: 500;
        }


        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
        }

        .container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            gap: 40px;
        }

        /* IZQUIERDA */
        .left {
            flex: 1;
        }

        h1 {
            font-size: 42px;
            color: #7a2e2e;
            margin-bottom: 20px;
        }

        .info-top {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6d8c4f;
            font-weight: 500;
        }

        .info-item img {
            width: 20px;
        }

        .costo {
            color: red;
            font-weight: 600;
        }

        /* Dropdown */
        .dropdown {
            background: #eaeaea;
            padding: 12px 16px;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .dropdown img {
            width: 16px;
        }

        /* Ingredientes */
        .ingredientes {
            background: #f0eae6;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .ingredientes h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #6d8c4f;
        }

        .ingredientes h3 img {
            width: 22px;
        }

        .ingredientes ul {
            list-style: none;
        }

        .ingredientes li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 18px;
            line-height: 1.4;
        }

        .ingredientes li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #f4a825;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* Botón */
        .btn-agregar {
            background: #4c6b2f;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
        }

        .btn-agregar:hover {
            background: #3f5927;
        }

        /* DERECHA */
        .container {
            display: flex;
            gap: 60px;
            align-items: stretch;
            /* MUY IMPORTANTE */
        }

        /* COLUMNA DERECHA */
        .right {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            min-height: 520px;
            /* controla altura del card */
        }

        .recipe {
            margin-top: 10px !important;
        }

        /* IMAGEN */
        .right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* hace el zoom elegante */
            object-position: center;
            display: block;
            transition: transform 0.6s ease;
        }

        /* efecto opcional premium */
        .right:hover img {
            transform: scale(1.05);
        }

        .preparacion {
            max-width: 1100px;
            margin: 40px auto;
        }

        .preparacion h2 {
            font-size: 34px;
            color: #7a2e2e;
            margin-bottom: 20px;
        }

        .prep-box {
            background: #e9e4e0;
            padding: 30px;
            border-radius: 12px;
        }

        .prep-box ol {
            padding-left: 20px;
        }

        .prep-box li {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #333;
        }
    </style>
    <style>
        /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            color: #333;
        }

        /* ============================= */
        /* HISTORIA */
        /* ============================= */

        .history-section {
            padding: 60px 20px;
        }

        .history-container {
            max-width: 1100px;
            margin: auto;
        }

        .history-subtitle {
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .history-title {
            font-size: 38px;
            font-family: serif;
            font-style: italic;
            margin-bottom: 25px;
        }

        .history-text {
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 15px;
        }

        /* ============================= */
        /* RECETAS RELACIONADAS */
        /* ============================= */

        .related-section {
            padding: 50px 20px;
            background: #fff;
        }

        .related-container {
            max-width: 1200px;
            margin: auto;
        }

        .related-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 20px;
            font-weight: 600;
        }

        /* MOBILE CAROUSEL */
        .related-carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }

        .related-carousel::-webkit-scrollbar {
            display: none;
        }

        .recipe-card {
            min-width: 220px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .recipe-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .recipe-info {
            padding: 15px;
        }

        .recipe-title-short {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .stars {
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* ============================= */
        /* CONTENIDO LISTADO */
        /* ============================= */

        .list-section {
            background: #cfd5bf;
            padding: 50px 20px;
        }

        .list-container {
            max-width: 1200px;
            margin: auto;
        }

        .list-title {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .list-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .list-grid ul {
            list-style: disc;
            padding-left: 18px;
        }

        .list-grid li {
            margin-bottom: 8px;
        }

        /* ============================= */
        /* DESKTOP */
        /* ============================= */

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.4s ease;
            gap: 20px
        }

        .recipe-card {
            min-width: 100%;
            padding: 0px;
        }

        .recipe-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 12px 0px 12 0px;
        }

        .recipe-info {
            padding: 10px 0;
            margin: 10px;
        }

        /* FLECHAS */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            font-size: 22px;
            padding: 8px 14px;
            cursor: pointer;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        /* DOTS */
        .carousel-dots {
            text-align: center;
            margin-top: 15px;
        }

        .carousel-dots span {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background: #ccc;
            display: inline-block;
            border-radius: 50%;
            cursor: pointer;
        }

        .carousel-dots .active {
            background: #333;
        }

        /* DESKTOP: mostrar 3 */
        @media(min-width:768px) {
            .recipe-card {
                min-width: 33.333%;
            }
        }

        @media(min-width:768px) {

            .history-title {
                font-size: 48px;
            }

            .related-carousel {
                overflow: visible;
                flex-wrap: wrap;
                justify-content: center;
            }

            .recipe-card {
                min-width: 250px;
                max-width: 250px;
            }

            .list-grid {
                grid-template-columns: repeat(4, 1fr);
            }

        }

        /* ============================= */
        /* FOOTER MEGA LINKS (3 columnas) */
        /* ============================= */
        .footer-mega {
            background: #cfd5bf;
            /* mismo tono de tu list-section */
            padding: 55px 20px;
        }

        .fm-wrap {
            max-width: 1100px;
            margin: 0 auto;
        }

        .fm-heading {
            text-align: center;
            color: #2f5a3a;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 34px;
        }

        .fm-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 26px;
        }

        /* columna */
        .fm-col {
            padding: 6px 0;
        }

        .fm-col-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            color: #2f5a3a;
            font-weight: 700;
            font-size: 18px;
        }

        .fm-icon {
            width: 26px;
            height: 26px;
            object-fit: contain;
            flex: 0 0 auto;
        }

        .fm-col-title {
            line-height: 1.1;
        }

        .fm-list {
            list-style: disc;
            padding-left: 22px;
            color: #333;
        }

        .fm-list li {
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .fm-list a {
            color: #333;
            text-decoration: none;
        }

        .fm-list a:hover {
            text-decoration: underline;
        }

        /* DESKTOP: 3 columnas + separadores */
        @media (min-width: 768px) {
            .fm-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
                align-items: start;
            }

            .fm-col {
                padding: 0 34px;
            }

            .fm-col:not(:last-child) {
                border-right: 1px solid rgba(0, 0, 0, 0.12);
            }
        }

        .extra {
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px 16px;
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

        .extra__label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #7b2f38;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .extra__labelIcon {
            font-size: 22px;
        }

        .card {
            position: relative;
            background: #dfe8cf;
            border-radius: 12px;
            padding: 46px 80px 44px 120px;
            /* deja espacio para decoraciones */
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .06) inset;
        }

        .card__title {
            text-align: center;
            font-family: "Georgia", "Times New Roman", serif;
            /* si tienes una script font, cámbiala */
            font-style: italic;
            color: #3f5c2d;
            font-size: 54px;
            font-weight: 500;
            margin: 0 0 22px 0;
        }

        .card__body {
            color: #111827;
            font-size: 18px;
            line-height: 1.7;
        }

        .card__body p {
            margin: 0 0 18px 0;
        }

        /* ===== decoraciones ===== */
        .deco {
            position: absolute;
            user-select: none;
            pointer-events: none;
        }

        .deco--bowl {
            left: 26px;
            top: 26px;
            width: 96px;
            height: auto;
            border-radius: 999px;
            background: white;
            padding: 6px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
        }

        .deco--tomatoesLeft {
            left: -59%;
            top: 15px;
            width: 820px;
            height: auto;
        }

        .deco--tomatoRight {
            right: 24px;
            bottom: -24px;
            /* top: 0px; */
            width: 140px;
            height: auto;
        }

        .deco--leafTopRight {
            right: -8px;
            top: -10px;
            width: 130px;
            height: auto;
            opacity: .95;
        }

        /* responsive */
        @media (max-width: 820px) {
            .card {
                padding: 34px 20px 26px 20px;
            }

            .deco--bowl,
            .deco--tomatoesLeft {
                display: none;
                /* en móvil a veces estorban */
            }

            .card__title {
                font-size: 34px;
            }
        }

        .food-header {
            width: 100%;
            background: #f3f4f6;
        }

        /* banner superior */
        .food-banner {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .food-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* menú */
     .food-menu {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    padding: 20px 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto;
    align-content: flex-end;
}

        /* items */
       .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #4d7c0f;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    flex-direction: column;
    margin-top: 50px;
    align-content: flex-end;
}

        .menu-item img {
            width: 68px;
        }

        .menu-item:hover {
            color: #365314;
        }

        /* activo */
        .menu-item.active {
            font-weight: 600;
        }

        .recipe {
            max-width: 1200px;
            margin: 0 auto;
            padding: 28px 16px 40px;
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 34px;
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

        /* left */
        .recipe-title {
            font-size: 40px;
            color: #2f4d1f;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin: 0 0 30px;
        }

        /* meta */
        .recipe-meta {
            display: flex;
            gap: 26px;
            align-items: center;
            margin-bottom: 18px;
            color: #2f4d1f;
            font-weight: 600;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
        }

       .meta-item img {
            width: 40px;
            height: 33px;
        }

        /* accordion */
        .accordion {
            background: #f2f2f2;
            border-radius: 10px;
            padding: 12px 16px;
            border: 1px solid #ececec;
            margin: 18px 0 18px;
        }

        .recipe-right {
            width: 100%;
        }

        .accordion summary {
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: #7b2f38;
            font-size: 18px;
        }

        .accordion summary::-webkit-details-marker {
            display: none;
        }

        .accordion summary::after {
            content: "";
            width: 10px;
            height: 10px;
            border-right: 3px solid #96a77b;
            border-bottom: 3px solid #96a77b;
            transform: rotate(45deg);
            margin-left: 10px;
        }

        .accordion[open] summary::after {
            transform: rotate(-135deg);
        }

        .accordion-body {
            padding-top: 10px;
            color: #374151;
            line-height: 1.6;
        }

        /* ingredients */
        .ingredients-card {
            background: #f6f2ef;
            border-radius: 10px;
            padding: 18px 18px 16px;
            border: 1px solid rgba(0, 0, 0, .04);
        }

        .ingredients-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .ingredients-header img {
            width: 54px;
            height: 54px;
        }

        .ingredients-header h2 {
            font-size: 28px;
            color: #7b2f38;
            margin: 0;
            font-weight: 800;
        }

        .ingredients-list {
            margin: 0;
            padding-left: 26px;
            line-height: 1.85;
            font-size: 18px;
        }

        .ingredients-list li {
            margin: 4px 0;
        }

        .ingredients-list li::marker {
            color: #f0b34a;
            /* bullet amarillo */
            font-size: 22px;
        }

        /* button */
        .btn-add {
            margin-top: 14px;
            background: #2f4d1f;
            color: #fff;
            border: none;
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 800;
            cursor: pointer;
            width: fit-content;
            text-decoration: none;
        }

        .btn-add:hover {
            filter: brightness(.95);
            color: #F7F7F7 !important;
        }

        /* right hero image */
        .hero {
            position: relative;
            width: 100%;
        }

        .hero-img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 0 0 160px 0;

            display: block;
        }

        /* tag */
        .hero-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: #7b2f38;
            color: #fff;
            padding: 10px 22px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
        }

        /* squares decor */
        .hero-squares {
            position: absolute;
            right: 10px;
            bottom: 8px;
            display: flex;
            gap: 10px;
        }

        .hero-squares span {
            width: 44px;
            height: 44px;
            background: #d9d9d9;
            border-radius: 4px;
            opacity: .95;
        }

        /* responsive */
        @media (max-width: 980px) {
            .recipe {
                grid-template-columns: 1fr;
            }

            .hero-img {
                height: 420px;
                border-radius: 0 0 0 120px;
            }

            .recipe-title {
                font-size: 44px;
            }
        }

        .recipe-right {
            width: 100%;
        }

        .recipe-right .hero {
            position: relative;
            width: 100%;
            height: 780px;
            /* ✅ grande */
        }

        .recipe-right .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* =========================
   MOBILE ONLY (<= 768px)
   ========================= */
        @media (max-width: 768px) {

            /* ===== Top banner + menu ===== */
            .food-banner {
                height: 90px;
            }

            /* menu en carrusel */
            .food-menu {
                justify-content: flex-start;
                gap: 14px;
                padding: 14px 12px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
            }

            .food-menu::-webkit-scrollbar {
                display: none;
            }

            .menu-item {
                flex: 0 0 auto;
                white-space: nowrap;
                scroll-snap-align: start;
                padding: 10px 12px;
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.7);
                border: 1px solid rgba(0, 0, 0, 0.06);
                font-size: 15px;
            }

            .menu-item img {
                width: 22px;
                height: 22px;
            }

            .menu-item.active {
                background: #e9f5d8;
                border-color: rgba(77, 124, 15, 0.25);
                font-weight: 700;
            }

            /* ===== Recipe layout ===== */
            .recipe {
                grid-template-columns: 1fr !important;
                padding: 18px 12px 26px;
                gap: 16px;
            }

            /* imagen arriba */
            .recipe-right {
                order: -1;
            }

            .recipe-right .hero {
                height: 260px !important;
                /* más “hero” mobile */
            }

            .recipe-right .hero-img {
                border-radius: 18px !important;
                /* en móvil mejor simple */
            }

            .hero-tag {
                top: 10px;
                right: 10px;
                font-size: 14px;
                padding: 8px 12px;
                border-radius: 10px;
            }

            .hero-squares {
                right: 10px;
                bottom: 10px;
                gap: 8px;
            }

            .hero-squares span {
                width: 26px;
                height: 26px;
            }

            /* ===== Title + meta ===== */
            .recipe-title {
                margin-top: 10px;
                font-size: 27px;
                line-height: 1.05;
                margin-bottom: 28px;
            }

            .recipe-meta {
                gap: 14px;
                flex-wrap: wrap;
                margin-bottom: 12px;
            }

            .meta-item {
                font-size: 14px;
                gap: 8px;
            }

            .meta-item img {
                width: 20px;
                height: 20px;
            }

            /* ===== Accordion ===== */
            .accordion {
                margin: 20px 0 20px;
                padding: 10px 12px;
            }

            /* OJO: tienes <h2> dentro de summary; le quitamos márgenes en móvil */
            .accordion summary h2 {
                margin: 0;
                font-size: 16px;
            }

            .accordion summary {
                font-size: 16px;
            }

            /* ===== Ingredients ===== */
            .ingredients-card {
                padding: 14px;
            }

            .ingredients-header h2 {
                font-size: 20px;
            }

            .ingredients-list {
                font-size: 15px;
                line-height: 1.65;
                padding-left: 22px;
            }

            /* botón full width */
            .btn-add {
                width: 100%;
                display: block;
                text-align: center;
                font-size: 16px;
                padding: 14px 14px;
                border-radius: 12px;
            }

            /* ===== Preparación ===== */
            .preparacion {
                margin: 18px auto;
                padding: 0 12px;
            }

            .prep-box {
                padding: 18px;
                border-radius: 12px;
            }

            /* ===== Dato adicional ===== */
            .extra {
                padding: 18px 12px;
            }

            .card {
                padding: 22px 16px 18px 16px;
                border-radius: 12px;
            }

            .card__title {
                font-size: 28px;
                margin-bottom: 14px;
            }

            .card__body {
                font-size: 15px;
                line-height: 1.7;
            }

            /* decoraciones off en móvil para que no estorben */
            .deco--bowl,
            .deco--tomatoesLeft,
            .deco--tomatoRight,
            .deco--leafTopRight {
                display: none;
            }

            /* ===== Recetas relacionadas ===== */
            .related-section {
                padding: 28px 12px;
            }

            /* En móvil: sin flechas (molestan) */
            .carousel-btn {
                display: none;
            }

            /* cards mas compactas */
            .recipe-card img {
                height: 180px;
            }

            /* ===== Footer mega ===== */
            .footer-mega {
                padding: 34px 12px;
            }

            .fm-heading {
                font-size: 20px;
                margin-bottom: 18px;
            }
        }

        /* =========================
   FIX CAROUSEL FINAL (MOBILE)
   ========================= */
        @media (max-width: 768px) {
            .recipe-info h3 {
                font-size: 15px;
            }

            .recipe-info a {
                font-size: 15px;
            }

            .recipe {
                margin-top: 15px !important;
            }

            /* el track debe scrollear horizontal */
            .carousel-wrapper {
                overflow: visible;
                /* no recortar */
            }

            .carousel-track {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                gap: 14px;
                padding: 4px 2px 12px;
                transform: none !important;
                /* evita que JS lo deje movido raro */
            }

            .carousel-track::-webkit-scrollbar {
                display: none;
            }

            /* cada card en móvil: tipo "tarjeta" scrolleable */
            .carousel-track .recipe-card {
                min-width: 78% !important;
                /* 👈 tamaño pro */
                max-width: 78% !important;
                flex: 0 0 auto;
                scroll-snap-align: start;
                border-radius: 12px;
                background: #fff;
                overflow: hidden;
            }

            .carousel-track .recipe-card img {
                height: 190px;
                border-radius: 0;
            }

            /* en móvil ocultamos flechas y dots (opcional) */
            .carousel-btn {
                display: none;
            }

            .carousel-dots {
                display: none;
            }
        }
    </style>
  <style>

/* =========================================
   BLOQUE COCINA - AJUSTE SEGÚN MOCKUP
========================================= */

.cocina-info-wrap {
      position: relative;
    margin: 0px;
    padding: 20px 0px 0px;
    overflow: visible;
 
}

/* -------------------------
   DECORATIVOS
------------------------- */
.deco {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.deco-pepino { top: -30px;
    left: 90px;
    width: 170px;}
.deco-pimienta { top: -30px;
    right: 80px;
    width: 240px; }
.deco-tomate {     top: 120px;
    left: 55px;
    width: 260px; }
.deco-cebolla { top: 300px; right: 70px; width: 175px; }
.deco-ajo { top: 350px; right: 40px; width: 70px; }
.deco-pimenton { top: 520px; left: 45px; width: 90px; }
.deco-champinon {     top: 500px;
    right: 10%;
    width: 150px; }
.deco-pasta1 { bottom: 85px; right: 105px; width: 170px; }
.deco-pasta2 { bottom: 30px; right: 145px; width: 120px; }
.deco-salsa { bottom: 35px; left: 70px; width: 75px; }
.deco-tomates {     bottom: 15px;
    left: 180px;
    width: 180px;}

/* -------------------------
   SECCIÓN SUPERIOR
------------------------- */
.cook-links--mockup {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 80px 0 0;
  width: 100%;
}

.cook-links--mockup .cook-links__container {
  max-width: 920px;
  margin: 0 auto;
  background: #f7f5f1;
  border-radius: 22px 22px 0 0;
  padding: 48px 34px 22px;
  box-sizing: border-box;
}

.cook-links__floating-title {
  position: relative;
  z-index: 3;
  max-width: 430px;
  margin: 0 auto -22px;
  background: #ecdada;
  color: #6d3b3e;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  padding: 18px 20px;
  border-radius: 8px;
}

.cook-links--mockup .cook-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cook-links--mockup .cook-links__item {
  padding: 10px 28px 20px;
}

.cook-links--mockup .cook-links__item:not(:last-child) {
  border-right: 1px solid #c7d7ae;
}

.cook-links--mockup .cook-links__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cook-links--mockup .cook-links__icon {
  width: 56px;
    height: 35px;
    object-fit: contain;
    margin-top: 0;
}

.cook-links--mockup .cook-links__heading h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #46652d;
  font-weight: 700;
}

.cook-links--mockup ul {
    list-style-type: none;
    /* pointer-events: none;*/
    margin: 0;
    padding-left: 18px;
    text-align: center;
}

.cook-links--mockup li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: #1f1f1f;
}

.cook-links--mockup a {
  color: #1f1f1f;
  text-decoration: none;
}

.cook-links--mockup a:hover {
  text-decoration: underline;
}

/* -------------------------
   SECCIÓN INFERIOR
------------------------- */
.desarrollo--mockup {
  position: relative;
  z-index: 2;
  background: #eef2ea !important;
  margin: 0 auto;
  padding: 34px 20px 70px;
}

.desarrollo--mockup .desarrollo__container {
  max-width: 920px;
  margin: 0 auto;
}

.desarrollo--mockup .titulo-principal {
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #496b28;
  margin: 30px 0 18px;
}

.desarrollo--mockup .descripcion {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #8b8b8b;
}

.desarrollo--mockup .columnas {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}

.desarrollo--mockup .columna {
  min-width: 0;
    height: 500px;
}

.desarrollo--mockup .columna h3 {
  display: none;
}

.info-box {
  position: relative;
  padding-top: 20px;
}

.info-box__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #7eaa33;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 0;
  z-index: 2;
}

.desarrollo--mockup .card {
  background: transparent !important;
  border: 1px solid #98b56e;
  border-radius: 2px;
  padding: 22px 18px 20px;
  box-shadow: none;
  min-height: 320px;
}

.desarrollo--mockup .card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #6f6f6f;
  margin-top:20px;
}

/* -------------------------
   MOBILE
------------------------- */
@media (max-width: 768px) {
  .cook-links--mockup ul {
    list-style-type: none;
    /* pointer-events: none;*/
    margin: 0;
    padding-left: 18px;
    text-align: left;
}
.desarrollo--mockup .card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #6f6f6f;
    margin-top: 10px;
        text-align: center;
}
  .cocina-info-wrap {
    padding: 16px 14px 26px;
    background: linear-gradient(to bottom, #f7f7f7 0 24%, #eef2ea 24% 100%);
  }

  .cook-links__floating-title {
    max-width: 100%;
    font-size: 18px;
    padding: 14px 16px;
    margin: 0 auto -16px;
  }
  .cmr-section {
    margin-bottom: 0px;
}

  .cook-links--mockup .cook-links__container {
    padding: 34px 18px 10px;
    border-radius: 20px 20px 0 0;
  }

  .cook-links--mockup .cook-links__grid {
    grid-template-columns: 1fr;
  }

  .cook-links--mockup .cook-links__item {
    padding: 18px 4px;
  }

  .cook-links--mockup .cook-links__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #c7d7ae;
  }

  .cook-links--mockup .cook-links__heading h3 {
    font-size: 17px;
  }

  .cook-links--mockup li {
    font-size: 15px;
  }

  .desarrollo--mockup {
    padding: 28px 16px 140px;
    border-radius: 0 0 24px 24px;
  }

  .desarrollo--mockup .titulo-principal {
    font-size: 24px;
  }

  .desarrollo--mockup .descripcion {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .desarrollo--mockup .columnas {
    flex-direction: column;
    gap: 26px;
  }

  .desarrollo--mockup .columna {
    flex: 1 1 auto;
    width: 100%;
  }

  .info-box__label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: fit-content;
    margin: 0 auto -1px;
    display: table;
    font-size: 16px;
    margin-bottom: -15px;
  }

  .desarrollo--mockup .card {
    min-height: auto;
    padding: 18px 16px;
  }

  /* ocultar adornos en mobile si molestan */
  .deco {
    display: none;
  }
}