:root {
  --ink: #17211c;
  --muted: #65716a;
  --paper: #fbfaf4;
  --milk: #fffdf7;
  --line: rgba(23, 33, 28, 0.13);
  --green: #1f6a43;
  --leaf: #6fa359;
  --tomato: #c64937;
  --sun: #e9b949;
  --berry: #7a263d;
  --shadow: 0 24px 70px rgba(23, 33, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-page {
  background:
    linear-gradient(180deg, rgba(31, 106, 67, 0.08), transparent 280px),
    var(--paper);
}

body.admin-locked [data-admin-private],
body.admin-locked .cart-drawer {
  display: none;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 20px 40px;
  background:
    linear-gradient(135deg, rgba(31, 106, 67, 0.12), rgba(244, 211, 94, 0.12)),
    var(--paper);
}

.admin-login-card {
  width: min(460px, 100%);
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(31, 106, 67, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 0.98;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
}

.admin-login-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.admin-login-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.admin-login-error {
  padding: 12px;
  border: 1px solid rgba(198, 73, 55, 0.25);
  border-radius: 8px;
  color: #9f3024;
  background: rgba(198, 73, 55, 0.08);
  font-weight: 900;
}

.admin-main {
  padding-top: 112px;
}

.admin-main .admin-section {
  margin-top: 0;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(251, 250, 244, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(23, 33, 28, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  opacity: 0.72;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header[data-elevated="true"] .nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  color: inherit;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cart-button,
.filter,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.site-header[data-elevated="true"] .cart-button {
  background: #fff;
  border-color: var(--line);
}

.cart-button strong {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tomato);
  border-radius: 50%;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    image-set(
      url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=84") 1x
    ) center / cover;
  transform: scale(1.04);
  animation: breathe 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 20, 0.82), rgba(18, 24, 20, 0.24) 54%, rgba(18, 24, 20, 0.2));
}

.hero-content {
  position: relative;
  width: min(780px, 92vw);
  padding: 0 clamp(18px, 5vw, 72px) 150px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d98b;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.deal-clock {
  width: min(640px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.deal-clock span,
.deal-clock small {
  color: rgba(255, 255, 255, 0.72);
}

.deal-clock strong {
  display: block;
  margin-top: 5px;
  color: #fff;
}

.clock-units {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.clock-units b {
  font-size: 26px;
  line-height: 1;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-action {
  color: #fff;
  background: var(--tomato);
}

.primary-action.dark {
  background: var(--ink);
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.secondary-cart-action {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ebt-inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(31, 106, 67, 0.25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(31, 106, 67, 0.08);
  font-weight: 900;
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-strip {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.intro p:last-child,
.feature-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--milk);
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(52px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(122, 38, 61, 0.94), rgba(198, 73, 55, 0.88)),
    url("https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.offer-band .eyebrow {
  color: #f7dfa0;
}

.offer-band p:last-child {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.signal-band div {
  padding: 30px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.signal-band strong {
  display: block;
  color: var(--green);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.signal-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.filter.active {
  background: var(--ink);
  color: #fff;
}

.shop-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-menu {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.menu-card,
.snap-card,
.shelf-stage {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 18px 48px rgba(23, 33, 28, 0.07);
}

.menu-card {
  padding: 18px;
}

.menu-card h3 {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1;
}

.menu-item {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 0 12px 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.menu-item:hover,
.menu-item.active {
  border-color: var(--line);
  background: #fff;
}

.menu-item.active {
  color: #fff;
  background: var(--green);
}

.menu-item strong {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 33, 28, 0.08);
}

.menu-item.active strong {
  background: rgba(255, 255, 255, 0.18);
}

.snap-card {
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 106, 67, 0.98), rgba(122, 38, 61, 0.92)),
    url("https://images.unsplash.com/photo-1550989460-0adf9ea622e2?auto=format&fit=crop&w=800&q=78") center / cover;
}

.snap-card span {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: #f5dfa0;
  font-size: 12px;
  font-weight: 900;
}

.snap-card strong,
.snap-card small {
  display: block;
}

.snap-card strong {
  max-width: 190px;
  font-size: 25px;
  line-height: 1;
}

.snap-card small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.shelf-stage {
  padding: 18px;
}

.shelf-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.shelf-toolbar strong,
.shelf-toolbar span {
  display: block;
}

.shelf-toolbar strong {
  font-size: 22px;
}

.shelf-toolbar span {
  margin-top: 5px;
  color: var(--muted);
}

.search-box {
  width: min(320px, 100%);
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.search-box input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 106, 67, 0.12);
}

.product-loader {
  height: 180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-loader span {
  border-radius: 8px;
  background: linear-gradient(110deg, #ece8dc 8%, #fff 18%, #ece8dc 33%);
  background-size: 200% 100%;
  animation: shimmer 900ms linear infinite;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.empty-results {
  grid-column: 1 / -1;
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  align-content: end;
  border-radius: 8px;
  background: #ddd;
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.08);
  isolation: isolate;
  transform: translateY(10px);
  opacity: 0;
  animation: cardIn 560ms ease forwards;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--image) center / cover;
  transition: transform 450ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 24, 20, 0.02), rgba(18, 24, 20, 0.78));
}

.product-card:hover::before {
  transform: scale(1.07);
}

.product-info {
  padding: 22px;
  color: #fff;
}

.product-info small {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5dfa0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
}

.promo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 11px;
  color: var(--ink);
  background: #f5dfa0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-info h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1;
}

.product-info p {
  min-height: 48px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-actions button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.product-actions .add {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  font-weight: 800;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(74px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: #17211c;
  color: #fff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-copy li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-panel {
  display: grid;
  gap: 12px;
}

.route-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.route-card.active {
  background: #f5dfa0;
  color: var(--ink);
}

.route-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.route-card strong,
.route-card small {
  display: block;
}

.route-card small {
  margin-top: 6px;
  opacity: 0.72;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--milk);
}

.contact div {
  max-width: 720px;
}

.legal-delivery,
.admin-section {
  background: #fff;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.policy-grid article,
.account-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--milk);
  box-shadow: 0 18px 48px rgba(23, 33, 28, 0.08);
}

.policy-grid article {
  padding: 24px;
}

.policy-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.policy-grid h3,
.admin-panel h3 {
  margin: 18px 0 8px;
}

.policy-grid p,
.admin-note {
  color: var(--muted);
  line-height: 1.65;
}

.account-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: #f4fbf7;
}

.account-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.account-form,
.admin-form {
  display: grid;
  gap: 12px;
}

.account-form label,
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-form input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.account-status,
.account-order {
  padding: 14px;
  border: 1px solid rgba(31, 106, 67, 0.16);
  border-radius: 8px;
  background: rgba(31, 106, 67, 0.06);
}

.account-order {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 18px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.admin-grid {
  display: grid;
}

.admin-panel {
  display: none;
  padding: 26px;
}

.admin-panel.active {
  display: grid;
  gap: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-grid div {
  padding: 18px;
  border: 1px solid rgba(31, 106, 67, 0.16);
  border-radius: 8px;
  background: #fff;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--green);
  font-size: 34px;
}

.stat-grid span {
  color: var(--muted);
}

.admin-list,
.admin-table {
  display: grid;
  gap: 10px;
}

.admin-list > div,
.admin-table > div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-list span,
.admin-table span {
  color: var(--muted);
  line-height: 1.45;
}

.admin-alert-card {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 106, 67, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.admin-alert-card.has-order {
  border-color: rgba(31, 106, 67, 0.36);
  background: linear-gradient(135deg, rgba(31, 106, 67, 0.12), rgba(244, 211, 94, 0.18));
}

.order-board {
  gap: 16px;
}

.order-card {
  display: grid !important;
  gap: 16px !important;
  padding: 18px !important;
  border-color: rgba(31, 106, 67, 0.22) !important;
  box-shadow: 0 12px 28px rgba(39, 54, 49, 0.08);
}

.order-card-head,
.order-totals {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.order-card-head b {
  color: var(--green);
  font-size: 26px;
}

.order-customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-customer-grid p,
.order-admin-tools label {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(31, 106, 67, 0.12);
  border-radius: 8px;
  background: rgba(31, 106, 67, 0.04);
  color: var(--ink);
  font-weight: 800;
}

.order-customer-grid .wide,
.order-admin-tools label:nth-child(2) {
  grid-column: 1 / -1;
}

.order-customer-grid small,
.order-admin-tools label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-items span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(31, 106, 67, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.order-totals {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.order-admin-tools {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) 1fr auto;
  gap: 10px;
  align-items: end;
}

.order-admin-tools select,
.order-admin-tools textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.account-order {
  align-items: center;
}

.account-order em {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px;
}

.cart-drawer,
.quick-view,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(15, 20, 17, 0.52);
  backdrop-filter: blur(8px);
}

.cart-drawer.open,
.quick-view.open,
.checkout-modal.open {
  display: block;
}

.cart-panel {
  width: min(460px, 92vw);
  min-height: 100%;
  margin-left: auto;
  padding: 28px;
  background: var(--milk);
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cart-line-actions {
  display: grid;
  grid-template-columns: 34px 24px 34px auto auto;
  gap: 7px;
  align-items: center;
  justify-items: center;
}

.cart-line-actions button {
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cart-line-actions .remove {
  min-width: auto;
  padding: 0 11px;
  color: #9f3024;
  border-color: rgba(198, 73, 55, 0.25);
  background: rgba(198, 73, 55, 0.08);
}

.cart-line-actions b {
  justify-self: end;
  min-width: 72px;
  text-align: right;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.checkout {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.cart-actions .checkout {
  margin-top: 0;
}

.checkout-card {
  width: min(1100px, 94vw);
  max-height: 90vh;
  overflow: auto;
  margin: 5vh auto;
  position: relative;
  border-radius: 8px;
  background: var(--milk);
  box-shadow: var(--shadow);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: clamp(24px, 4vw, 46px);
}

.checkout-note {
  color: var(--muted);
  line-height: 1.65;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-form label.ebt-confirm,
.checkout-form label.order-confirm {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-transform: none;
  font-size: 14px;
  line-height: 1.4;
}

.checkout-form label.ebt-confirm input,
.checkout-form label.order-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.checkout-form .wide,
.checkout-submit {
  grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 106, 67, 0.12);
}

.checkout-submit {
  border: 0;
  cursor: pointer;
}

.checkout-summary {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-self: start;
}

.checkout-summary small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.summary-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.summary-line small {
  margin-top: 4px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--ink);
  font-size: 19px;
}

.checkout-success {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  line-height: 1.5;
}

.modal-card {
  width: min(920px, 92vw);
  margin: 7vh auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--milk);
  box-shadow: var(--shadow);
  position: relative;
}

.modal-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.modal-card > div {
  padding: 42px;
  align-self: center;
}

.modal-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.modal-card strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-size: 24px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.ai-chat-toggle,
.ai-chat-panel {
  pointer-events: auto;
}

.ai-chat-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #244b35);
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.22);
  cursor: pointer;
}

.ai-chat-toggle span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-weight: 1000;
}

.ai-chat-toggle strong {
  font-size: 14px;
}

.ai-chat-panel {
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(31, 106, 67, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 18px;
  color: #fff;
  background: var(--green);
}

.ai-chat-head h3 {
  margin: 0;
}

.ai-chat-head .icon-button {
  color: var(--green);
  background: #fff;
}

.ai-chat-messages {
  max-height: 320px;
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: 16px;
  background: #fbfaf4;
}

.ai-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  line-height: 1.45;
  font-size: 14px;
}

.ai-message.bot {
  justify-self: start;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.ai-message.user {
  justify-self: end;
  color: #fff;
  background: var(--green);
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.ai-chat-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.ai-chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 15px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.ebt-page {
  background:
    radial-gradient(circle at top left, rgba(111, 163, 89, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fbf8, #edf4ef);
}

.ebt-header {
  position: sticky;
}

.ebt-main {
  padding: 110px clamp(18px, 5vw, 72px) 72px;
}

.ebt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.ebt-hero h1 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 84px);
}

.ebt-hero p:not(.eyebrow),
.ebt-muted {
  color: var(--muted);
  line-height: 1.65;
}

.processor-status {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.08);
}

.processor-status span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 7px rgba(233, 185, 73, 0.18);
}

.processor-status small {
  color: var(--muted);
}

.ebt-checkout-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
}

.ebt-order-card,
.ebt-payment-card,
.ebt-compliance > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.ebt-order-card,
.ebt-payment-card {
  padding: clamp(24px, 4vw, 42px);
}

.ebt-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--green);
}

.ebt-card-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.ebt-order-card h2,
.ebt-payment-card h2,
.ebt-compliance h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.ebt-lines {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.ebt-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ebt-line small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.muted-line {
  opacity: 0.82;
}

.ebt-total-box {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(31, 106, 67, 0.18);
  border-radius: 8px;
  background: rgba(31, 106, 67, 0.06);
}

.ebt-total-box div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.ebt-total-box .grand {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.ebt-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.ebt-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ebt-form input,
.ebt-form select {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}

.ebt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hosted-pin-pad {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: rgba(31, 106, 67, 0.07);
}

.hosted-pin-pad small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.pin-dots {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: 8px;
  white-space: nowrap;
}

.ebt-actions {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
}

.ebt-secondary {
  color: var(--green);
  border-color: rgba(31, 106, 67, 0.35);
  background: #fff;
}

.ebt-result {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 106, 67, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(31, 106, 67, 0.09), rgba(255, 255, 255, 0.94)),
    #fff;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(31, 106, 67, 0.08);
}

.ebt-result strong {
  color: var(--green);
}

.ebt-result span {
  color: var(--muted);
}

.ebt-result.ready {
  border-color: rgba(31, 106, 67, 0.32);
  background:
    linear-gradient(135deg, rgba(111, 163, 89, 0.16), rgba(255, 255, 255, 0.96)),
    #fff;
}

.ebt-compliance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.ebt-compliance > div {
  padding: 26px;
}

.ebt-compliance p {
  color: var(--muted);
  line-height: 1.7;
}

.merchant-checkout-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 81, 50, 0.08), rgba(255, 255, 255, 0.45)),
    radial-gradient(circle at 14% 8%, rgba(111, 163, 89, 0.22), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(198, 73, 55, 0.14), transparent 28%),
    #eef3f1;
  color: #17201d;
}

.merchant-frame {
  width: min(1240px, calc(100vw - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 46px) 0;
  display: grid;
  align-items: center;
}

.merchant-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.merchant-panel {
  overflow: hidden;
  border: 1px solid #dbe5e1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(20, 45, 35, 0.14);
}

.merchant-summary-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.merchant-payment-panel {
  border-color: rgba(15, 81, 50, 0.18);
}

.merchant-head {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 30px;
  color: #fff;
  background: #0f5132;
}

.merchant-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  font-weight: 900;
}

.merchant-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0f5132;
  background: #fff;
  font-weight: 900;
}

.merchant-badge {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.merchant-body,
.merchant-payhead {
  padding: 30px;
}

.merchant-payhead {
  padding-bottom: 0;
}

.merchant-body h1,
.merchant-payhead h2 {
  margin: 0 0 10px;
  line-height: 1.1;
}

.merchant-kicker {
  margin: 0 0 8px;
  color: #c64937;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merchant-body h1 {
  font-size: clamp(34px, 4vw, 46px);
}

.merchant-payhead h2 {
  font-size: clamp(34px, 4vw, 44px);
}

.merchant-muted {
  margin: 0;
  color: #687772;
  font-size: 15px;
  line-height: 1.45;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.checkout-steps span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #dcebe3;
  border-radius: 999px;
  color: #687772;
  background: #f7fbf8;
  font-size: 13px;
  font-weight: 900;
}

.checkout-steps span.active {
  color: #fff;
  border-color: #0f5132;
  background: #0f5132;
}

.checkout-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.order-chip {
  padding: 10px 13px;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 999px;
  color: #0f5132;
  background: #eefaf2;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.merchant-items {
  margin-top: 25px;
  border-top: 1px solid #e5ece9;
}

.merchant-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e5ece9;
}

.merchant-item b {
  font-size: 17px;
}

.merchant-item span,
.merchant-item small {
  display: block;
  margin-top: 4px;
  color: #687772;
  font-size: 13px;
}

.merchant-total {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #dcebe3;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5faf7, #ffffff);
}

.merchant-total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 9px 0;
  font-size: 16px;
}

.merchant-total-line.big {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #d9e8df;
  color: #0f5132;
  font-size: 24px;
  font-weight: 900;
}

.merchant-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  color: #0f5132;
  background: rgba(22, 163, 74, 0.07);
  font-weight: 900;
}

.merchant-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}

.merchant-form {
  display: grid;
  gap: 18px;
  padding: 24px 30px 30px;
}

.merchant-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #33423e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merchant-form input,
.merchant-form select {
  width: 100%;
  height: 58px;
  border: 1px solid #c9d8d2;
  border-radius: 16px;
  padding: 0 16px;
  color: #17201d;
  background: #fff;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.merchant-form input:focus,
.merchant-form select:focus {
  outline: 3px solid rgba(15, 81, 50, 0.14);
  border-color: #0f5132;
}

.merchant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.merchant-pinbox {
  padding: 20px;
  border: 2px solid #0f5132;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 81, 50, 0.1), rgba(255, 255, 255, 0.7)),
    #f4fbf7;
}

.merchant-pinrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.merchant-pinlabel {
  color: #0f5132;
  font-weight: 900;
}

.merchant-pinrow small {
  display: block;
  margin-top: 4px;
  color: #51615c;
  font-size: 13px;
}

.merchant-dots {
  color: #17201d;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 9px;
  white-space: nowrap;
}

.merchant-pinbox p {
  margin: 11px 0 0;
  color: #51615c;
  font-size: 13px;
  line-height: 1.4;
}

.merchant-buttons {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  gap: 13px;
}

.merchant-primary,
.merchant-secondary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.merchant-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f5132, #197143);
  box-shadow: 0 14px 28px rgba(15, 81, 50, 0.22);
}

.merchant-secondary {
  color: #273631;
  background: #e9f0ed;
}

.merchant-notice {
  padding: 15px;
  border: 1px solid #dcebe3;
  border-radius: 14px;
  color: #27443a;
  background: #f5faf7;
  font-size: 13px;
  line-height: 1.4;
}

.charge-card {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(15, 81, 50, 0.18);
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    #0f5132;
  box-shadow: 0 18px 42px rgba(15, 81, 50, 0.2);
}

.charge-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.charge-card strong {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.95;
}

.merchant-notice strong,
.merchant-notice span {
  display: block;
}

.merchant-notice strong {
  color: #0f5132;
}

.merchant-notice span {
  margin-top: 4px;
  color: #51615c;
}

.merchant-notice-ready {
  border-color: rgba(22, 163, 74, 0.28);
  background: #eefaf2;
}

@keyframes breathe {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes shimmer {
  to { background-position-x: -200%; }
}

@keyframes cardIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .feature,
  .modal-card,
  .checkout-grid,
  .offer-band,
  .ebt-hero,
  .ebt-checkout-shell,
  .ebt-compliance,
  .merchant-shell,
  .policy-grid,
  .account-section {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .contact {
    display: grid;
  }

  .shop-shell {
    grid-template-columns: 1fr;
  }

  .product-menu {
    position: static;
  }

  .shelf-toolbar {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-bottom: 180px;
  }

  .deal-clock {
    align-items: start;
    flex-direction: column;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .signal-band,
  .policy-grid,
  .stat-grid,
  .order-customer-grid,
  .order-admin-tools {
    grid-template-columns: 1fr;
  }

  .cart-line,
  .cart-line-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .cart-line-actions b {
    text-align: left;
  }

  .product-card {
    min-height: 350px;
  }

  .modal-card img {
    height: 280px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }

  .ebt-form-grid,
  .ebt-actions,
  .merchant-grid {
    grid-template-columns: 1fr;
  }

  .merchant-frame {
    width: min(100vw - 18px, 1200px);
    padding: 9px 0;
  }

  .merchant-head,
  .merchant-buttons {
    display: grid;
  }

  .merchant-brand {
    font-size: 21px;
  }

  .merchant-body,
  .merchant-payhead,
  .merchant-form {
    padding-inline: 20px;
  }

  .merchant-total-line,
  .merchant-item {
    gap: 10px;
  }

  .ai-chat {
    right: 10px;
    bottom: 10px;
  }
}
