:root {
  --primary: #0097d7;
  --white: #fff;
  --dark: #111;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--primary);
  color: var(--white);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
}

/* NAV */
.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
}

.slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 60vh;
}

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

/* MENU */
.menu {
  padding: 40px 20px;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.name {
  font-weight: 600;
}

.gram {
  font-size: 12px;
  opacity: .7;
  margin-left: 5px;
}

.desccoct {
  font-size: 15px;
  opacity: .7;
}


/* FOOTER */
/* FOOTER BASE */
.footer {
  background: #0097d7;
  color: #fff;
  font-size: 14px;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 60px;
}

.footer-texto {
  max-width: 600px;
  line-height: 1.6;
}

.footer-pez img {
  max-width: 120px;
  height: auto;
}

/* INFO (COLUMNAS) */
.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 60px;
}

.footer-info .col {
  flex: 1;
}

.footer-info h4 {
  margin: 15px 0 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* LINKS */
.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* FACTURACIÃ“N CENTRADA */
.facturacion {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ICONOS */
.footer i {
  margin-right: 6px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding: 15px 60px;
  font-size: 13px;
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-pez img {
    margin-top: 20px;
  }

  .footer-info {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-info .col {
    margin-bottom: 25px;
  }

  .facturacion {
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 20px;
  }
}

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

  .menu-toggle {
    display: block;
  }

.nav {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 75%;
  background: white;
  transition: .3s;
  padding: 30px;
  z-index: 1001;
}

  .nav ul {
    flex-direction: column;
  }

  .nav.active {
    right: 0;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* UTIL */
.no-scroll {
  overflow: hidden;
}

/* CONTENEDOR GENERAL */
.menu {
  padding: 40px 20px;
}

/* GRID PRINCIPAL */
.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  gap: 60px;
}

/* CADA COLUMNA */
.menu-col h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* SECCIONES */
.menu-section {
  margin-bottom: 30px;
}

/* HEADER DE SECCIÃ“N */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 16px;
}

/* ITEM */
.item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}

/* TEXTO IZQUIERDA */
.item > div {
  max-width: 75%;
}

/* NOMBRE + GRAMAJE */
.nameprod {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-right: 6px;
}

.namecoct {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-right: 6px;
}

.gramprod {
  font-size: 12px;
  opacity: 0.7;
  display: inline-block;
}

/* DESCRIPCIÃ“N */
.desc {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

/* PRECIO */
.price {
  font-size: 14px;
  white-space: nowrap;
  text-align: right;
}

.ml {
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-right: 6px;
}

/* ðŸ“± MOBILE (1 columna) */
@media (max-width: 768px) {

  .menu-container {
    grid-template-columns: 1fr; /* una sola columna */
    gap: 30px;
  }

  .menu {
    padding: 30px 15px;
  }

  .menu-col h2 {
    margin-top: 20px;
  }

  .item {
    flex-direction: row;
  }

  .item > div {
    max-width: 70%;
  }
}