:root {
  --ink: #17382b;
  --green: #2a7047;
  --cream: #fffdf8;
  --accent: #ddeb77;
  --clay: #f2ded0;
}
body {
  background: var(--cream);
  letter-spacing: -0.01em;
}
.site-header {
  height: 84px;
  background: #fffdf8e8;
  border-bottom: 1px solid #e7e9dc;
}
.brand {
  font-size: 1.35rem;
}
.site-header nav a {
  font-weight: 600;
  color: #496055;
}
.site-header nav a:hover {
  color: var(--green);
}
.cart-button {
  background: var(--green);
  box-shadow: 0 8px 18px #2a704733;
  padding: 12px 18px;
}
.hero {
  max-width: none;
  min-height: 590px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #d9d2bc;
}
.hero-photo {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fffdf8 0%,
    #fffdf8ef 27%,
    #fffdf89c 44%,
    transparent 68%
  );
}
.hero-panel {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(7vw, 32px);
  transform: translateY(-50%);
  max-width: 570px;
}
.hero h1 {
  font-size: clamp(3.3rem, 6vw, 5.7rem);
  line-height: 0.95;
  text-wrap: balance;
}
.hero h1 em {
  color: #347951;
}
.hero-copy {
  font-size: 1.12rem;
  max-width: 450px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-note {
  font-size: 0.8rem;
  color: #50675a;
  line-height: 1.6;
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 8vw;
  bottom: 35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--accent);
  transform: rotate(10deg);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 12px 20px #22351d33;
}
.hero-stamp b {
  font:
    700 1rem Fraunces,
    serif;
}
.hero-stamp span {
  font-size: 0.9rem;
}
.benefits {
  background: #17382b;
  padding: 23px 5vw;
}
.benefits div {
  font-size: 1.35rem;
}
.products-section {
  padding-top: 115px;
}
.section-heading h2,
.how h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.55rem);
}
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 4px 0 #dfe5d7;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 25px #1f372319;
}
.product-image {
  height: 235px;
  background: linear-gradient(145deg, #f1f2d9, #dce7c0);
  font-size: 5.6rem;
}
.product-info {
  padding: 18px;
}
.product-card h3 {
  font-size: 1.38rem;
  margin: 7px 0 16px;
}
.presentation-select {
  padding: 10px;
  font-size: 0.8rem;
}
.add-product {
  width: 42px;
  background: var(--green);
  transition: background 0.2s;
}
.add-product:hover {
  background: var(--ink);
}
.not-available {
  padding: 10px 0;
  color: #8b725d;
  font-size: 0.8rem;
}
.how {
  background: #ecf1d5;
  padding: 95px max(5vw, 28px);
}
.steps {
  gap: 44px;
}
.steps b {
  width: 44px;
  height: 44px;
  background: var(--green);
  font:
    700 1.1rem Fraunces,
    serif;
}
.steps h3 {
  font-size: 1.28rem;
}
.cart-drawer {
  box-shadow: -18px 0 50px #14332422;
}
.drawer-head h2 {
  font-size: 2.1rem;
}
.cart-summary {
  background: #fff;
  padding: 20px 0 0;
}
.checkout-modal {
  backdrop-filter: blur(5px);
}
.checkout-card {
  border-radius: 18px;
  box-shadow: 0 25px 65px #10281d66;
}
.checkout-card h2 {
  font-size: 2.6rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  border-color: #d6ddd0;
  border-radius: 8px;
  padding: 12px;
}
.button {
  border-radius: 8px;
}
.button-primary {
  background: #2a7047;
  box-shadow: 0 7px 15px #2a70472b;
}
.button-primary:hover {
  background: #1c5938;
}
@media (max-width: 720px) {
  .site-header {
    height: 70px;
  }
  .hero,
  .hero-photo {
    height: 610px;
  }
  .hero-photo {
    object-position: 64% center;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      #fffdf8f2 0%,
      #fffdf8c9 58%,
      #fffdf843 100%
    );
  }
  .hero-panel {
    left: 27px;
    right: 24px;
    top: 42%;
    transform: none;
  }
  .hero h1 {
    font-size: 3.55rem;
  }
  .hero-actions {
    display: block;
  }
  .hero-note {
    display: block;
    margin-top: 15px;
  }
  .hero-stamp {
    right: 19px;
    bottom: 22px;
    width: 104px;
    height: 104px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .product-image {
    height: 155px;
  }
  .product-card h3 {
    font-size: 1.13rem;
  }
  .product-info {
    padding: 13px;
  }
  .presentation-row {
    display: block;
  }
  .presentation-select {
    width: 100%;
  }
  .add-product {
    width: 100%;
    height: 34px;
    margin-top: 8px;
  }
  .benefits {
    padding: 24px;
  }
  .products-section {
    padding-top: 70px;
  }
}
.brand-image {
  width: 43px;
  height: 43px;
  object-fit: cover;
  object-position: 25% 35%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #fff;
}
.brand {
  gap: 9px;
}
.brand > span {
  white-space: nowrap;
}
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-button {
  padding: 10px 13px;
  border: 1px solid #b8d6bd;
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.catalog-tools {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 0 0 18px;
}
.product-search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 420px;
  flex: 1;
  background: #fff;
  border: 1px solid #dfe4d8;
  border-radius: 9px;
  padding: 0 13px;
  color: var(--green);
}
.product-search input,
.catalog-tools select {
  border: 0;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  outline: 0;
  width: 100%;
}
.catalog-tools select {
  width: 190px;
  background: #fff;
  border: 1px solid #dfe4d8;
  border-radius: 9px;
  padding: 0 11px;
}
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 35px;
  background: #fff;
  border-radius: 12px;
  color: var(--muted);
}
.direct-contact {
  max-width: 1100px;
  margin: 0 auto 90px;
  background: #fff0e3;
  border-radius: 20px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.direct-contact h2 {
  font-size: 2.5rem;
  margin: 0.1em 0;
}
.direct-contact p {
  color: var(--muted);
}
.direct-contact form {
  display: grid;
  gap: 10px;
}
.direct-contact input {
  border: 1px solid #e4cfbd;
  border-radius: 8px;
  padding: 13px;
  background: #fff;
  font: inherit;
}
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 760px;
  margin: auto;
  background: #17382b;
  color: #fff;
  border-radius: 13px;
  padding: 18px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 14px 30px #10281d44;
}
.cookie-banner p {
  margin: 5px 0 0;
  color: #d0ded3;
  font-size: 0.82rem;
}
.cookie-banner > div:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner a {
  color: #fff;
}
.cookie-banner .button {
  padding: 10px 13px;
  background: var(--accent);
  color: var(--ink);
}
.legal-page {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 25px;
}
.legal-page article {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin: 28px 0;
}
.legal-page h1 {
  font:
    700 3rem Fraunces,
    serif;
}
.legal-page h2 {
  font:
    600 1.45rem Fraunces,
    serif;
  margin-top: 30px;
}
.legal-page p {
  color: #54675d;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .site-header nav,
  .whatsapp-button {
    display: none;
  }
  .catalog-tools,
  .direct-contact {
    display: grid;
    grid-template-columns: 1fr;
  }
  .catalog-tools select {
    width: 100%;
    padding: 12px;
  }
  .direct-contact {
    margin: 0 20px 60px;
    padding: 27px;
  }
  .direct-contact h2 {
    font-size: 2rem;
  }
  .cookie-banner {
    display: block;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner > div:last-child {
    margin-top: 14px;
  }
  .footer-links {
    display: grid;
    gap: 8px;
  }
  .legal-page {
    margin: 35px auto;
  }
  .legal-page article {
    padding: 25px;
  }
  .legal-page h1 {
    font-size: 2.3rem;
  }
}
.fulfillment-choice {
  border: 1px solid #d6ddd0;
  border-radius: 9px;
  padding: 12px 14px;
  margin: 0 0 16px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.fulfillment-choice legend {
  float: left;
  width: 100%;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 5px;
}
.fulfillment-choice label {
  font-size: 0.88rem;
  font-weight: 500 !important;
  display: flex;
  gap: 6px;
  align-items: center;
}
.fulfillment-choice input {
  width: auto !important;
  margin: 0 !important;
}
.catalog-pagination {
  display: grid;
  justify-items: center;
  gap: 13px;
  margin: 42px auto 0;
  padding-top: 4px;
}
.catalog-pagination p {
  margin: 0;
  color: #63726a;
  font-size: 0.88rem;
}
.catalog-more-button {
  min-width: 215px;
  border: 1px solid #2a7047;
  border-radius: 9px;
  padding: 13px 19px;
  color: #2a7047;
  background: #fffdf8;
  font:
    700 0.9rem "DM Sans",
    sans-serif;
  cursor: pointer;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.catalog-more-button:hover {
  background: #2a7047;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 9px 18px #2a70472b;
}
.catalog-more-button[hidden] {
  display: none;
}
.filters .filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.filters .filter img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.market-switcher {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dce6d6;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: 0 8px 24px #16372b22;
  color: #315842;
  font:
    700 0.78rem "DM Sans",
    sans-serif;
}
.market-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: #2a7047;
  font: inherit;
  cursor: pointer;
}
.market-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #17382bd9;
  backdrop-filter: blur(5px);
}
.market-modal[hidden] {
  display: none;
}
.market-modal-card {
  width: min(520px, 100%);
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 28px 70px #071b1266;
}
.market-modal-card > img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 3px solid #ddeb77;
  border-radius: 18px;
}
.market-modal-card .eyebrow {
  margin: 16px 0 5px;
}
.market-modal-card h2 {
  margin: 0;
  font-size: 2.4rem;
}
.market-modal-card > p:not(.eyebrow) {
  margin: 13px auto 23px;
  max-width: 410px;
  color: #54675d;
  line-height: 1.55;
}
.market-modal-card > strong {
  font-size: 0.96rem;
}
.market-modal-card > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 14px;
}
.market-modal-card a {
  display: grid;
  gap: 5px;
  padding: 16px 12px;
  border: 1px solid #b9d7bd;
  border-radius: 11px;
  color: #174c35;
  background: #fff;
  text-decoration: none;
  font:
    800 0.92rem "DM Sans",
    sans-serif;
}
.market-modal-card a:hover {
  border-color: #2a7047;
  color: #fff;
  background: #2a7047;
}
.market-modal-card small {
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.35;
}
.market-modal-open {
  overflow: hidden;
}
@media (max-width: 600px) {
  .market-modal-card {
    padding: 28px 20px;
  }
  .market-modal-card h2 {
    font-size: 2.05rem;
  }
  .market-modal-card > div {
    grid-template-columns: 1fr;
  }
  .market-switcher {
    right: 12px;
    bottom: 12px;
  }
}
.filters .filter img {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex: 0 0 24px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}
footer {
  padding-bottom: 115px !important;
}
@media (max-width: 720px) {
  footer {
    padding-bottom: 130px !important;
  }
}
.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border: 1px solid #e9c8d8;
  border-radius: 8px;
  color: #a83a70;
  background: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.instagram-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
@media (max-width: 720px) {
  .instagram-button {
    display: none;
  }
}

/* Ajustes para teléfonos angostos, incluido iPhone 13 mini. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 720px) {
  .site-header {
    height: 66px;
    padding: 0 12px;
    gap: 8px;
  }
  .site-header .brand {
    min-width: 0;
    flex: 1;
    gap: 7px;
  }
  .site-header .brand-image {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .site-header .brand > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.08rem;
    white-space: nowrap;
  }
  .site-header .header-actions {
    flex: 0 0 auto;
    gap: 0;
  }
  .site-header .install-app-button {
    display: none !important;
  }
  .site-header .cart-button {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 1rem;
  }
  .site-header .cart-button b {
    position: absolute;
    right: -2px;
    bottom: -2px;
    margin: 0;
  }
  .hero,
  .hero-photo {
    height: 570px;
    min-height: 0;
  }
  .hero-photo {
    object-position: 60% center;
  }
  .hero-panel {
    top: 39%;
    left: 20px;
    right: 20px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 3.35rem);
    line-height: 0.93;
  }
  .hero-copy {
    max-width: 285px;
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 1.48;
  }
  .hero-actions {
    margin-top: 16px;
  }
  .hero-actions .button {
    padding: 12px 15px;
  }
  .hero-note {
    display: none;
  }
  .hero-stamp {
    width: 88px;
    height: 88px;
    right: 16px;
    bottom: 17px;
    font-size: 0.75rem;
  }
  .hero-stamp b {
    font-size: 0.83rem;
  }
  .hero-stamp span {
    font-size: 0.7rem;
  }
  .market-switcher {
    left: 12px;
    right: 12px;
    bottom: 10px;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 0.74rem;
  }
  .market-switcher button {
    padding: 7px 12px;
  }
  .benefits {
    padding: 22px 20px 85px;
  }
  .benefits div {
    font-size: 1.1rem;
  }
}
.cookie-banner[hidden] {
  display: none !important;
}
.direct-contact {
  position: relative;
  overflow: hidden;
  max-width: 1160px !important;
  margin: 35px auto 105px !important;
  padding: 0 !important;
  min-height: 365px !important;
  background: #17382b !important;
  color: #fff !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 55px #16372b26 !important;
}
.direct-contact:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: #ddeb77;
  left: -230px;
  bottom: -280px;
  opacity: 0.18;
}
.direct-contact > div {
  position: relative;
  padding: 58px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.direct-contact .eyebrow {
  color: #ddeb77;
}
.direct-contact h2 {
  color: #fff !important;
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  line-height: 0.96;
  margin: 10px 0 18px !important;
  max-width: 450px;
}
.direct-contact h2:after {
  content: "";
  display: block;
  width: 68px;
  height: 5px;
  border-radius: 10px;
  background: #ddeb77;
  margin-top: 25px;
}
.direct-contact p {
  color: #c8d9cc !important;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 400px;
}
.direct-contact form {
  position: relative;
  background: #fffdf8;
  padding: 43px 38px;
  align-content: center;
  box-shadow: -15px 0 45px #071b1222;
}
.direct-contact form:before {
  content: "PEDIDO RÁPIDO";
  display: block;
  color: #2a7047;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  margin-bottom: 11px;
}
.direct-contact input {
  border: 1px solid #dbe3d5 !important;
  border-radius: 10px !important;
  padding: 15px !important;
  background: #fff !important;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
.direct-contact input:focus {
  outline: 0;
  border-color: #2a7047 !important;
  box-shadow: 0 0 0 3px #2a704722;
}
.direct-contact .button {
  margin-top: 8px;
  padding: 16px !important;
}
.direct-contact .button:before {
  content: "◉";
  font-size: 1rem;
}
.cookie-banner {
  border: 1px solid #ffffff30 !important;
}
.cookie-banner .button {
  cursor: pointer;
}
@media (max-width: 720px) {
  .direct-contact {
    display: block !important;
    margin: 25px 16px 65px !important;
    min-height: 0 !important;
  }
  .direct-contact > div {
    padding: 38px 27px;
  }
  .direct-contact form {
    padding: 30px 24px;
  }
  .direct-contact h2 {
    font-size: 2.5rem !important;
  }
}
.direct-contact > div:after {
  content: "◉";
  position: absolute;
  right: 32px;
  bottom: 25px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ddeb77;
  color: #17382b;
  font-size: 2rem;
  box-shadow: 0 12px 20px #071b1244;
}
.direct-contact form {
  border-top: 6px solid #ddeb77;
}
.direct-contact form:after {
  content: "Te llevamos el pedido o lo retirás en el local.";
  display: block;
  color: #6a786f;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 5px;
}
.direct-contact input::placeholder {
  color: #95a19a;
}
.direct-contact .button {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.direct-contact .button:hover {
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .direct-contact > div:after {
    right: 22px;
    bottom: 17px;
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }
}
.unit-picker {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid #e4e9df;
}
.unit-picker-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.unit-picker-title span {
  color: #294d3b;
  font-size: 0.76rem;
  font-weight: 800;
}
.unit-picker-title small {
  color: #7a887f;
  font-size: 0.62rem;
}
.unit-picker-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}
.unit-stepper {
  display: grid;
  grid-template-columns: 30px minmax(30px, 1fr) 30px;
  overflow: hidden;
  border: 1px solid #cbd8ca;
  border-radius: 8px;
  background: #fff;
}
.unit-stepper button {
  border: 0;
  color: #2a7047;
  background: #edf4eb;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}
.unit-stepper input {
  min-width: 0;
  width: 100%;
  padding: 7px 2px;
  border: 0;
  outline: 0;
  color: #17382b;
  background: #fff;
  text-align: center;
  font:
    800 0.84rem "DM Sans",
    sans-serif;
  -moz-appearance: textfield;
}
.unit-stepper input::-webkit-inner-spin-button,
.unit-stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.add-units {
  padding: 7px 11px;
  border: 1px solid #2a7047;
  border-radius: 8px;
  color: #fff;
  background: #2a7047;
  font:
    800 0.72rem "DM Sans",
    sans-serif;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.18s;
}
.add-units:hover {
  background: #17382b;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .unit-picker-title {
    display: grid;
  }
  .unit-picker-actions {
    grid-template-columns: 1fr;
  }
  .add-units {
    min-height: 34px;
  }
}
.unit-picker-title small {
  color: #59675f !important;
  font-size: 0.66rem !important;
}
.steps p {
  color: #53625a !important;
}
body {
  font-family: Arial, "Segoe UI", sans-serif;
}
.button,
.cart-button,
.filter,
.form-grid input,
.form-grid select,
.form-grid textarea,
.unit-stepper input,
.add-units {
  font-family: Arial, "Segoe UI", sans-serif;
}
.hero h1,
h2,
.brand,
.product-card h3,
.steps h3 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.unit-picker-disabled {
  opacity: 0.58;
}
.unit-picker-disabled .unit-stepper,
.unit-picker-disabled .unit-stepper input {
  background: #eef0ed;
}
.unit-picker-disabled button {
  cursor: not-allowed !important;
  transform: none !important;
}
.unit-picker-disabled .add-units {
  color: #68736c;
  border-color: #c9cfca;
  background: #dfe3df;
}
footer .google-review-link {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
footer .google-review-link span {
  color: #f6c445;
  letter-spacing: 0;
  font-size: 14px;
}
footer .google-review-link strong {
  font-size: 13px;
}
footer .google-review-link small {
  color: #d8e5dc;
  font-size: 11px;
}
.footer-credits {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebfb4;
  font-size: 10px;
  line-height: 1.4;
}
.footer-credits a {
  color: #d8e5dc;
  font-size: inherit;
  font-weight: 700;
}
.footer-credits strong {
  color: #cbd8cf;
}
footer {
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 720px) {
  .footer-credits {
    display: grid;
    gap: 4px;
    padding-top: 13px;
  }
}
.account-link {
  padding: 10px 13px;
  border: 1px solid #cddbcf;
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.checkout-account {
  padding: 10px;
  border-radius: 8px;
  background: #edf4eb;
}
.checkout-account a {
  color: var(--green);
  font-weight: 800;
}
.google-reviews {
  padding: 85px max(5vw, 28px);
  background: #fff;
}
.reviews-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 12px 2px 25px;
  scroll-snap-type: x mandatory;
}
.review-card {
  scroll-snap-align: start;
  min-height: 240px;
  padding: 23px;
  border: 1px solid #dfe6dd;
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: 0 8px 25px #17382b0c;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author span {
  display: grid;
}
.review-author small,
.review-card > small {
  color: #718077;
}
.review-stars {
  margin: 15px 0 8px;
  color: #f2ad22;
  letter-spacing: 2px;
}
.review-card p {
  color: #40564a;
  line-height: 1.6;
}
.google-all-reviews {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 720px) {
  .account-link {
    padding: 8px;
    font-size: 0.72rem;
  }
  .header-actions .account-link {
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .google-reviews {
    padding: 60px 20px;
  }
  .reviews-carousel {
    grid-auto-columns: 88%;
  }
}
.direct-contact form {
  border: 1px solid #c9d8cc !important;
  border-left: 6px solid var(--accent) !important;
  border-top: 1px solid #c9d8cc !important;
  background: #fff !important;
  box-shadow:
    -12px 0 32px rgba(7, 27, 18, 0.18),
    inset 0 0 0 4px #f4f7f2 !important;
}
.direct-contact form:before,
.direct-contact form:after {
  content: none !important;
}
.contact-form-head {
  display: grid;
  gap: 3px;
  margin-bottom: 5px;
  padding-bottom: 13px;
  border-bottom: 1px solid #dce5dd;
}
.contact-form-head span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-form-head strong {
  color: var(--ink);
  font-size: 1.15rem;
}
.direct-contact form label {
  display: grid;
  gap: 5px;
  color: #40564a;
  font-size: 0.73rem;
  font-weight: 800;
}
.direct-contact form label input {
  margin: 0;
}
.direct-contact form > small {
  color: #66766d;
  font-size: 0.72rem;
  line-height: 1.4;
}
.google-review-link {
  display: grid !important;
  grid-template-columns: 34px minmax(135px, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: min(270px, 100%);
  padding: 9px 11px !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.06);
  text-align: left !important;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.google-review-link:hover {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.11);
}
.google-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  background: #fff;
  font:
    800 18px Arial,
    sans-serif;
}
.google-review-copy {
  display: grid;
  gap: 1px;
}
.google-review-copy small {
  color: #aebfb4 !important;
  font-size: 9px !important;
}
.google-review-copy strong {
  color: #fff;
  font-size: 12px !important;
}
.google-review-copy i {
  color: #f6c445;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0;
}
.google-review-arrow {
  color: var(--accent);
  font-size: 17px;
}
@media (max-width: 720px) {
  .direct-contact form {
    border-left: 1px solid #c9d8cc !important;
    border-top: 6px solid var(--accent) !important;
    box-shadow:
      0 -10px 28px rgba(7, 27, 18, 0.16),
      inset 0 0 0 4px #f4f7f2 !important;
  }
  .google-review-link {
    width: 100%;
  }
}

/* Mostrar el banner completo en celulares, sin alterar el diseno de escritorio. */
@media (max-width: 720px) {
  .hero {
    height: auto;
    min-height: 0;
    background: var(--cream);
  }
  .hero > picture {
    height: auto;
  }
  .hero-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }
  .hero:after,
  .hero-stamp {
    display: none;
  }
  .hero-panel {
    position: static;
    transform: none;
    max-width: none;
    padding: 24px 20px;
  }
  .site-header .brand-image {
    object-fit: contain;
  }
}
