@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@400;500;700;800&family=Great+Vibes&display=swap");

/* =========================
   Variables
   ========================= */
:root {
  --navy: #04285a;
  --navy-2: #082f66;
  --green: #0f5a2c;
  --green-2: #315b1f;
  --red: #c70e1c;
  --cream: #fff8ea;
  --cream-2: #f5ead2;
  --brown: #3d2415;
  --muted: #6f6257;
  --line: #e0ceb1;
  --white: #fffdf8;
  /* Ancho máximo del contenido en pantallas grandes; centra con márgenes laterales.
     En pantallas normales se comporta como el 7% de antes. */
  --maxw: 1280px;
  --gutter: max(7%, calc((100% - var(--maxw)) / 2));
}

/* =========================
   Base styles
   ========================= */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}
body {
  margin: 0;
  background: #fdf9f0 url("../images/bg-pattern.jpg") center top / 760px auto repeat;
  color: var(--brown);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* El contenido principal crece para empujar el footer hasta el fondo
   incluso en páginas con poco texto (Misión, Visión, Domicilios, etc.). */
body > main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =========================
   Header and navigation
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(4, 40, 90, .08);
}
.top-strip {
  height: 9px;
  background: linear-gradient(180deg, var(--navy) 0 38%, #fff 38% 52%, var(--red) 52% 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px var(--gutter) 12px;
}
.logo img {
  width: auto;
  height: 84px;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .035em;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a {
  padding: 8px 0;
  border-bottom: 3px solid transparent;
}
.nav a:hover,
.nav .active {
  color: var(--green);
  border-color: var(--red);
}
/* Botón hamburguesa (oculto en escritorio) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 13px 24px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 90, 44, .2);
  cursor: pointer;
}
.header-btn:hover,
.btn:hover { background: #073f1e; }
.btn-light {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: none;
}
.btn-light:hover {
  background: #073f1e;
  color: #fff;
  border-color: #073f1e;
}
.small { padding: 10px 18px; font-size: 14px; }

/* =========================
   Main and watermark background
   ========================= */
main {
  position: relative;
  overflow: hidden;
}
.watermark-page::before,
.watermark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/watermark-countryside.png") center center / min(720px, 84vw) auto no-repeat;
  opacity: .075;
  pointer-events: none;
  z-index: 0;
}
.alt-watermark::before { background-position: center center; opacity: .055; }
.watermark-page > *,
.watermark-section > * {
  position: relative;
  z-index: 1;
}

/* =========================
   Home hero section
   ========================= */
.ref-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 520px);
  gap: 40px;
  align-items: start;
  padding: 36px var(--gutter) 120px;
  background: linear-gradient(90deg, rgba(255,251,242,.97) 0 46%, rgba(255,251,242,.72) 70%, rgba(255,251,242,.45)), url("../images/hero-banner.jpg") right center / cover no-repeat;
  position: relative;
}
.ref-hero::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 420px;
  height: 420px;
  background: url("../images/watermark-countryside.png") center / contain no-repeat;
  opacity: .07;
  pointer-events: none;
}
.hero-content { max-width: 660px; }
.hero-logo {
  width: min(440px, 100%);
  margin: 0 0 14px;
}
.ribbon {
  display: inline-block;
  background: var(--green);
  color: #fff;
  margin: 0 0 20px;
  padding: 9px 26px;
  border-radius: 0 999px 999px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  box-shadow: 0 8px 18px rgba(15, 90, 44, .18);
}
.ref-hero h1,
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 62px;
  line-height: .98;
  margin: 0 0 18px;
}
.hero-copy {
  font-size: 18px;
  max-width: 560px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  display: grid;
  gap: 14px;
  background: rgba(255, 253, 247, .92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 16px 36px rgba(4, 40, 90, .1);
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  background: url("../images/watermark-countryside.png") center / contain no-repeat;
  opacity: .07;
  pointer-events: none;
}
.contact-title {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--navy);
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
}
.contact-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #2a2622;
}
.contact-item .ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #14642a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item .ic svg { width: 17px; height: 17px; fill: #fff; }
.contact-item p { margin: 0; }
.contact-item a:hover { color: var(--green); }

/* =========================
   Closing band (light, decluttered)
   ========================= */
.closing-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px var(--gutter) 70px;
  background: linear-gradient(180deg, #fffaf0, #f6ecd8);
  border-top: 1px solid var(--line);
}
.closing-thanks {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: 52px;
  line-height: 1.05;
  color: var(--navy);
}
.closing-thanks strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.closing-sub {
  position: relative;
  z-index: 1;
  margin: 6px 0 38px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--green);
}
.closing-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
}
.closing-points article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.closing-points .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 90, 44, .24);
}
.closing-points .ic svg { width: 26px; height: 26px; fill: #fff; }
.closing-points p {
  margin: 0;
  max-width: 240px;
  color: var(--brown);
  font-weight: 600;
}

/* =========================
   Sections and product cards
   ========================= */
.section {
  position: relative;
  padding: 70px var(--gutter);
  text-align: center;
}
.intro-section { background: linear-gradient(180deg, #fff, #fff8ee); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
  margin: 0 0 10px;
}
.section h2,
.delivery-cta h2,
.text-section h2,
.two-cards h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: var(--navy);
  line-height: 1.05;
  margin: 0 0 26px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(4, 40, 90, .08);
}
.product-card .card-buy {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card .card-buy strong { margin: 6px 0 16px; }
.product-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(15, 90, 44, .22);
  border-radius: 20px;
  pointer-events: none;
}
.product-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}
.product-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin: 0;
  color: var(--brown);
}
.product-card strong {
  display: block;
  font-size: 30px;
  color: var(--green);
  margin: 14px 0 16px;
}
.product-card p { color: var(--muted); }
.product-card > p { min-height: 5.1em; }
.product-card .check-list { min-height: 7.2em; }
.check-list,
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  text-align: left;
}
.check-list li,
.benefit-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  color: var(--muted);
}
.check-list li::before,
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  line-height: 21px;
  text-align: center;
  font-weight: 900;
}
.quick-links { background: #fff; }
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.info-card-grid article {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(4, 40, 90, .06);
}
.info-card-grid article .btn { margin-top: auto; align-self: center; }
.info-card-grid h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 30px;
  margin: 0 0 10px;
}

/* =========================
   Inner pages
   ========================= */
.page-hero {
  position: relative;
  text-align: center;
  padding: 80px var(--gutter) 54px;
  background: linear-gradient(180deg, #fff, #fff8ee);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 240px;
  height: 240px;
  background: url("../images/watermark-countryside.png") center / contain no-repeat;
  opacity: .06;
}
.page-hero h1 { font-size: 58px; }
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.text-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 46px clamp(24px, 5vw, 48px) 82px;
  font-size: 18px;
}
.text-section p { color: #3a2c20; }
.featured-text {
  background: rgba(255, 253, 248, .82);
  border-radius: 28px;
}
.two-cards,
.contact-grid {
  position: relative;
  padding: 46px var(--gutter) 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.two-cards article,
.contact-grid article,
.order-box,
.process-card {
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 26px rgba(4, 40, 90, .06);
}
.text-link,
.two-cards a,
.contact-grid a {
  font-weight: 800;
  color: var(--green);
}
.contact-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  margin: 0 0 8px;
  color: var(--navy);
}
.info-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.info-layout img {
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(4, 40, 90, .12);
}
.nutrition-section {
  max-width: 900px;
}
.nutri-card {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(4, 40, 90, .12);
  border: 1px solid var(--line);
  background: var(--white);
}
.nutri-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(100deg, var(--navy), #0a3f86);
  color: #fff;
  padding: 18px 26px;
}
.nutri-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nutri-ic svg { width: 22px; height: 22px; fill: #fff; }
.nutri-head h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}
.nutri-sub {
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
}
.nutrition-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: transparent;
}
.nutrition-table tr:nth-child(even) { background: #f6efe0; }
.nutrition-table tr:nth-child(odd) { background: #fffdf8; }
.nutrition-table th,
.nutrition-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.nutrition-table th {
  color: #14642a;
  font-weight: 800;
  width: 24%;
}
.nutrition-table td {
  color: var(--brown);
  font-weight: 600;
  width: 26%;
}
.nutrition-table tr:last-child th,
.nutrition-table tr:last-child td { border-bottom: 0; }
.nutrition-note {
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: var(--green) !important;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
}

/* =========================
   Delivery call to action
   ========================= */
.delivery-cta {
  margin: 40px var(--gutter) 76px;
  padding: 48px;
  border-radius: 30px;
  background: linear-gradient(100deg, var(--navy), var(--green));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.delivery-cta::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -48px;
  width: 190px;
  height: 190px;
  background: url("../images/watermark-countryside.png") center / contain no-repeat;
  opacity: .16;
}
.delivery-cta h2 { color: #fff; }
.delivery-cta p { max-width: 620px; }

/* =========================
   Order form
   ========================= */
.order-box {
  max-width: 1080px;
  margin: 40px auto 86px;
}
.order-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 145px 160px 130px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.order-head {
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
.order-product-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.order-product-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.order-row h3 {
  margin: 0;
  color: var(--navy);
}
.order-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.line-total {
  font-weight: 900;
  color: var(--green);
  text-align: right;
}
.qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  width: max-content;
  background: #fff;
}
.qty-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #edf5ea;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.qty-control button:hover { background: #d8ead2; }
.qty-control input {
  width: 62px;
  border: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--brown);
  padding: 9px 4px;
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.order-summary {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8ea, #eef6ea);
  text-align: center;
}
.order-total-label {
  margin: 0 0 6px;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.order-total {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
}
.note {
  font-size: 14px;
  color: var(--muted);
}
.order-submit {
  margin: 28px auto 10px;
  display: flex;
}

/* =========================
   Footer and WhatsApp button
   ========================= */
.site-footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  display: block;
  height: 9px;
  background: linear-gradient(180deg, var(--navy) 0 38%, #fff 38% 52%, var(--red) 52% 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding: 44px var(--gutter) 34px;
}
.site-footer img {
  width: 190px;
  max-height: 112px;
  object-fit: contain;
  margin-bottom: 10px;
}
.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}
.site-footer a,
.site-footer p,
.site-footer small {
  display: block;
  margin: 7px 0;
  color: #eef4ff;
  font-size: 14px;
}
.site-footer a:hover { color: #fff; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  z-index: 30;
}

/* =========================
   Responsive: tablets
   ========================= */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
    position: relative;
    justify-content: space-between;
    align-items: center;
    min-height: 76px;
    gap: 10px;
  }
  /* Logo centrado de forma absoluta (queda en el medio pase lo que pase a los lados) */
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .logo img { height: 58px; }
  .header-btn { order: 0; padding: 10px 16px; }
  .nav-toggle { display: flex; order: 2; }
  /* El menú se convierte en un panel desplegable bajo la barra */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 7% 14px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 28px rgba(4, 40, 90, .12);
    border-top: 1px solid var(--line);
    font-size: 14px;
    /* Cerrado por defecto */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .28s ease, opacity .2s ease;
  }
  .nav.open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover,
  .nav .active {
    border-color: transparent transparent var(--line);
    border-left-color: var(--red);
    padding-left: 12px;
  }
}
@media (max-width: 950px) {
  .ref-hero {
    grid-template-columns: 1fr;
    background: #fff;
    padding-top: 28px;
    text-align: center;
  }
  .hero-logo { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .contact-panel {
    border-top: 1px solid var(--line);
    margin: 20px auto 0;
    max-width: 520px;
    text-align: left;
  }
  .closing-points { grid-template-columns: 1fr; max-width: 380px; }
  .product-grid,
  .two-cards,
  .contact-grid,
  .footer-inner,
  .info-card-grid,
  .info-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .order-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .order-product-info {
    flex-direction: column;
    justify-content: center;
  }
  .line-total { text-align: center; }
  .qty-control { margin: auto; }
  .order-head { display: none; }
  .logo img { height: 76px; }
}

/* =========================
   Responsive: phones
   ========================= */
@media (max-width: 560px) {
  .header-inner {
    padding: 10px 5% 12px;
  }
  .nav { padding-left: 5%; padding-right: 5%; }
  .header-btn { padding: 9px 12px; font-size: 12px; }
  .ref-hero h1,
  .page-hero h1 { font-size: 40px; }
  .ref-hero {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 100px;
  }
  .ribbon { font-size: 20px; }
  .closing-thanks { font-size: 40px; }
  .section,
  .page-hero,
  .text-section,
  .two-cards,
  .contact-grid {
    padding-left: 5%;
    padding-right: 5%;
  }
  .delivery-cta {
    margin-left: 5%;
    margin-right: 5%;
    padding: 34px 24px;
  }
  .order-total { font-size: 38px; }
  .logo img { height: 52px; }
  .site-footer img { width: 140px; }
  .nutrition-table,
  .nutrition-table tbody,
  .nutrition-table tr,
  .nutrition-table th,
  .nutrition-table td {
    display: block;
    width: 100%;
  }
  .nutrition-table tr { border-bottom: 1px solid var(--line); }
  .nutrition-table th,
  .nutrition-table td { border: 0; padding: 10px 14px; }
}
