:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --soft: #eef6ff;
  --soft-2: #f8fbff;
  --line: #d9e3ee;
  --line-strong: #b7c7d8;
  --text: #092042;
  --muted: #5d7086;
  --blue: #0068d9;
  --blue-2: #00a7df;
  --blue-soft: #e7f3ff;
  --red: #d91f2a;
  --green: #0a8f55;
  --shadow: 0 10px 28px rgba(8, 31, 66, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.ejp-lightbox-open { overflow: hidden; }
body.ejp-body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }

.ejp-image-zoom {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}
.ejp-image-zoom:focus-visible {
  outline: 3px solid rgba(0, 153, 240, .35);
  outline-offset: 4px;
  border-radius: 8px;
}
.ejp-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 14, 31, .78);
  backdrop-filter: blur(10px);
}
.ejp-image-lightbox[hidden] { display: none; }
.ejp-image-lightbox__panel {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(92vw, 760px);
  max-height: 88vh;
}
.ejp-image-lightbox__image {
  width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.ejp-image-lightbox__caption {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.ejp-image-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 20, 44, .9);
  cursor: pointer;
}

.ejp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 10px clamp(14px, 4vw, 48px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.ejp-brand {
  display: grid;
  gap: 1px;
  min-width: 138px;
  color: var(--text);
  font-weight: 900;
}
.ejp-brand span { font-size: 15px; }
.ejp-brand small { color: var(--muted); font-size: 11px; }
.ejp-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.ejp-nav a:hover,
.ejp-header-line:hover { color: var(--blue); }
.ejp-header-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #bfe4ff;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}
.ejp-site-main { min-height: 72vh; }
.ejp-site-main > .ejp-trust-strip,
.ejp-site-main > .ejp-hero,
.ejp-site-main > .ejp-section,
.ejp-site-main > .ejp-product-page,
.ejp-site-main > .ejp-woo,
.ejp-site-main > .ejp-static {
  width: min(1120px, calc(100% - 28px));
  margin-inline: auto;
}

.ejp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 14px;
  border-radius: 8px;
  background: #062650;
  color: #fff;
}
.ejp-trust-strip span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-right: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 900;
}
.ejp-trust-strip span:last-child { border-right: 0; }

.ejp-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .8fr);
  align-items: center;
  gap: clamp(22px, 5vw, 54px);
  padding: clamp(24px, 4.2vw, 54px) clamp(14px, 4vw, 42px) clamp(18px, 3vw, 34px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.ejp-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.ejp-hero h1,
.ejp-section h1,
.ejp-section h2,
.ejp-product-page h1 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}
.ejp-hero h1 {
  max-width: 560px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
}
.ejp-hero p,
.ejp-section p,
.ejp-product-page p {
  color: var(--muted);
  line-height: 1.75;
}
.ejp-hero p { max-width: 540px; font-size: 16px; line-height: 1.65; }
.ejp-hero__visual {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f1f8ff);
}
.ejp-hero__visual-link {
  display: grid;
  place-items: center;
  width: 100%;
  color: inherit;
}
.ejp-hero__visual-link:focus-visible {
  outline: 3px solid rgba(0, 153, 240, .35);
  outline-offset: 4px;
}
.ejp-hero__visual img {
  width: min(420px, 100%);
  margin: auto;
  filter: drop-shadow(0 18px 28px rgba(6, 104, 217, .12));
}
.ejp-actions,
.ejp-section__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ejp-actions { margin-top: 22px; }
.ejp-btn,
.ejp-rate-grid a,
.ejp-rate-grid button,
.button,
button.button,
input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}
.ejp-btn--primary,
.button,
button.button,
input.button {
  color: #fff;
  background: linear-gradient(180deg, #08b7e8, var(--blue));
  border-color: #008de5;
}
.ejp-btn--ghost {
  color: var(--blue);
  background: var(--surface);
  border-color: #bfe4ff;
}
.ejp-btn[disabled] { opacity: .62; cursor: wait; }
.ejp-price-chips,
.ejp-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ejp-price-chips span,
.ejp-product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #cfe5fb;
  border-radius: 8px;
  padding: 6px 10px;
  color: #074b98;
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}

.ejp-section {
  padding: clamp(24px, 4vw, 46px) clamp(14px, 4vw, 42px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.ejp-section h1 { font-size: clamp(30px, 4vw, 50px); }
.ejp-section h2 { font-size: clamp(22px, 3vw, 34px); }
.ejp-home-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f9fcff;
}
.ejp-home-intro strong { font-size: 20px; }
.ejp-home-intro p { margin: 6px 0 0; }
.ejp-home-intro a {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 900;
}
.ejp-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 16px;
  align-items: start;
}
.ejp-product-card,
.ejp-product-panel,
.ejp-group-buy,
.ejp-delivery,
.ejp-news article,
.ejp-static,
.ejp-woo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.ejp-product-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}
.ejp-card-head {
  display: grid;
  gap: 6px;
}
.ejp-card-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.ejp-price {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 900;
}
.ejp-price small { color: var(--muted); font-size: 14px; }
.ejp-unit-price {
  margin: 0;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}
.ejp-unit-price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.ejp-card-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}
.ejp-card-media img {
  width: min(260px, 72%);
  margin: 0 auto;
  object-fit: contain;
}
.ejp-card-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ejp-flavor-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}
.ejp-flavor-showcase figure {
  display: grid;
  gap: 8px;
  margin: 0;
  text-align: center;
}
.ejp-flavor-showcase img {
  width: 70px;
  height: 136px;
  margin: auto;
  object-fit: contain;
}
.ejp-flavor-showcase figcaption {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}
.ejp-section-head {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 18px;
}
.ejp-section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
}
.ejp-section-head p {
  margin: 0;
  color: var(--muted);
}
.ejp-flavor-details {
  background:
    linear-gradient(180deg, rgba(238, 249, 255, .72), rgba(255, 255, 255, 0)),
    var(--surface);
}
.ejp-flavor-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ejp-flavor-detail-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8,31,66,.07);
}
.ejp-flavor-detail-card--jasmine-green-tea { border-color: #d7c691; background: #fffdf5; }
.ejp-flavor-detail-card--peach-ice { border-color: #ffc6d7; background: #fff8fb; }
.ejp-flavor-detail-card--ion-ice { border-color: #a8e4f4; background: #f5fcff; }
.ejp-flavor-detail-card--grape-cherry { border-color: #cbb4ff; background: #fbf8ff; }
.ejp-flavor-detail-card--pineapple-ice { border-color: #ffe08b; background: #fffdf2; }
.ejp-flavor-detail-card--shine-muscat { border-color: #a9e8cf; background: #f5fffb; }
.ejp-flavor-detail-media {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.ejp-flavor-detail-media img {
  width: 90px;
  height: 150px;
  object-fit: contain;
}
.ejp-flavor-detail-body {
  display: grid;
  gap: 8px;
  align-content: start;
}
.ejp-flavor-code {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.ejp-flavor-detail-body h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}
.ejp-flavor-detail-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.ejp-flavor-detail-body .ejp-flavor-tagline {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.ejp-flavor-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ejp-flavor-notes li,
.ejp-flavor-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #bfe4ff;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}
.ejp-flavor-meta {
  display: grid;
  gap: 6px;
}
.ejp-flavor-meta span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.ejp-flavor-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ejp-multi-flavor-form,
.ejp-mail-form,
.ejp-contact-form,
.ejp-cart-form {
  display: grid;
  gap: 12px;
}
.ejp-multi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ejp-multi-head strong { font-size: 18px; }
.ejp-multi-head small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.ejp-required {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid #ffb7bd;
  border-radius: 7px;
  padding: 3px 8px;
  color: var(--red);
  background: #fff3f4;
  font-size: 12px;
  font-weight: 900;
}
.ejp-multi-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.ejp-multi-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.ejp-multi-row:last-child { border-bottom: 0; }
.ejp-multi-row img {
  width: 38px;
  height: 58px;
  object-fit: contain;
}
.ejp-multi-row strong {
  display: block;
  font-size: 14px;
}
.ejp-multi-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.ejp-qty-stepper {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
}
.ejp-qty-stepper button {
  min-height: 38px;
  border: 0;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.ejp-qty-stepper input {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-inline: 1px solid var(--line);
  padding: 0;
  color: var(--text);
  text-align: center;
  font-weight: 900;
  -moz-appearance: textfield;
}
.ejp-qty-stepper input::-webkit-outer-spin-button,
.ejp-qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ejp-purchase-summary {
  display: grid;
  gap: 8px;
  border: 1px solid #bfe4ff;
  border-radius: 8px;
  padding: 12px;
  color: var(--text);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.ejp-purchase-summary span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.ejp-purchase-summary strong { font-size: 18px; }
.ejp-form-message {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.ejp-mail-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.ejp-mail-form label,
.ejp-cart-form label,
.ejp-group-form label,
.ejp-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.ejp-mail-form input,
.ejp-cart-form input,
.ejp-cart-form select,
.ejp-group-form select,
.ejp-contact-form input,
.ejp-contact-form textarea,
.input-text,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
}
.ejp-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: center;
  border: 1px solid #ffc7cc;
  background: #fff7f8;
}
.ejp-band .ejp-kicker,
.ejp-band h2 { color: var(--red); }
.ejp-contact-form {
  max-width: 620px;
  margin-top: 18px;
}
.ejp-contact-form textarea { resize: vertical; }
.ejp-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.55;
}
.ejp-consent input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}
.ejp-consent a { color: var(--blue); text-decoration: underline; }
.ejp-mail-form p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.ejp-rate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.ejp-rate-grid a,
.ejp-rate-grid button {
  display: grid;
  gap: 6px;
  width: 100%;
  color: var(--text);
  background: #fff;
}
.ejp-rate-grid span { color: var(--blue); font-size: 22px; }
.ejp-rate-grid small { color: var(--green); }
.ejp-region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.ejp-region-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}
.ejp-region-grid button.is-selected {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}
.ejp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ejp-news article { padding: 18px; }
.ejp-news h3 { margin: 0; }

.ejp-product-page {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 56px) clamp(14px, 4vw, 42px);
  background: var(--surface);
}
.ejp-product-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--soft-2);
}
.ejp-product-media img { margin: auto; }
.ejp-product-main-image {
  width: min(420px, 100%);
  object-fit: contain;
}
.ejp-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.ejp-product-gallery figure {
  display: grid;
  gap: 6px;
  min-height: 120px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 6px;
  background: rgba(255,255,255,.78);
  text-align: center;
}
.ejp-product-gallery img {
  width: 48px;
  height: 76px;
  object-fit: contain;
}
.ejp-product-gallery figcaption {
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}
.ejp-product-panel { padding: clamp(18px, 4vw, 36px); }
.ejp-product-panel h1 { font-size: clamp(30px, 4vw, 48px); line-height: 1.12; }
.ejp-cart-form {
  grid-template-columns: 1fr 110px;
  gap: 12px;
  margin-top: 18px;
}
.ejp-product-card .ejp-cart-form { margin-top: auto; }
.ejp-cart-form .ejp-btn { grid-column: 1 / -1; width: 100%; }
.ejp-microcopy {
  color: var(--muted);
  font-size: 12px;
}

.ejp-site-footer {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  width: min(1120px, calc(100% - 28px));
  margin-inline: auto;
  padding: 32px clamp(14px, 5vw, 68px) 96px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.ejp-site-footer p { color: var(--muted); max-width: 520px; }
.ejp-footer-mail {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}
.ejp-footer-mail a { color: var(--blue); }
.ejp-site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.ejp-site-footer a { color: var(--muted); font-size: 13px; }
.ejp-mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(148px, .7fr);
  align-items: center;
  gap: 10px;
  border: 1px solid #bfe4ff;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(8,31,66,.18);
  backdrop-filter: blur(18px);
}
.ejp-mobile-bar small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.ejp-mobile-bar strong {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.ejp-mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #08b7e8, var(--blue));
  font-weight: 900;
}
.woocommerce-cart .ejp-mobile-bar,
.woocommerce-checkout .ejp-mobile-bar { display: none !important; }

.ejp-age-gate[hidden] { display: none; }
.ejp-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 24, 46, .58);
  backdrop-filter: blur(12px);
}
.ejp-age-gate__panel {
  width: min(460px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 5vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}
.ejp-age-gate__panel h2 {
  margin: 0;
  font-size: 30px;
}
.ejp-age-gate__panel p {
  color: var(--muted);
  line-height: 1.75;
}
.ejp-age-gate__panel .ejp-btn {
  width: 100%;
  margin-top: 10px;
}

.woocommerce .quantity .qty { color: #111; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--blue);
  background: #fff;
  color: var(--text);
}
.woocommerce-form-coupon-toggle,
form.checkout_coupon,
.woocommerce-cart table.cart td.actions .coupon {
  display: none !important;
}
.ejp-checkout-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #bfe4ff;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--text);
  font-weight: 700;
}
.woocommerce-checkout .woocommerce {
  width: min(760px, calc(100% - 28px));
  margin-inline: auto;
}
.woocommerce-checkout form.checkout,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}
.woocommerce-checkout .col2-set .col-2,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  display: none;
}
.woocommerce-checkout #billing_country_field {
  display: none !important;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}
.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  float: none;
  clear: both;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 12px;
  padding: 0;
}
.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  max-width: 560px;
  min-height: 50px;
  margin-inline: auto;
  box-sizing: border-box;
}
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.35;
}
.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}
.woocommerce-checkout .select2-container .select2-selection__rendered {
  width: 100%;
  padding: 0 38px 0 14px;
  color: var(--text);
  line-height: 50px;
}
.woocommerce-checkout .select2-container .select2-selection__arrow {
  top: 12px;
  right: 10px;
}
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row .select2,
.woocommerce-checkout .form-row .select2-container {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
.woocommerce-checkout .form-row .select2-container .select2-selection--single {
  max-width: 100% !important;
}
.woocommerce-checkout #order_review {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.woocommerce-checkout #payment {
  background: #fff;
}
.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  background: linear-gradient(180deg, #08b7e8, var(--blue));
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .ejp-nav { display: none; }
  .ejp-hero,
  .ejp-product-grid,
  .ejp-band,
  .ejp-product-page,
  .ejp-site-footer {
    grid-template-columns: 1fr;
  }
  .ejp-news-grid,
  .ejp-rate-grid { grid-template-columns: 1fr; }
  .ejp-site-footer nav { justify-content: flex-start; }
  .ejp-mobile-bar { display: grid; }
}

@media (max-width: 560px) {
  .ejp-site-main > .ejp-trust-strip,
  .ejp-site-main > .ejp-hero,
  .ejp-site-main > .ejp-section,
  .ejp-site-main > .ejp-product-page,
  .ejp-site-main > .ejp-woo,
  .ejp-site-main > .ejp-static {
    width: 100%;
  }
  .ejp-site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding-inline: 14px;
  }
  .ejp-brand { min-width: 0; }
  .ejp-brand span { font-size: 13px; }
  .ejp-header-line {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .ejp-trust-strip {
    margin-top: 0;
    border-radius: 0;
  }
  .ejp-trust-strip span {
    min-height: 34px;
    font-size: 11px;
  }
  .ejp-hero {
    gap: 14px;
    padding: 18px 16px 14px;
  }
  .ejp-hero__visual {
    order: 0;
    padding: 8px;
  }
  .ejp-hero__visual img { width: min(250px, 88%); }
  .ejp-kicker { margin-bottom: 6px; }
  .ejp-hero h1 {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.08;
  }
  .ejp-hero p {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.6;
  }
  .ejp-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .ejp-actions .ejp-btn--ghost { display: none; }
  .ejp-price-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
  }
  .ejp-price-chips span {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 11px;
  }
  .ejp-section {
    padding: 18px 16px;
  }
  .ejp-home-intro {
    align-items: flex-start;
    flex-direction: row;
    padding-block: 14px;
  }
  .ejp-home-intro strong { font-size: 17px; }
  .ejp-home-intro p {
    max-width: 230px;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.55;
  }
  .ejp-home-intro a {
    align-self: center;
    font-size: 13px;
  }
  .ejp-product-grid {
    gap: 12px;
  }
  .ejp-product-card {
    gap: 12px;
    padding: 16px;
  }
  .ejp-card-head h2 { font-size: 22px; }
  .ejp-price { font-size: 32px; }
  .ejp-product-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }
  .ejp-product-badges span {
    justify-content: center;
    min-height: 30px;
    padding: 5px 6px;
    font-size: 11px;
  }
  .ejp-flavor-showcase {
    display: none;
  }
  .ejp-section-head {
    gap: 5px;
    margin-bottom: 12px;
  }
  .ejp-section-head h2 {
    font-size: 23px;
  }
  .ejp-section-head p {
    font-size: 13px;
    line-height: 1.55;
  }
  .ejp-flavor-detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ejp-flavor-detail-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }
  .ejp-flavor-detail-media img {
    width: 58px;
    height: 96px;
  }
  .ejp-flavor-code {
    font-size: 10px;
  }
  .ejp-flavor-detail-body h3 {
    font-size: 17px;
  }
  .ejp-flavor-detail-body p {
    font-size: 12px;
    line-height: 1.55;
  }
  .ejp-flavor-detail-body .ejp-flavor-tagline {
    font-size: 13px;
  }
  .ejp-flavor-notes li,
  .ejp-flavor-specs span {
    min-height: 25px;
    padding: 3px 7px;
    font-size: 11px;
  }
  .ejp-flavor-meta span {
    font-size: 11px;
  }
  .ejp-multi-head strong { font-size: 16px; }
  .ejp-multi-head small,
  .ejp-required {
    display: none;
  }
  .ejp-multi-row {
    grid-template-columns: 38px minmax(0, 1fr) 104px;
    gap: 8px;
    min-height: 62px;
    padding: 8px;
  }
  .ejp-multi-row img {
    width: 34px;
    height: 48px;
  }
  .ejp-multi-row strong {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.25;
  }
  .ejp-multi-row small {
    display: none;
  }
  .ejp-qty-stepper {
    grid-column: auto;
    width: 104px;
    margin-top: 0;
    grid-template-columns: 30px 44px 30px;
  }
  .ejp-qty-stepper button,
  .ejp-qty-stepper input {
    min-height: 34px;
    font-size: 16px;
  }
  .ejp-purchase-summary {
    gap: 5px;
    padding: 10px;
    font-size: 12px;
  }
  .ejp-purchase-summary strong {
    font-size: 15px;
  }
  .ejp-mail-form,
  .ejp-cart-form {
    grid-template-columns: 1fr;
  }
  .ejp-band p { display: none; }
  .ejp-card-media { min-height: 150px; }
  .ejp-product-media {
    padding: 12px;
  }
  .ejp-product-main-image {
    width: min(310px, 100%);
  }
  .ejp-product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }
  .ejp-product-gallery figure {
    min-height: 96px;
    padding: 6px 4px;
  }
  .ejp-product-gallery img {
    width: 38px;
    height: 58px;
  }
  .ejp-product-gallery figcaption {
    overflow-wrap: anywhere;
    font-size: 10px;
  }
  .ejp-image-lightbox {
    padding: 14px;
  }
  .ejp-image-lightbox__panel {
    width: 94vw;
  }
  .ejp-image-lightbox__image {
    max-height: 74vh;
  }
  .ejp-image-lightbox__close {
    top: 8px;
    right: 8px;
  }
  .ejp-site-footer {
    padding-inline: 18px;
  }
  .ejp-mobile-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 8px;
  }
  .ejp-mobile-bar a { min-height: 44px; }
  .ejp-age-gate {
    padding: 14px;
    width: 100vw;
    box-sizing: border-box;
  }
  .ejp-age-gate__panel {
    width: min(280px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    box-sizing: border-box;
    padding: 18px;
  }
  .ejp-age-gate__panel h2 {
    font-size: 25px;
    line-height: 1.15;
  }
  .ejp-age-gate__panel p {
    font-size: 13px;
    line-height: 1.65;
  }
  .woocommerce-checkout .woocommerce {
    width: min(390px, calc(100% - 24px));
  }
  .woocommerce-checkout .ejp-checkout-note {
    margin: 0 auto 12px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.55;
  }
  .woocommerce-checkout form.checkout {
    display: grid;
    gap: 12px;
  }
  .woocommerce-checkout .woocommerce-billing-fields h3,
  .woocommerce-checkout #order_review_heading {
    font-size: 18px;
  }
  .woocommerce-checkout .form-row,
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .woocommerce-checkout .form-row label {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .woocommerce-checkout .input-text,
  .woocommerce-checkout select,
  .woocommerce-checkout textarea,
  .woocommerce-checkout .select2-container,
  .woocommerce-checkout .select2-container .select2-selection--single {
    max-width: 100%;
    min-height: 48px;
  }
  .woocommerce-checkout .input-text,
  .woocommerce-checkout select,
  .woocommerce-checkout textarea {
    padding: 12px;
  }
  .woocommerce-checkout #order_review {
    margin-top: 4px;
    padding: 12px;
  }
}
