:root {
  --ec-primary: #047857;
  --ec-primary-dark: #064e3b;
  --ec-cream: #fff7e8;
  --ec-surface: #ffffff;
  --ec-accent: #d6a84f;
  --ec-ink: #173b2f;
  --ec-muted: #6f8178;
  --ec-border: rgba(4, 120, 87, 0.16);
  --ec-shadow: 0 18px 44px rgba(6, 78, 59, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body,
a,
button,
input,
textarea {
  touch-action: manipulation;
}

body {
  margin: 0;
  color: var(--ec-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 168, 79, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--ec-cream) 0%, #f7ead4 100%);
  min-height: 100vh;
  padding-bottom: 112px;
}

body.is-story-open {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.ec-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 14px 8px;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--ec-cream) 84%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.ec-header-inner,
.ec-shell,
.ec-footer {
  width: min(100%, 480px);
  margin: 0 auto;
}

.ec-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ec-brand {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
}

.ec-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(6, 78, 59, 0.16);
  background: var(--ec-primary);
}

.ec-brand span {
  min-width: 0;
}

.ec-brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ec-brand small {
  display: block;
  color: var(--ec-muted);
  font-size: 0.72rem;
  line-height: 1.35;
  margin-top: 4px;
}

.ec-brand:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ec-accent) 70%, white);
  outline-offset: 4px;
  border-radius: 8px;
}

.ec-social {
  display: flex;
  gap: 7px;
}

.ec-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ec-primary-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--ec-border);
  font-size: 0.68rem;
  font-weight: 800;
  transform-origin: center;
  animation: ecSocialPulse 3.8s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ec-social a:nth-child(2) {
  animation-delay: 0.28s;
}

.ec-social a:nth-child(3) {
  animation-delay: 0.56s;
}

.ec-social a:hover,
.ec-social a:focus-visible {
  transform: translateY(-2px) scale(1.08);
  background: #fff;
  box-shadow: 0 10px 22px rgba(6, 78, 59, 0.16);
}

.ec-social a:active {
  transform: scale(0.94);
}

.ec-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@keyframes ecSocialPulse {
  0%,
  70%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
  8% {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 9px 20px rgba(6, 78, 59, 0.14);
  }
  14% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ec-social a {
    animation: none;
  }
}

/* Clean minimalist refresh */
:root {
  --ec-border: rgba(23, 59, 47, 0.1);
  --ec-shadow: 0 14px 34px rgba(23, 59, 47, 0.08);
}

body {
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--ec-cream) 52%, #fffdf8 100%);
}

.ec-header {
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(23, 59, 47, 0.08);
}

.ec-brand img {
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(23, 59, 47, 0.1);
}

.ec-social a {
  background: #fff;
  border-color: rgba(23, 59, 47, 0.1);
}

.ec-shell {
  padding: 16px 14px 22px;
}

.ec-loyalty-check,
.ec-card,
.ec-highlight-frame,
.ec-cart-summary,
.ec-cart-line,
.ec-cart-totals,
.ec-modal-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 59, 47, 0.09);
  box-shadow: 0 10px 28px rgba(23, 59, 47, 0.055);
}

.ec-loyalty-check,
.ec-card,
.ec-highlight-frame {
  border-radius: 8px;
}

.ec-loyalty-check {
  margin: 16px 0 24px;
}

.ec-loyalty-form input,
.ec-modal input,
.ec-modal textarea {
  background: #fffdf8;
  border-color: rgba(23, 59, 47, 0.12);
}

.ec-loyalty-form button,
.ec-option,
.ec-checkout,
.ec-send {
  box-shadow: none;
}

.ec-section-head {
  margin: 30px 2px 12px;
}

.ec-section-head h2 {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.ec-section-head span {
  font-size: 0.72rem;
}

.ec-category-grid,
.ec-menu-list,
.ec-bean-gallery {
  gap: 12px;
}

.ec-category-card {
  min-height: 138px;
  border: 1px solid rgba(23, 59, 47, 0.08);
  box-shadow: 0 12px 26px rgba(23, 59, 47, 0.08);
}

.ec-category-card::after {
  background: linear-gradient(180deg, rgba(23, 59, 47, 0.08), rgba(23, 59, 47, 0.62));
}

.ec-category-card[aria-expanded="true"] {
  box-shadow: 0 14px 30px rgba(23, 59, 47, 0.1);
}

.ec-menu-section {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(23, 59, 47, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.ec-card {
  grid-template-columns: 1fr 96px;
  min-height: 132px;
  padding: 12px;
}

.ec-card h3 {
  font-size: 0.96rem;
}

.ec-card p {
  font-size: 0.76rem;
}

.ec-card-title-row span,
.ec-kicker,
.ec-beans-head span {
  background: color-mix(in srgb, var(--ec-accent) 24%, white);
}

.ec-option {
  border: 1px solid rgba(4, 120, 87, 0.12);
  background: var(--ec-primary);
}

.ec-card-media,
.ec-card-media img {
  min-height: 104px;
}

.ec-beans {
  margin-top: 32px;
  padding: 18px;
  color: var(--ec-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 232, 0.76)),
    var(--ec-surface);
  border: 1px solid rgba(23, 59, 47, 0.09);
  box-shadow: 0 12px 30px rgba(23, 59, 47, 0.07);
}

.ec-beans::before {
  border-color: rgba(23, 59, 47, 0.06);
}

.ec-beans-head h2 {
  font-size: 1.7rem;
  color: var(--ec-ink);
}

.ec-bean-card {
  background: #fff;
  border-color: rgba(23, 59, 47, 0.09);
  backdrop-filter: none;
}

.ec-bean-placeholder {
  color: var(--ec-muted);
}

.ec-bean-copy p {
  color: var(--ec-muted);
}

.ec-bean-copy b {
  color: var(--ec-primary-dark);
}

.ec-highlights {
  margin-top: 32px;
}

.ec-highlight-frame {
  box-shadow: 0 12px 30px rgba(23, 59, 47, 0.07);
}

.ec-highlight-slide {
  min-height: 390px;
}

.ec-highlight-slide img,
.ec-highlight-placeholder {
  height: 292px;
}

.ec-highlight-copy {
  min-height: 104px;
  background: #fff;
}

.ec-highlight-copy h3 {
  font-size: 1.35rem;
}

.ec-highlight-controls button {
  color: var(--ec-primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 59, 47, 0.1);
}

.ec-menu-back {
  color: var(--ec-primary-dark);
  background: #fff;
  border-color: rgba(23, 59, 47, 0.12);
  box-shadow: none;
}

.ec-cart {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(23, 59, 47, 0.08);
  box-shadow: 0 16px 36px rgba(23, 59, 47, 0.13);
}

.ec-footer {
  color: var(--ec-muted);
  text-align: center;
}

.ec-shell {
  padding: 14px;
}

.ec-notice {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 26px 18px 0;
  min-height: 420px;
  color: var(--ec-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.78)),
    var(--ec-surface);
  border: 1px solid rgba(28, 28, 28, 0.07);
  box-shadow: var(--ec-shadow);
}

.ec-notice::after {
  content: "";
  position: absolute;
  inset: auto 22px 24px;
  height: 84px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(28, 28, 28, 0.12), rgba(255, 255, 255, 0), rgba(28, 28, 28, 0.12)),
    url("../images/coffee-beans-strip.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(28, 28, 28, 0.12);
}

.ec-notice-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ec-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: color-mix(in srgb, var(--ec-accent) 30%, white);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.ec-notice h1,
.ec-story h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.ec-notice h1 {
  max-width: 420px;
  margin-inline: auto;
  font-family: Impact, "Arial Black", "Inter", system-ui, sans-serif;
  font-size: clamp(3.05rem, 15vw, 5.15rem);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
  color: #242424;
  overflow-wrap: anywhere;
}

.ec-notice p {
  max-width: 330px;
  margin: 14px auto 0;
  color: var(--ec-muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.ec-hero-promo {
  display: inline-grid;
  gap: 3px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 999px;
  color: #242424;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 26px rgba(28, 28, 28, 0.08);
  backdrop-filter: blur(12px);
}

.ec-hero-promo strong,
.ec-hero-promo span {
  display: block;
  line-height: 1.05;
}

.ec-hero-promo strong {
  font-family: Impact, "Arial Black", "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 6vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ec-hero-promo span {
  color: var(--ec-muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.ec-notice.has-no-hero-promo {
  min-height: 356px;
}

.ec-notice.has-no-hero-promo .ec-hero-stage {
  bottom: 12px;
  height: 198px;
}

.ec-notice.has-no-hero-promo .ec-hero-pop {
  max-height: 205px;
}

.ec-hero-stage {
  position: absolute;
  z-index: 1;
  left: 10px;
  right: 10px;
  bottom: 8px;
  display: grid;
  place-items: end center;
  height: 220px;
  pointer-events: none;
}

.ec-hero-pop {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 360px);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(28, 28, 28, 0.16));
  animation: ecHeroFloat 4.8s ease-in-out infinite;
}

.ec-hero-pop-logo {
  width: 180px;
  padding: 18px;
  border-radius: 32px;
  background: #fff;
}

@keyframes ecHeroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ec-hero-pop {
    animation: none;
  }
}

.ec-loyalty {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 12px 0 22px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--ec-border);
  box-shadow: 0 10px 28px rgba(6, 78, 59, 0.08);
}

.ec-loyalty-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--ec-primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.ec-loyalty strong,
.ec-loyalty span {
  display: block;
}

.ec-loyalty strong {
  font-size: 0.92rem;
}

.ec-loyalty span {
  color: var(--ec-muted);
  font-size: 0.76rem;
  margin-top: 3px;
  line-height: 1.45;
}

.ec-loyalty-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--ec-primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.ec-loyalty-check {
  margin: -8px 0 22px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--ec-border);
}

.ec-loyalty-check h2 {
  margin: 0;
  font-size: 1rem;
}

.ec-loyalty-check p {
  margin: 6px 0 12px;
  color: var(--ec-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.ec-loyalty-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.ec-loyalty-form input {
  min-width: 0;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
}

.ec-loyalty-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--ec-primary);
  font-weight: 800;
}

.ec-loyalty-result {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  color: var(--ec-primary-dark);
  background: color-mix(in srgb, var(--ec-accent) 22%, white);
  font-size: 0.82rem;
}

.ec-loyalty-result[hidden] {
  display: none;
}

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

.ec-menu-section {
  margin-top: 24px;
  scroll-margin-top: 88px;
}

.ec-menu-section.is-revealed {
  animation: ecMenuReveal 360ms ease both;
}

@keyframes ecMenuReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ec-category-overview {
  margin-top: 24px;
}

.ec-category-grid {
  display: grid;
  gap: 12px;
}

.ec-category-group {
  display: grid;
  gap: 10px;
}

.ec-category-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 168px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  text-align: left;
  background: var(--ec-primary-dark);
  box-shadow: 0 14px 32px rgba(6, 78, 59, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ec-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 78, 59, 0.16);
}

.ec-category-card.is-tapped {
  transform: scale(0.96);
  box-shadow: 0 8px 18px rgba(6, 78, 59, 0.18);
}

.ec-category-card[aria-expanded="true"] {
  box-shadow: 0 18px 42px rgba(6, 78, 59, 0.22);
}

.ec-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.12), rgba(6, 78, 59, 0.88));
}

.ec-category-card img,
.ec-category-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ec-category-card img {
  object-fit: cover;
  transition: transform 420ms ease;
}

.ec-category-card:hover img,
.ec-category-card.is-tapped img {
  transform: scale(1.06);
}

.ec-category-fallback {
  display: grid;
  place-items: center;
  color: rgba(255, 247, 232, 0.28);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 7rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 168, 79, 0.22), transparent 12rem),
    var(--ec-primary-dark);
}

.ec-category-card strong,
.ec-category-card small {
  position: relative;
  z-index: 1;
}

.ec-category-card strong {
  font-size: 1.25rem;
}

.ec-category-card small {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.ec-menu-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin: 18px auto 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #fff;
  background: var(--ec-primary-dark);
  box-shadow: 0 14px 30px rgba(6, 78, 59, 0.26);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.ec-section-head h2 {
  margin: 0;
  font-size: 1.08rem;
}

.ec-section-head span {
  color: var(--ec-muted);
  font-size: 0.74rem;
}

.ec-menu-list {
  display: grid;
  gap: 10px;
}

.ec-card {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 12px;
  align-items: center;
  min-height: 142px;
  padding: 13px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--ec-surface) 88%, transparent);
  border: 1px solid var(--ec-border);
  box-shadow: 0 12px 26px rgba(6, 78, 59, 0.08);
}

.ec-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.ec-card h3 {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.2;
}

.ec-card-title-row span {
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--ec-primary-dark);
  background: color-mix(in srgb, var(--ec-accent) 35%, white);
  font-size: 0.64rem;
  font-weight: 800;
}

.ec-card p {
  margin: 5px 0 0;
  color: var(--ec-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ec-card small {
  display: block;
  color: color-mix(in srgb, var(--ec-muted) 78%, white);
  font-size: 0.68rem;
  margin-top: 5px;
}

.ec-options {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 11px;
}

.ec-option {
  border: 0;
  border-radius: 8px;
  padding: 7px 9px;
  min-width: 72px;
  color: #fff;
  background: var(--ec-primary);
  box-shadow: 0 8px 16px rgba(4, 120, 87, 0.22);
  transition: transform 150ms ease, background 150ms ease;
}

.ec-option:hover {
  transform: translateY(-1px);
  background: var(--ec-primary-dark);
}

.ec-option:active {
  transform: scale(0.97);
}

.ec-option span,
.ec-option strong {
  display: block;
  line-height: 1.1;
}

.ec-option span {
  font-size: 0.64rem;
  opacity: 0.8;
}

.ec-option strong {
  margin-top: 3px;
  font-size: 0.78rem;
}

.ec-card-media {
  position: relative;
  align-self: stretch;
  min-height: 116px;
}

.ec-card-media img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5ead8;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ec-card-media b {
  position: absolute;
  inset: auto 7px 7px;
  text-align: center;
  border-radius: 999px;
  padding: 6px 8px;
  color: #fff;
  background: rgba(23, 59, 47, 0.82);
  font-size: 0.68rem;
}

.ec-card.is-sold-out {
  filter: grayscale(0.5);
  opacity: 0.72;
}

.ec-card.is-sold-out button {
  cursor: not-allowed;
  opacity: 0.48;
}

.ec-beans {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.28), transparent 12rem),
    linear-gradient(145deg, var(--ec-primary-dark), #09291f);
  box-shadow: var(--ec-shadow);
}

.ec-highlights {
  margin-top: 30px;
}

.ec-highlight-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ec-surface);
  box-shadow: var(--ec-shadow);
  border: 1px solid var(--ec-border);
}

.ec-highlight-track {
  display: flex;
  touch-action: pan-y;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ec-highlight-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 430px;
  overflow: hidden;
  background: #fff;
}

.ec-highlight-slide img,
.ec-highlight-placeholder {
  width: 100%;
  height: 340px;
}

.ec-highlight-slide img {
  display: block;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(0.92);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
}

.ec-highlight-slide.is-active img {
  transform: scale(1);
  filter: saturate(1.04);
}

.ec-highlight-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 247, 232, 0.72);
  background:
    radial-gradient(circle at 80% 10%, rgba(214, 168, 79, 0.22), transparent 12rem),
    var(--ec-primary-dark);
  font-weight: 900;
}

.ec-highlight-copy {
  position: relative;
  z-index: 1;
  min-height: 116px;
  padding: 16px;
  color: var(--ec-ink);
  background: #fff;
  transform: translateY(8px);
  opacity: 0.72;
  transition: transform 520ms ease, opacity 520ms ease;
}

.ec-highlight-slide.is-active .ec-highlight-copy {
  transform: translateY(0);
  opacity: 1;
}

.ec-highlight-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.ec-highlight-copy p {
  margin: 8px 0 0;
  max-width: 350px;
  color: var(--ec-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.ec-highlight-controls {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
}

.ec-highlight-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 78, 59, 0.54);
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
  line-height: 1;
}

.ec-highlight-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.ec-highlight-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.24);
  transition: width 180ms ease, background 180ms ease;
}

.ec-highlight-dots button.is-active {
  width: 22px;
  background: var(--ec-primary);
}

.ec-beans::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.ec-beans-head {
  position: relative;
  z-index: 1;
}

.ec-beans-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: var(--ec-accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ec-beans-head h2 {
  margin: 12px 0 0;
  max-width: 330px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.ec-bean-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ec-bean-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: ecBeanFloat 620ms ease both;
}

.ec-bean-card:nth-child(2) {
  animation-delay: 90ms;
}

.ec-bean-card:nth-child(3) {
  animation-delay: 180ms;
}

.ec-bean-image {
  min-height: 118px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.12);
}

.ec-bean-image img,
.ec-bean-placeholder {
  width: 100%;
  height: 100%;
  min-height: 118px;
}

.ec-bean-image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.ec-bean-card:hover img {
  transform: scale(1.06);
}

.ec-bean-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.ec-bean-copy h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.ec-bean-copy p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.35;
}

.ec-bean-copy b {
  color: #fff;
}

@keyframes ecBeanFloat {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ec-cart {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: min(calc(100% - 28px), 452px);
  padding: 9px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(6, 78, 59, 0.2);
  backdrop-filter: blur(18px);
}

.ec-cart-summary,
.ec-checkout,
.ec-send {
  border: 0;
  border-radius: 8px;
}

.ec-cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  color: var(--ec-ink);
  background: #fff;
}

.ec-cart-summary span {
  color: var(--ec-muted);
  font-size: 0.8rem;
}

.ec-cart-summary b {
  color: var(--ec-primary);
}

.ec-checkout,
.ec-send {
  padding: 0 16px;
  color: #fff;
  background: var(--ec-primary);
  font-weight: 800;
}

.ec-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ec-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  background: rgba(12, 33, 26, 0.45);
  overscroll-behavior: contain;
  overflow: hidden;
}

.ec-modal[hidden] {
  display: none;
}

.ec-voucher-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: end center;
  padding: 14px;
  background: rgba(24, 24, 24, 0.24);
  backdrop-filter: blur(10px);
  overscroll-behavior: contain;
  overflow: hidden;
}

.ec-voucher-modal[hidden] {
  display: none;
}

.ec-voucher-panel {
  width: min(100%, 480px);
  padding: 20px;
  border-radius: 8px 8px 0 0;
  color: #242424;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 -18px 40px rgba(28, 28, 28, 0.12);
  animation: ecVoucherEnter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  touch-action: pan-y;
}

@keyframes ecVoucherEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ec-voucher-panel span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #2b2b2b;
  background: #f3f0e8;
  font-size: 0.7rem;
  font-weight: 900;
}

.ec-voucher-panel h2 {
  margin: 12px 0 0;
  font-family: Impact, "Arial Black", "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 12vw, 3.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ec-voucher-panel p {
  margin: 12px 0 0;
  color: var(--ec-muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.ec-voucher-panel small {
  display: block;
  margin-top: 10px;
  color: #2b2b2b;
  font-weight: 800;
}

.ec-voucher-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}

.ec-voucher-actions button {
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
}

.ec-voucher-actions button:first-child {
  border: 0;
  color: #fff;
  background: var(--ec-primary);
}

.ec-voucher-actions button:first-child:disabled {
  color: var(--ec-muted);
  background: #eeebe5;
  cursor: not-allowed;
}

.ec-voucher-actions button:nth-child(2),
.ec-voucher-actions button:last-child {
  color: #242424;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.12);
}

.ec-voucher-actions button[hidden] {
  display: none;
}

.ec-story-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 79, 0.24), transparent 18rem),
    rgba(12, 33, 26, 0.62);
  backdrop-filter: blur(12px);
}

.ec-story-modal[hidden] {
  display: none;
}

.ec-story-panel {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 820px);
  overflow: auto;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(6, 78, 59, 0.96), rgba(4, 120, 87, 0.9)),
    var(--ec-primary-dark);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  animation: ecStoryEnter 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ecStoryEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ec-story-exit {
  position: sticky;
  top: 12px;
  z-index: 3;
  float: right;
  min-height: 38px;
  margin: 12px 12px -50px 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 232, 0.44);
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: rgba(255, 247, 232, 0.92);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
}

.ec-story-intro {
  position: relative;
  padding: 58px 20px 18px;
}

.ec-story-intro::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 247, 232, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ec-story-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: var(--ec-accent);
  font-size: 0.7rem;
  font-weight: 900;
}

.ec-story-intro h2 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: 330px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 9vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.ec-story-intro p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ec-story-carousel {
  overflow: hidden;
  padding: 0 12px 16px;
}

.ec-story-track {
  display: flex;
  border-radius: 8px;
  touch-action: pan-y;
  transition: transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ec-story-slide {
  flex: 0 0 100%;
  background: var(--ec-cream);
  color: var(--ec-ink);
  overflow: hidden;
}

.ec-story-slide img,
.ec-story-placeholder {
  display: block;
  width: 100%;
  height: 320px;
}

.ec-story-slide img {
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms ease;
}

.ec-story-slide.is-active img {
  transform: scale(1);
  filter: saturate(1.04);
}

.ec-story-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 247, 232, 0.74);
  background: var(--ec-primary-dark);
  font-weight: 900;
}

.ec-story-slide div {
  padding: 16px;
}

.ec-story-slide h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.ec-story-slide p {
  margin: 8px 0 0;
  color: var(--ec-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.ec-story-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.ec-story-controls > button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 247, 232, 0.4);
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: var(--ec-cream);
  font-size: 1.5rem;
  line-height: 1;
}

.ec-story-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.ec-story-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.35);
  transition: width 180ms ease, background 180ms ease;
}

.ec-story-dots button.is-active {
  width: 22px;
  background: var(--ec-accent);
}

.ec-modal-panel {
  position: relative;
  width: min(100%, 480px);
  max-height: 88vh;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-radius: 8px 8px 0 0;
  padding: 22px 18px 18px;
  background: var(--ec-cream);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.2);
}

.ec-modal-panel h2 {
  margin: 0 58px 14px 0;
}

.ec-close {
  position: fixed;
  top: max(14px, calc(12vh + 10px));
  right: max(14px, calc((100vw - 480px) / 2 + 14px));
  z-index: 75;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ec-ink);
  box-shadow: 0 14px 30px rgba(28, 28, 28, 0.18);
  font-size: 1.65rem;
  line-height: 1;
}

.ec-cart-items {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.ec-cart-group {
  display: grid;
  gap: 7px;
}

.ec-cart-line {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ec-border);
}

.ec-cart-line.is-claimed {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--ec-accent) 70%, white);
  background: color-mix(in srgb, var(--ec-accent) 16%, white);
}

.ec-cart-line.is-voucher {
  border-color: rgba(28, 28, 28, 0.18);
  background: #f8fafc;
}

.ec-cart-line.is-claimed strong,
.ec-cart-line.is-claimed small {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ec-accent);
}

.ec-cart-line img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}

.ec-cart-line strong,
.ec-cart-line small {
  display: block;
}

.ec-cart-line small {
  color: var(--ec-muted);
  margin-top: 3px;
}

.ec-remove {
  border: 0;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  color: #b42318;
  background: #fee4e2;
}

.ec-cart-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.ec-cart-actions button {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: var(--ec-primary-dark);
  background: color-mix(in srgb, var(--ec-primary) 12%, white);
  font-weight: 900;
}

.ec-cart-actions span {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
}

.ec-cart-actions .ec-unclaim {
  color: #7a4f08;
  background: color-mix(in srgb, var(--ec-accent) 28%, white);
  font-size: 0.72rem;
}

.ec-claim-line {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border: 1px dashed var(--ec-accent);
  border-radius: 8px;
  background: #fff;
}

.ec-voucher-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 8px;
  background: #fff;
}

.ec-voucher-pick input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ec-primary);
}

.ec-voucher-pick span {
  color: #242424;
  font-size: 0.76rem;
  font-weight: 850;
}

.ec-claim-line span {
  flex: 1;
  color: var(--ec-primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.ec-claim-line button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ec-primary);
  font-weight: 900;
}

.ec-claim-line b {
  min-width: 20px;
  text-align: center;
}

.ec-cart-totals {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 8px;
  color: var(--ec-ink);
  background: #fff;
  border: 1px solid var(--ec-border);
}

.ec-cart-totals span,
.ec-cart-totals strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ec-cart-totals span {
  color: var(--ec-muted);
  font-size: 0.82rem;
}

.ec-cart-totals strong {
  padding-top: 7px;
  border-top: 1px solid var(--ec-border);
  color: var(--ec-primary-dark);
}

.ec-modal label {
  display: block;
  color: var(--ec-muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 10px;
}

.ec-modal input,
.ec-modal textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  padding: 12px;
  color: var(--ec-ink);
  background: #fff;
}

.ec-send,
.ec-clear-cart {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
}

.ec-clear-cart {
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: 8px;
  color: #8a1f15;
  background: #fff;
  font-weight: 800;
}

.ec-claim-reward {
  display: flex !important;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  background: #fff;
}

.ec-claim-reward input {
  width: auto;
  margin: 0;
}

.ec-claim-reward span {
  color: var(--ec-ink);
  font-size: 0.82rem;
}

.ec-flavour-title {
  margin: -6px 0 14px;
  color: var(--ec-muted);
  font-size: 0.9rem;
}

.ec-flavour-list {
  display: grid;
  gap: 9px;
}

.ec-flavour-choice {
  min-height: 48px;
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  color: var(--ec-ink);
  background: #fff;
  font-weight: 800;
  text-align: left;
  padding: 0 14px;
}

.ec-flavour-choice:hover {
  color: #fff;
  background: var(--ec-primary);
}

.ec-footer {
  padding: 20px 14px 130px;
  color: var(--ec-muted);
  text-align: center;
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .ec-shell {
    padding-top: 22px;
  }

  .ec-card {
    grid-template-columns: 1fr 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Final clean minimalist layer */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f3 58%, #ffffff 100%);
}

.ec-header {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(30, 30, 30, 0.07);
}

.ec-brand img {
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(23, 59, 47, 0.1);
}

.ec-shell {
  padding: 16px 14px 22px;
}

.ec-loyalty-check,
.ec-card,
.ec-highlight-frame,
.ec-cart-summary,
.ec-cart-line,
.ec-cart-totals,
.ec-modal-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 10px 26px rgba(28, 28, 28, 0.045);
}

.ec-loyalty-check {
  margin: 16px 0 24px;
}

.ec-loyalty-form input,
.ec-modal input,
.ec-modal textarea {
  background: #fff;
  border-color: rgba(28, 28, 28, 0.12);
}

.ec-option,
.ec-loyalty-form button,
.ec-checkout,
.ec-send {
  box-shadow: none;
}

.ec-section-head {
  margin: 30px 2px 12px;
}

.ec-section-head h2 {
  font-size: 1.02rem;
}

.ec-category-grid,
.ec-menu-list,
.ec-bean-gallery {
  gap: 12px;
}

.ec-category-card {
  min-height: 138px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 12px 26px rgba(28, 28, 28, 0.065);
}

.ec-category-card::after {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.06), rgba(24, 24, 24, 0.58));
}

.ec-category-card[aria-expanded="true"] {
  box-shadow: 0 14px 30px rgba(28, 28, 28, 0.08);
}

.ec-menu-section {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.ec-card {
  grid-template-columns: 1fr 96px;
  min-height: 132px;
  padding: 12px;
}

.ec-card h3 {
  font-size: 0.96rem;
}

.ec-card p {
  font-size: 0.76rem;
}

.ec-card-title-row span,
.ec-kicker,
.ec-beans-head span {
  color: #2b2b2b;
  background: #f3f0e8;
}

.ec-option {
  border: 1px solid rgba(4, 120, 87, 0.12);
}

.ec-card-media,
.ec-card-media img {
  min-height: 104px;
}

.ec-beans {
  margin-top: 32px;
  padding: 18px;
  color: var(--ec-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 243, 0.9)),
    var(--ec-surface);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.05);
}

.ec-beans::before {
  border-color: rgba(28, 28, 28, 0.05);
}

.ec-beans-head h2 {
  color: var(--ec-ink);
  font-size: 1.7rem;
}

.ec-bean-card {
  background: #fff;
  border-color: rgba(28, 28, 28, 0.08);
  backdrop-filter: none;
}

.ec-bean-placeholder,
.ec-bean-copy p {
  color: var(--ec-muted);
}

.ec-bean-copy b {
  color: var(--ec-primary-dark);
}

.ec-highlight-frame {
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.05);
}

.ec-highlight-slide {
  min-height: 390px;
}

.ec-highlight-slide img,
.ec-highlight-placeholder {
  height: 292px;
}

.ec-highlight-copy {
  min-height: 104px;
  background: #fff;
}

.ec-highlight-copy h3 {
  font-size: 1.35rem;
}

.ec-highlight-controls button {
  color: #252525;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(28, 28, 28, 0.1);
}

.ec-menu-back {
  color: #252525;
  background: #fff;
  border-color: rgba(28, 28, 28, 0.12);
  box-shadow: none;
}

.ec-cart {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(28, 28, 28, 0.08);
  box-shadow: 0 16px 36px rgba(28, 28, 28, 0.1);
}

@media (min-width: 760px) {
  .ec-card {
    grid-template-columns: 1fr 104px;
  }
}

.ec-brand {
  gap: 10px;
  padding: 4px 0;
}

.ec-brand img {
  width: 56px;
  height: 56px;
  padding: 7px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 59, 47, 0.08);
}

.ec-brand strong {
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.ec-brand small {
  display: none;
  font-size: 0.7rem;
  max-width: 190px;
}

.ec-checkout-phone {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.ec-checkout-phone input {
  min-width: 0;
}

.ec-checkout-phone button {
  height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.ec-checkout-loyalty {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: #4b5563;
  font-size: 0.84rem;
  line-height: 1.35;
}

.ec-checkout-loyalty[hidden] {
  display: none;
}

.ec-checkout-loyalty strong {
  color: #111827;
  font-size: 0.95rem;
}

.ec-checkout-loyalty span {
  display: block;
}

.ec-soft-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.ec-soft-modal[hidden] {
  display: none;
}

.ec-soft-panel {
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(28, 28, 28, 0.09);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  text-align: center;
}

.ec-soft-panel h2 {
  margin: 0;
  color: #111827;
  font-size: 1.35rem;
  line-height: 1.1;
}

.ec-soft-panel p {
  margin: 10px 0 18px;
  color: #4b5563;
  line-height: 1.45;
}

.ec-soft-panel button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.ec-option.is-brewsday {
  background: #111827;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.16);
}

.ec-option.is-brewsday::after {
  content: "Brewsday";
  display: block;
  margin-top: 5px;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f8d77b;
}

.ec-closed-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.ec-closed-overlay[hidden] {
  display: none;
}

.ec-closed-card {
  width: min(100%, 420px);
  padding: 30px;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  text-align: center;
}

.ec-closed-card span {
  display: block;
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ec-closed-card h2 {
  margin: 0;
  color: #111827;
  font-size: 2rem;
  line-height: 1.05;
}

.ec-closed-card p {
  margin: 14px 0 0;
  color: #4b5563;
  line-height: 1.55;
}
