	html {
    scroll-behavior: smooth;
}
		
        body {
            font-family: "Open Sans", sans-serif;
            /*margin: 20px;*/
            /*background-color: #f4f4f4;*/
            color: #333;
			background: linear-gradient(90deg, rgba(206, 198, 186, 1.000) 0.000%, rgba(195, 182, 170, 1.000) 16.667%, rgba(184, 166, 154, 1.000) 33.333%, rgba(174, 150, 140, 1.000) 50.000%, rgba(164, 136, 127, 1.000) 66.667%, rgba(154, 123, 116, 1.000) 83.333%, rgba(145, 112, 108, 1.000) 100.000%);
			margin: 0;
			 /* Agrega un padding superior al body para que el contenido no quede oculto bajo el menú flotante */
            padding-top: 55px;
			
        }

        .menu-container {
			margin: 10px

        }
		
		.top-header {
			max-width: 840px;
			margin: 0 auto;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	
		}
		
		.top-header img { width: 100%; margin: 0 auto;
			
		}
		
        /* Estilos del menú flotante */
        .floating-menu {
            position: fixed; /* La clave para que el menú flote */
            top: 0; /* Lo fija en la parte superior */
            left: 0;
            width: 100%;
            background-color: #1e2224; /* Color de fondo del menú */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1000; /* Asegura que el menú esté siempre por encima de otros elementos */
            display: flex;
            justify-content: center;
            padding: 10px 20px;
            gap: 10px;
			transition: box-shadow 0.3s ease-in-out; /* Animación para la sombra */
        }
		
        /* Clase que se agregará con JavaScript */
        .floating-menu.scrolled {
            box-shadow: 0 2px 1px rgba(0, 0, 0, .5);
			
        }		

        .floating-menu a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            padding: 10px 15px;
            border-radius: 25px;
            transition: background-color 0.3s ease;
			background-color: #fff;
        }

        .floating-menu a:hover {
            background-color: #a02022; /* Color al pasar el mouse */
        }		

        .menu-section {
            max-width: 800px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            font-family: "Elsie", serif;
            font-size: 2.3em;
            color: #555;
            border-bottom: 1px solid #bbb;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
			/* CAMBIO: Aquí aplicamos el scroll-margin-top */
            scroll-margin-top: 140px; 
        }
		
        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed #bbb;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .product-details-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            margin-right: 20px;
        }

        .product-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .product-info { /* Nuevo contenedor para nombre y descripción */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .product-name {
            font-weight: bold;
            font-size: 1.1em;
            color: #555;
        }

        .product-description {
            font-size: 0.9em;
            color: #888;
            line-height: 1.4;
        }

        .product-price {
            font-weight: bold;
            font-size: 1.2em;
            color: #C5282B;
            text-align: right;
            min-width: 80px;
        }
		
		.postres {
			background-color: #333;			
		}		
		.postres h2.section-title, .postres div.product-name, .postres div.product-description {
			color: #fff;			
		}
		
		.postres div.product-price {
			
			color: #b1dedb;
		}

        .promo {
            color: #C32E31;
        }
		
        /* Estilos de la lista de sabores */
        .flavors-container {
            margin-top: 25px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
        }

        .flavors-subtitle {
            font-size: 1.2em;
            font-weight: bold;
            color: #777;
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
			text-align: center;
        }

        .flavor-list {
            list-style: disc;
            /* CAMBIO: Agregamos un padding-left para que la viñeta quede dentro */
            padding-left: 20px; 
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px 20px;
        }

        /* CAMBIO: No necesitamos cambiar la posición del list-style aquí */
        .flavor-item {
            font-size: 1em;
            color: #555;
        }		
		
        .botones-footer {
            max-width: 800px;
            margin: 20px auto;
        }	
		.botones-footer ul { display: flex; flex-direction: row; flex-wrap: wrap}
		.botones-footer li a { background: #fff; padding: 5px 10px; }
		
      /* Estilos del footer y botones */
        .share-order {
			max-width: 800px;
			width: 80%;
            margin: 20px auto 0 auto;
            padding-top: 20px;
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        
        .footer-button {
            display: block;
            width: 100%;
            padding: 15px;
			margin: 0 auto;
            border-radius: 45px;
            font-size: 1em;
            text-align: center;
            text-decoration: none;
            color: #333;
            transition: background-color 0.3s ease;
        }

        .share-button {
            background-color: #fff;
        }

        .order-button {
            background-color: #fff;
        }
        
        .share-button:hover {
            background-color: #cfcfcf;
        }

        .order-button:hover {
            background-color: #cfcfcf;
        }		
		
		.footer {
			margin-top: 45px;
			color: #fff;
			text-align: center;
			font-size: .8em;
		}

.premios  {
	width: 185px;
	margin: 45px auto;
	
}

		/* Estilos del Slider */
        .slider-container {
            position: relative;
            width: 100%;
            height: 782px; /* Altura del slider */
            overflow: hidden; /* Oculta las imágenes que no están en vista */
           /* border-radius: 8px;*/
            /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
			background-color: #000;
			/* Ocultamos las flechas por defecto */
            touch-action: pan-y; /* Previene el comportamiento de desplazamiento predeterminado del navegador */
			margin-bottom: 45px;
        }
		
		.slider-arrow {
            display: none; /* Ocultamos las flechas por defecto */
        }
		
		/* Cursor de arrastre solo para escritorio */
        @media (min-width: 768px) {
            .slider-container {
                cursor: grab;
            }
        }

        .slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
			
        }

        .slide {
            min-width: 100%; /* Cada slide ocupa todo el ancho del contenedor */
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: end;
            align-items: center;
            text-align: center;
            color: #fff;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            /* Opacidad de la imagen */
            opacity: 0.8; 
			
        }

        .slide-content {
            position: relative;
            z-index: 2;
            padding: 20px 20px 5px 20px;
			text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
        }

        .slide-title {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .slide-description {
            font-size: 1em;
            font-weight: normal;
        }

        /* Flechas de navegación (mostradas solo en pantallas grandes) */
        @media (min-width: 768px) {
            .slider-arrow {
                display: block; /* Mostramos las flechas en escritorios */
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background-color: rgba(0, 0, 0, 0.5);
                color: #fff;
                border: none;
                padding: 10px 15px;
                cursor: pointer;
                z-index: 3;
                font-size: 1.5em;
                user-select: none;
                border-radius: 5px;
                transition: background-color 0.3s;
            }

            .slider-arrow:hover {
                background-color: rgba(0, 0, 0, 0.8);
            }

            .prev-arrow {
                left: 10px;
            }

            .next-arrow {
                right: 10px;
            }
        }




        /*.................................................
		...................................................
		Media Queries para adaptabilidad 
		..................................................
		.................................................. */
        @media (max-width: 600px) {
			.floating-menu {
				width: 92%;
				
			}
			
            .menu-item {
                flex-direction: column;
                align-items: stretch;
            }
            
            .product-details-wrapper {
                justify-content: space-between; /* Alinea la imagen a la izquierda y el precio a la derecha */
                align-items: flex-start;
                flex-direction: row;
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .product-info {
                flex: 1; /* Permite que el texto tome el espacio disponible */
            }

            .product-price {
                text-align: left;  Alinea el precio a la derecha */
                align-self: flex-start; /* Alinea el precio a la parte superior */
                /* font-size: 1em; /* Ajusta el tamaño de la fuente para móviles */
				margin-left: 63px;
            }

            .section-title {
                font-size: 2.5em;
            }
            
            .product-image {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }
			
            .flavor-list {
                grid-template-columns: repeat(2, 1fr);
                /* CAMBIO: Ajustamos el padding-left para móviles */
                padding-left: 15px;
            }
			
			.slider-container {
				height: 450px;
			}

            .slide-title {
                font-size: 1.5em;
            }
            
            .slide-description {
                font-size: 0.9em;
            }			
        }


