@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");
:root {
  --ink: #092f3a;
  --muted: #64747c;
  --cyan: #0b7081;
  --orange: #ff9a14;
  --cream: #f3fbfb;
  --line: #dce7e9;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: #102a33;
  font: 15px "DM Sans", sans-serif;
}
button,
a {
  font: inherit;
}
button {
  cursor: pointer;
  border: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  height: 82px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, 4vw);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 20px #092f3a0b;
}
.brand img {
  width: 250px;
  max-height: 48px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-weight: 700;
  color: #4b5960;
}
.site-header nav span {
  color: var(--cyan);
}
.basket-button {
  background: #101d35;
  color: #fff;
  border-radius: 30px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px #091b3020;
}
.basket-button b {
  display: none;
}
.hero {
  min-height: 660px;
  background: radial-gradient(circle at 10% 20%, #136f80, transparent 38%),
    linear-gradient(110deg, #0b5363, #073b4c 60%, #315849);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 100px max(40px, 7vw);
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  color: #d9f4f4;
  margin-bottom: 18px;
}
.orange {
  color: #ef6e1a;
}
.hero h1 {
  font: 700 clamp(52px, 6vw, 78px) / 0.94 "Space Grotesk", sans-serif;
  margin: 0 0 30px;
}
.hero h1 em {
  color: #ffb145;
  font-style: normal;
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #d3e8e9;
  max-width: 580px;
}
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 14px;
}
.hero-pills span {
  background: #ffffff19;
  border: 1px solid #ffffff22;
  border-radius: 30px;
  padding: 11px 16px;
  font-weight: 700;
}
.phone-cta {
  display: inline-block;
  background: var(--orange);
  color: #112a32;
  border-radius: 24px;
  padding: 12px 18px;
  font-weight: 700;
}
.hero-art {
  justify-self: center;
  font-size: 150px;
  position: relative;
  filter: drop-shadow(0 25px 30px #001e2e55);
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 280px;
  height: 250px;
  background: #32c4ef;
  border-radius: 35% 65% 40% 60%;
  z-index: -1;
  top: -15px;
  left: -35px;
  transform: rotate(7deg);
}
.hero-art small {
  display: block;
  position: absolute;
  right: -35px;
  bottom: -10px;
  width: 250px;
  background: #ffffff22;
  border: 1px solid #ffffff3d;
  border-radius: 20px;
  padding: 14px;
  font: 13px "DM Sans";
  color: #ffb145;
}
.hero-art small strong {
  color: #fff;
  font-weight: 500;
}
.trust-strip {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px max(32px, 7vw);
  border-bottom: 1px solid var(--line);
}
.trust-strip div {
  color: var(--cyan);
  font-size: 21px;
}
.trust-strip strong,
.trust-strip small {
  display: block;
  margin-left: 30px;
}
.trust-strip strong {
  color: #172d35;
  font-size: 14px;
}
.trust-strip small {
  color: #7c8b8f;
  font-size: 12px;
}
.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px max(24px, 4vw);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2,
.section h2 {
  font: 700 42px "Space Grotesk";
  margin: 0;
}
.section-heading p {
  max-width: 400px;
  color: var(--muted);
  line-height: 1.6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 24px #073b4c0b;
}
.product-photo {
  height: 210px;
  position: relative;
  background: #e8f7f8;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fresh-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fffdd;
  border-radius: 20px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
}
.product-info {
  padding: 20px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-info h3 {
  font: 700 21px "Space Grotesk";
  margin: 0;
}
.product-info p {
  color: var(--muted);
  margin: 6px 0;
  font-size: 13px;
}
.rate {
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}
.rate small {
  display: block;
  color: #9aa7aa;
  font-size: 10px;
  text-align: right;
}
.stock {
  color: #ef6e1a !important;
  font-size: 11px !important;
  font-weight: 700;
}
.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #f6fafb;
  border-radius: 14px;
  padding: 4px;
}
.stepper button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff;
  color: var(--cyan);
  font-weight: 700;
}
.stepper strong {
  min-width: 44px;
  text-align: center;
  font-size: 13px;
}
.add-button {
  background: #102036;
  color: #fff;
  border-radius: 13px;
  padding: 11px 14px;
  font-weight: 700;
}
.prep-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  background: #eaf8f8;
  max-width: none;
  padding-left: max(24px, calc((100% - 1120px) / 2));
  padding-right: max(24px, calc((100% - 1120px) / 2));
}
.prep-section p,
.promise p,
.delivery-banner p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.prep-grid article {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  font-weight: 700;
}
.prep-grid small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 5px;
}
.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promise article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 25px;
}
.promise b {
  font-size: 30px;
}
.delivery-banner {
  max-width: none;
  background: #d8f3f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: max(24px, calc((100% - 1120px) / 2));
  padding-right: max(24px, calc((100% - 1120px) / 2));
}
.dark-button,
.final-cta a,
.primary-button {
  background: #0b5363;
  color: #fff;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 700;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
}
.faq p {
  margin-bottom: 0;
  font-size: 13px;
}
.final-cta {
  background: #073b4c;
  color: #fff;
  padding: 55px max(24px, calc((100% - 1120px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.final-cta h2 {
  font: 700 36px "Space Grotesk";
  margin: 0;
}
.final-cta a {
  background: var(--orange);
  color: #102a33;
}
.how {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.steps b {
  color: #ef6e1a;
}
.steps h3 {
  margin-bottom: 6px;
}
.steps p {
  color: var(--muted);
  line-height: 1.6;
}
footer {
  padding: 30px max(24px, 4vw);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
footer strong {
  color: #172d35;
}
footer strong span,
footer a {
  color: var(--cyan);
}
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(110%);
  width: min(680px, calc(100% - 28px));
  height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 45px #073b4c25;
  z-index: 50;
  transition: transform 0.22s var(--ease);
  display: flex;
  flex-direction: column;
}
.bottom-sheet.open {
  transform: translateX(-50%) translateY(0);
}
.drag-handle {
  width: 75px;
  background: #e7eef0;
  color: #688087;
  border-radius: 10px;
  margin: 8px auto 0;
  padding: 4px;
  cursor: grab;
  touch-action: none;
}
.sheet-title,
.modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.sheet-title b,
.modal-title b {
  display: block;
}
.sheet-title small,
.modal-title small {
  color: var(--muted);
  font-size: 11px;
}
.sheet-title button,
.modal-title button {
  background: none;
  font-size: 26px;
  color: var(--muted);
}
.sheet-items,
.modal-items {
  overflow: auto;
  padding: 12px 20px;
  flex: 1;
}
.cart-line {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 8px;
  margin-bottom: 8px;
}
.cart-line img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}
.cart-line div:nth-child(2) {
  flex: 1;
}
.cart-line small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.sheet-footer,
.modal-total {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: #071d2675;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-backdrop.open {
  display: flex;
}
.cart-modal {
  width: min(650px, 100%);
  max-height: 90vh;
  background: #fff;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-items {
  max-height: 45vh;
}
.minimum-note {
  margin: 0 20px 10px;
  padding: 14px;
  background: #fff4df;
  border: 1px solid #ffd790;
  border-radius: 14px;
  color: #a35e00;
  font-size: 13px;
}
.cart-modal > .primary-button,
.cart-modal > .whatsapp-button {
  margin: 0 20px 20px;
}
.checkout label {
  display: block;
  font-weight: 700;
  padding: 10px 20px 0;
}
.checkout input,
.checkout select,
.checkout textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px;
  font: inherit;
}
.delivery-note {
  padding: 0 20px;
  color: var(--muted);
  font-size: 12px;
}
.whatsapp-button {
  background: #25d366;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-weight: 700;
}
.primary-button {
  border-radius: 13px;
}
.modal-total strong {
  font-size: 20px;
}
@media (max-width: 800px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }
  .brand img {
    width: 180px;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding: 70px 24px;
  }
  .hero-art {
    display: none;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 18px 24px;
  }
  .section-heading,
  .prep-section,
  .faq,
  .how {
    display: block;
  }
  .section-heading p {
    margin-top: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .promise,
  .steps {
    grid-template-columns: 1fr;
  }
  .prep-grid,
  .faq-grid {
    margin-top: 30px;
  }
  .delivery-banner,
  .final-cta,
  footer {
    display: block;
  }
  .delivery-banner a,
  .final-cta a {
    display: inline-block;
    margin-top: 18px;
  }
  .final-cta h2 {
    margin-top: 10px;
  }
  footer span {
    display: block;
    margin-top: 12px;
  }
  .basket-button span {
    display: none;
  }
  .basket-button b {
    display: inline;
    margin-left: 5px;
  }
  .section h2 {
    font-size: 34px;
  }
}
.help-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.help-card {
  position: relative;
  overflow: hidden;
  background: #073b4c;
  color: #fff;
  border-radius: 28px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.help-card:after {
  content: "";
  position: absolute;
  right: -50px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #22d3ee33;
  filter: blur(25px);
}
.help-card h2 {
  font: 700 30px "Space Grotesk";
  margin: 0;
}
.help-card p {
  color: #d7eef0;
  max-width: 600px;
}
.help-card .phone-cta {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.photo-prev,
.photo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffffe8;
  color: #102a33;
  font-size: 23px;
  line-height: 1;
}
.photo-prev {
  left: 12px;
}
.photo-next {
  right: 12px;
}
.photo-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.photo-dots button {
  height: 6px;
  width: 6px;
  border-radius: 8px;
  background: #ffffff99;
  padding: 0;
}
.photo-dots button.selected {
  width: 20px;
  background: #fff;
}
.max-label {
  font-size: 11px;
  color: #64747c;
  font-weight: 700;
}
.mini-stepper {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f4f8f9;
  border-radius: 10px;
  padding: 3px;
}
.mini-stepper button {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  color: #0b7081;
  font-weight: 700;
}
.mini-stepper strong {
  min-width: 22px;
  text-align: center;
}
.empty-cart {
  text-align: center;
  color: #64747c;
  padding: 25px;
}
@media (max-width: 800px) {
  .help-card {
    display: block;
    padding: 26px;
  }
  .help-card .phone-cta {
    display: inline-block;
    margin-top: 15px;
  }
}
.basket-button strong {
  color: #ffb145;
}
.basket-button b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 3px;
  background: #ffb145;
  color: #102036;
  border-radius: 50%;
  font-size: 11px;
}
.basket-button b:empty {
  display: none;
}
.site-header svg,
.phone-cta svg,
.whatsapp-button svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.basket-button > svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}
.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-location svg {
  width: 15px;
  height: 15px;
}
.eyebrow .sparkle-icon,
.sparkle-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
  margin-right: 5px;
}
.icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 10px;
}
.icon-bubble svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-bubble.cyan {
  background: #ecfeff;
  color: #0e7490;
}
.icon-bubble.orange-icon {
  background: #fff7ed;
  color: #ea580c;
}
.icon-bubble.green-icon {
  background: #ecfdf5;
  color: #047857;
}
.trust-strip div {
  min-height: 40px;
}
.trust-strip strong,
.trust-strip small {
  margin-left: 50px;
}
.promise article > b {
  display: block;
  height: 32px;
  color: #0e7490;
}
.promise article > b svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-button svg {
  margin-right: 5px;
}
.hero-market-photo {
  justify-self: center;
  width: min(100%, 520px);
  height: 360px;
  border-radius: 34px;
  background-image: linear-gradient(180deg, #073b4c05 30%, #073b4ccc 100%),
    url("images/goa-margao-fish-market.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px #001e2e55;
  border: 1px solid #ffffff35;
}
.market-photo-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  border-radius: 18px;
  background: #073b4ccc;
  border: 1px solid #ffffff35;
  padding: 14px 16px;
  backdrop-filter: blur(6px);
}
.market-photo-overlay span {
  display: block;
  color: #ffb145;
  font-size: 12px;
  font-weight: 700;
}
.market-photo-overlay strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 3px;
  font-weight: 600;
}
.hero-art {
  display: none !important;
}
@media (max-width: 800px) {
  .hero-market-photo {
    width: 100%;
    height: 250px;
    justify-self: stretch;
  }
  .hero {
    min-height: auto;
  }
  .market-photo-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
.hero {
  grid-template-columns: 1fr;
  min-height: 660px;
  background-image: linear-gradient(
      90deg,
      rgba(4, 35, 43, 0.9) 0%,
      rgba(4, 35, 43, 0.67) 48%,
      rgba(4, 35, 43, 0.4) 100%
    ),
    linear-gradient(0deg, rgba(4, 35, 43, 0.45), rgba(4, 35, 43, 0.12)),
    url("images/goa-fish-market-hero.webp");
  background-size: cover;
  background-position: center 52%;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
.hero-market-photo {
  display: none !important;
}
.hero:after {
  content: "Goa fish market";
  position: absolute;
  right: 7vw;
  bottom: 24px;
  color: #fff9;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}
@media (max-width: 800px) {
  .hero {
    min-height: 650px;
    background-position: 58% center;
  }
  .hero:after {
    right: 24px;
    bottom: 16px;
  }
}
.hero {
  grid-template-columns: minmax(0, 680px) 1fr;
  min-height: 680px;
  background-color: #111;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 42%,
      rgba(0, 0, 0, 0.08) 78%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("images/goa-fish-market-hero.webp");
  background-size: cover;
  background-position: center 50%;
  position: relative;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 34%);
  z-index: -1;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 630px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero .eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(3px);
}
.hero h1 {
  font-size: clamp(54px, 7vw, 92px);
  letter-spacing: -0.065em;
  margin-bottom: 26px;
}
.hero p {
  max-width: 550px;
  font-size: 19px;
  line-height: 1.65;
  color: #fff;
}
.hero-pills {
  gap: 10px;
  margin-top: 26px;
}
.hero-pills span {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 11px 15px;
}
.phone-cta {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  text-shadow: none;
}
.hero:after {
  right: 5vw;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 9px #000;
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 690px;
    background-position: 58% center;
  }
  .hero:before {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.18) 72%
    );
  }
  .hero-copy {
    align-self: end;
    padding-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }
  .hero p {
    font-size: 16px;
  }
  .hero:after {
    right: 20px;
    bottom: 14px;
  }
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 22px;
  padding: 18px 5vw;
}
.trust-strip > div {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  justify-content: center;
  max-width: 290px;
}
.trust-strip .icon-bubble {
  grid-row: 1 / span 2;
  grid-column: 1;
  float: none;
  margin: 0;
}
.trust-strip strong,
.trust-strip small {
  grid-column: 2;
  margin: 0;
  text-align: left;
}
.trust-strip strong {
  font-size: 13px;
  line-height: 1.2;
}
.trust-strip small {
  font-size: 11px;
  line-height: 1.25;
  color: #75838a;
}
@media (max-width: 800px) {
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 24px;
  }
  .trust-strip > div {
    max-width: 300px;
  }
}
.cart-modal > .whatsapp-button {
  display: flex;
  width: calc(100% - 40px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 20px 20px;
  text-align: center;
}
.cart-modal > .whatsapp-button svg {
  flex: 0 0 auto;
  margin: 0;
}
.whatsapp-button:disabled {
  cursor: not-allowed;
}
.checkout > .whatsapp-button {
  align-self: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: calc(100% - 40px) !important;
  margin-left: 20px !important;
  margin-right: 20px !important;
  box-sizing: border-box;
}
.checkout > .whatsapp-button svg {
  display: block;
  flex: 0 0 16px;
}
.saved-details-button {
  align-self: center;
  border: 1px solid #bae6fd;
  background: #ecfeff;
  color: #0e7490;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.checkout {
  align-items: stretch;
}
.checkout > .whatsapp-button {
  align-self: center !important;
}
/* Motion layer: restored from the interactive storefront design */
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 177, 69, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 177, 69, 0);
  }
}
.hero-copy {
  animation: heroCopyIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-market-photo {
  animation: heroImageIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero .eyebrow {
  animation: riseIn 0.55s 0.08s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero h1 {
  animation: riseIn 0.65s 0.14s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero p {
  animation: riseIn 0.65s 0.22s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-pills,
.hero .phone-cta {
  animation: riseIn 0.65s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.trust-strip > div {
  animation: riseIn 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.trust-strip > div:nth-child(2) {
  animation-delay: 0.08s;
}
.trust-strip > div:nth-child(3) {
  animation-delay: 0.16s;
}
.product-card {
  animation: riseIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  transition: transform 0.24s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.24s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:nth-child(2) {
  animation-delay: 0.05s;
}
.product-card:nth-child(3) {
  animation-delay: 0.1s;
}
.product-card:nth-child(4) {
  animation-delay: 0.15s;
}
.product-card:nth-child(5) {
  animation-delay: 0.2s;
}
.product-card:nth-child(6) {
  animation-delay: 0.25s;
}
.product-card:nth-child(n + 7) {
  animation-delay: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(7, 59, 76, 0.12);
}
.product-photo img {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
}
.product-card:hover .product-photo img {
  transform: scale(1.045);
}
.photo-prev,
.photo-next,
.photo-dots button,
.stepper button,
.basket-button,
.phone-cta,
.primary-button,
.dark-button,
.whatsapp-button,
.saved-details-button {
  transition: transform 0.16s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.photo-prev:hover,
.photo-next:hover,
.stepper button:hover,
.saved-details-button:hover {
  transform: scale(1.08);
}
button:active,
.phone-cta:active,
.basket-button:active,
.primary-button:active,
.dark-button:active,
.whatsapp-button:active {
  transform: scale(0.97);
}
.phone-cta {
  animation: riseIn 0.65s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}
.basket-button {
  animation: softPulse 2.8s 1.2s ease-in-out 2;
}
.modal-backdrop {
  opacity: 0;
  transition: opacity 0.22s ease;
}
.modal-backdrop.open {
  opacity: 1;
}
.modal-backdrop .cart-modal {
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.26s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.22s ease;
}
.modal-backdrop.open .cart-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.bottom-sheet {
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.24s ease;
}
.bottom-sheet.open {
  box-shadow: 0 -20px 55px rgba(7, 59, 76, 0.2);
}
.sheet-items .cart-line,
.modal-items .cart-line {
  animation: riseIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.sheet-items .cart-line:nth-child(2),
.modal-items .cart-line:nth-child(2) {
  animation-delay: 0.04s;
}
.sheet-items .cart-line:nth-child(3),
.modal-items .cart-line:nth-child(3) {
  animation-delay: 0.08s;
}
.help-card,
.promise article,
.delivery-banner,
.final-cta,
.steps > div {
  transition: transform 0.24s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.24s ease;
}
.help-card:hover,
.promise article:hover,
.delivery-banner:hover,
.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(7, 59, 76, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
.bottom-sheet {
  width: min(720px, calc(100% - 28px));
  height: 300px;
  border: 1px solid #dbe7ea;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -18px 55px rgba(7, 59, 76, 0.18);
  backdrop-filter: blur(18px);
}
.drag-handle {
  width: 92px;
  height: 24px;
  padding: 7px 0 8px;
  margin: 6px auto 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drag-handle span {
  display: block;
  width: 46px;
  height: 5px;
  border-radius: 99px;
  background: #b7c8cd;
  transition: width 0.2s ease, background-color 0.2s ease;
}
.drag-handle:hover span,
.drag-handle:active span {
  width: 58px;
  background: #0e7490;
}
.sheet-title {
  padding: 13px 20px 14px;
  border-bottom: 1px solid #e6eef0;
}
.sheet-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}
.sheet-bag-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecfeff;
  color: #0e7490;
}
.sheet-bag-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sheet-title b {
  font-size: 15px;
  letter-spacing: -0.01em;
}
.sheet-title small {
  margin-top: 3px;
}
.sheet-close {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe7ea !important;
  border-radius: 50%;
  background: #f7fafb !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52666d !important;
  transition: transform 0.18s ease, background-color 0.18s ease,
    color 0.18s ease, box-shadow 0.18s ease !important;
}
.sheet-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.sheet-close:hover {
  transform: rotate(90deg) scale(1.05);
  background: #fff0ed !important;
  color: #c2412d !important;
  box-shadow: 0 5px 14px rgba(194, 65, 45, 0.14);
}
.sheet-items {
  padding: 12px 20px 8px;
}
.sheet-footer {
  padding: 13px 20px 16px;
  border-top: 1px solid #e6eef0;
  background: #fff;
  box-shadow: 0 -8px 18px rgba(7, 59, 76, 0.04);
}
.sheet-footer > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sheet-footer span {
  font-size: 12px;
  color: #688087;
  font-weight: 700;
}
.sheet-footer strong {
  font-size: 20px;
  color: #073b4c;
}
.sheet-footer .primary-button {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(7, 59, 76, 0.14);
}
.sheet-items .cart-line {
  background: #fbfdfd;
  border-color: #e2edef;
  border-radius: 16px;
  padding: 9px;
}
.sheet-items .cart-line:hover {
  border-color: #9bdde6;
  box-shadow: 0 5px 14px rgba(7, 59, 76, 0.06);
}
@media (max-width: 800px) {
  .bottom-sheet {
    width: 100%;
    border-radius: 26px 26px 0 0;
  }
  .sheet-title {
    padding-left: 18px;
    padding-right: 18px;
  }
  .sheet-items {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sheet-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* Revert basket panel styling to the earlier compact sheet; retain the improved close button */
.bottom-sheet {
  width: min(680px, calc(100% - 28px));
  height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 45px #073b4c25;
  backdrop-filter: none;
}
.drag-handle {
  width: 75px;
  height: auto;
  padding: 4px;
  margin: 8px auto 0;
  background: #e7eef0;
  border: 0;
  border-radius: 10px;
  display: block;
}
.drag-handle span {
  display: block;
  width: 40px;
  height: 4px;
  margin: auto;
  border-radius: 10px;
  background: #688087;
}
.drag-handle:hover span,
.drag-handle:active span {
  width: 40px;
  background: #688087;
}
.sheet-title {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.sheet-heading {
  gap: 0;
}
.sheet-bag-icon {
  display: none;
}
.sheet-title b {
  font-size: inherit;
}
.sheet-title small {
  margin-top: 0;
}
.sheet-close {
  width: auto;
  height: auto;
  border: 0 !important;
  border-radius: 0;
  background: none !important;
  box-shadow: none !important;
  color: var(--muted) !important;
}
.sheet-close:hover {
  transform: none;
  background: #f1f5f6 !important;
  color: #172d35 !important;
  box-shadow: none;
}
.sheet-close svg {
  width: 19px;
  height: 19px;
}
.sheet-items {
  padding: 12px 20px;
}
.sheet-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.sheet-footer > div {
  margin-bottom: 0;
}
.sheet-footer span {
  font-size: inherit;
  color: inherit;
  font-weight: 400;
}
.sheet-footer strong {
  font-size: inherit;
}
.sheet-footer .primary-button {
  width: auto;
  padding: 11px 22px;
  border-radius: 13px;
  box-shadow: none;
}
@media (max-width: 800px) {
  .bottom-sheet {
    width: 100%;
    border-radius: 26px 26px 0 0;
  }
  .sheet-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sheet-items {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sheet-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sheet-close {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe7ea !important;
  border-radius: 50%;
  background: #f7fafb !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52666d !important;
  transition: transform 0.18s ease, background-color 0.18s ease,
    color 0.18s ease, box-shadow 0.18s ease !important;
}
.sheet-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.sheet-close:hover {
  transform: rotate(90deg) scale(1.05);
  background: #fff0ed !important;
  color: #c2412d !important;
  box-shadow: 0 5px 14px rgba(194, 65, 45, 0.14);
}
.checkout {
  background: #fbfdfd;
}
.checkout-intro {
  margin: 14px 20px 2px;
  padding: 12px 14px;
  border: 1px solid #d8edf0;
  border-radius: 13px;
  background: #f0fbfc;
  color: #42636b;
  font-size: 12px;
  line-height: 1.5;
}
.checkout label {
  font-size: 12px;
  color: #52666d;
  letter-spacing: 0.02em;
}
.checkout input,
.checkout select,
.checkout textarea {
  background: #fff;
  border-color: #d7e5e8;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.checkout input:focus,
.checkout select:focus,
.checkout textarea:focus {
  border-color: #38aebb;
  outline: none;
  box-shadow: 0 0 0 4px rgba(56, 174, 187, 0.12);
  background: #feffff;
}
.saved-details-panel {
  margin: 12px 20px 2px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #bfe7d2;
  border-radius: 13px;
  background: #f0fdf6;
  color: #17663f;
}
.saved-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25a866;
  color: #fff;
  font-weight: 900;
}
.saved-details-panel span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.saved-details-panel small {
  margin-top: 2px;
  color: #4f8068;
}
.saved-details-panel button {
  border: 1px solid #8bd3ac;
  border-radius: 9px;
  background: #fff;
  color: #187044;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 800;
}
.saved-details-panel button:disabled {
  opacity: 0.7;
}
.checkout-actions {
  padding: 15px 20px 17px;
  border-top: 1px solid #e0eaec;
  background: #fff;
  text-align: center;
}
.checkout-actions .whatsapp-button {
  width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  border: 0;
}
.checkout-actions > small {
  display: block;
  margin-top: 8px;
  color: #84969b;
  font-size: 11px;
}
.checkout-actions .whatsapp-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.checkout .modal-total {
  background: #fff;
  padding: 13px 20px;
  border-top: 0;
}
.checkout .modal-total strong {
  color: #073b4c;
}
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 190px auto;
  gap: 10px;
  align-items: center;
  margin: 26px 0 10px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d8e5e8;
  background: #fff;
  border-radius: 14px;
  padding: 0 13px;
  height: 44px;
}
.search-field svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #5f777e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: #172d35;
}
.catalog-tools select,
.clear-filters {
  height: 44px;
  border: 1px solid #d8e5e8;
  border-radius: 14px;
  background: #fff;
  color: #37545c;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}
.catalog-tools select:focus,
.search-field:focus-within {
  border-color: #42b4bf;
  box-shadow: 0 0 0 4px rgba(66, 180, 191, 0.1);
  outline: 0;
}
.clear-filters {
  padding: 0 15px;
  color: #0e7490;
  background: #ecfeff;
  cursor: pointer;
}
.clear-filters:hover {
  background: #cffafe;
}
.catalog-count {
  min-height: 17px;
  margin: 0 0 14px;
  color: #71858b;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .catalog-tools {
    grid-template-columns: 1fr 1fr;
  }
  .search-field {
    grid-column: 1 / -1;
  }
  .catalog-tools select {
    width: 100%;
  }
  .clear-filters {
    width: 100%;
  }
}
/* Homepage quantity control polish */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #e6eef0;
}
.max-label {
  font-size: 11px;
  color: #71858b;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #d7e6e9;
  border-radius: 15px;
  background: #f4f9fa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 10px rgba(7, 59, 76, 0.06);
}
.stepper button {
  position: relative;
  width: 38px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: #fff;
  color: #087486;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(7, 59, 76, 0.08);
  transition: transform 0.16s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.stepper button:first-child {
  color: #58727a;
}
.stepper button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #ecfeff;
  color: #056b7a;
  box-shadow: 0 5px 12px rgba(7, 59, 76, 0.13);
}
.stepper button:active:not(:disabled) {
  transform: scale(0.91);
}
.stepper button:disabled {
  opacity: 0.35;
  background: #edf2f3;
  color: #82959a;
  cursor: not-allowed;
  box-shadow: none;
}
.stepper strong {
  min-width: 58px;
  text-align: center;
  color: #073b4c;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.stepper strong::after {
  content: " / kg";
  font-size: 10px;
  color: #7a8d92;
  font-weight: 700;
}
@media (max-width: 520px) {
  .qty-row {
    align-items: flex-end;
  }
  .stepper button {
    width: 36px;
    height: 35px;
  }
  .stepper strong {
    min-width: 50px;
  }
}
.buy-now-button {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #0e7490;
  border-radius: 13px;
  padding: 11px 14px;
  background: #0e7490;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 7px 15px rgba(14, 116, 144, 0.16);
  transition: transform 0.16s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 0.18s ease, box-shadow 0.18s ease;
}
.buy-now-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.buy-now-button:hover {
  transform: translateY(-2px);
  background: #075985;
  box-shadow: 0 11px 22px rgba(14, 116, 144, 0.23);
}
.buy-now-button:active {
  transform: scale(0.97);
}
.stepper strong::after {
  content: none !important;
}
.buy-now-button {
  background: #111827;
  color: #fff;
  border-color: #111827;
  box-shadow: 0 7px 15px rgba(17, 24, 39, 0.18);
}
.buy-now-button:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 11px 22px rgba(17, 24, 39, 0.28);
}
.stepper button,
.stepper button:first-child {
  color: #111827;
}
.stepper button:hover:not(:disabled) {
  color: #000;
  background: #f3f4f6;
}
.rate {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: #c2412d !important;
  background: #fff4f1;
  border: 1px solid #ffd5cc;
  border-radius: 12px;
  padding: 7px 10px;
  line-height: 1;
  font-size: 18px;
  white-space: nowrap;
}
.rate small {
  color: #a5483a !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-top .rate {
  box-shadow: 0 4px 12px rgba(194, 65, 45, 0.08);
}
.rate {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ff1f1f !important;
  padding: 5px 0 !important;
}
.rate small {
  color: #e11d2e !important;
}
.photo-prev,
.photo-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform 0.16s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.photo-prev:hover,
.photo-next:hover {
  transform: translateY(-50%) scale(1.08) !important;
  background: #fff;
  color: #111827;
  box-shadow: 0 5px 14px rgba(7, 59, 76, 0.18);
}
.photo-prev:active,
.photo-next:active {
  transform: translateY(-50%) scale(0.96) !important;
}
.whatsapp-note {
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  line-height: 1.45;
}
.whatsapp-note b {
  color: #385a62;
  font-size: 11px;
}
.whatsapp-note span {
  color: #84969b;
  font-size: 10px;
}
.checkout {
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #9fb9bf transparent;
}
.checkout::-webkit-scrollbar {
  width: 7px;
}
.checkout::-webkit-scrollbar-track {
  background: transparent;
}
.checkout::-webkit-scrollbar-thumb {
  background: #9fb9bf;
  border-radius: 99px;
}
.checkout-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
}
.checkout-actions .whatsapp-button {
  min-height: 48px;
}
@media (max-width: 800px) {
  .modal-backdrop {
    padding: 10px;
    align-items: flex-end;
  }
  .checkout {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 24px 24px 0 0;
  }
  .checkout .modal-title {
    position: sticky;
    top: 0;
    z-index: 4;
    background: #fbfdfd;
  }
  .checkout-intro {
    margin-top: 12px;
  }
  .checkout label {
    padding-top: 9px;
  }
  .checkout input,
  .checkout select,
  .checkout textarea {
    padding: 11px;
  }
  .checkout .modal-total {
    padding: 12px 20px;
  }
  .checkout-actions {
    padding: 12px 16px max(14px, env(safe-area-inset-bottom));
    margin-top: 2px;
  }
  .checkout-actions .whatsapp-button {
    font-size: 13px;
  }
  .whatsapp-note span {
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  .checkout {
    border-radius: 24px !important;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  .checkout-actions {
    border-radius: 0 0 24px 24px;
  }
}
@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-card {
    min-width: 0;
    border-radius: 16px;
  }
  .product-photo {
    height: 150px;
  }
  .product-info {
    padding: 12px;
  }
  .product-top {
    display: block;
  }
  .product-top h3 {
    font-size: 16px;
    line-height: 1.1;
  }
  .product-top p {
    font-size: 11px;
    line-height: 1.35;
  }
  .product-top .stock {
    font-size: 10px;
  }
  .rate {
    align-items: flex-start;
    font-size: 16px;
    padding: 5px 0 !important;
    margin-top: 7px;
  }
  .qty-row {
    display: block;
    margin-top: 11px;
    padding-top: 10px;
  }
  .max-label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
  }
  .stepper {
    width: 100%;
    justify-content: space-between;
  }
  .stepper button {
    width: 32px;
    height: 32px;
  }
  .stepper strong {
    min-width: 0;
    flex: 1;
    font-size: 12px;
  }
  .buy-now-button {
    font-size: 11px;
    padding: 10px 7px;
    border-radius: 11px;
    gap: 4px;
  }
  .buy-now-button svg {
    width: 14px;
    height: 14px;
  }
  .photo-prev,
  .photo-next {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  .photo-prev {
    left: 7px;
  }
  .photo-next {
    right: 7px;
  }
}
@media (max-width: 380px) {
  .product-grid {
    gap: 8px;
  }
  .product-info {
    padding: 10px;
  }
  .product-photo {
    height: 132px;
  }
  .product-top h3 {
    font-size: 14px;
  }
  .buy-now-button {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  header img[src*="goa-fish-market-logo"] {
    width: 120px;
    height: auto;
  }
}