.alp-coffee-standalone {
  margin: 0 !important;
  background: #f4f1e9;
}

.alp-coffee-store,
.alp-coffee-store * {
  box-sizing: border-box;
}

.alp-coffee-store {
  --coffee-ink: #13251f;
  --coffee-muted: #68746f;
  --coffee-paper: #f4f1e9;
  --coffee-card: #fff;
  --coffee-soft: #eeebe2;
  --coffee-line: rgba(18, 43, 34, 0.12);
  --coffee-shadow: 0 18px 55px rgba(11, 34, 26, 0.09);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--coffee-ink);
  background:
    radial-gradient(circle at 8% 20%, rgba(217, 183, 107, 0.13), transparent 25%),
    var(--coffee-paper);
  font-family: Vazirmatn, IRANSansX, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.alp-coffee-store a {
  color: inherit;
  text-decoration: none;
}

.alp-coffee-store img {
  display: block;
  max-width: 100%;
}

.alp-coffee-store [hidden] {
  display: none !important;
}

.alp-coffee-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.alp-coffee-header {
  position: sticky;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 27, 21, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.admin-bar .alp-coffee-header {
  top: 32px;
}

.alp-coffee-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.alp-coffee-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.alp-coffee-brand img {
  width: 46px;
  height: 46px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.alp-coffee-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.alp-coffee-brand strong {
  font-size: 16px;
  font-weight: 900;
}

.alp-coffee-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 2px;
}

.alp-coffee-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.alp-coffee-header nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.alp-coffee-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--alp-coffee-gold);
  transition: width 0.2s ease;
}

.alp-coffee-header nav a:hover,
.alp-coffee-header nav a:focus-visible {
  color: #fff;
}

.alp-coffee-header nav a:hover::after,
.alp-coffee-header nav a:focus-visible::after {
  width: 100%;
}

.alp-coffee-header__contact {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.alp-coffee-header__contact:hover,
.alp-coffee-header__contact:focus-visible {
  border-color: var(--alp-coffee-gold);
  background: rgba(217, 183, 107, 0.1);
}

.alp-coffee-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 30%, rgba(217, 183, 107, 0.24), transparent 28%),
    linear-gradient(132deg, #071712 0%, var(--alp-coffee-forest) 58%, #174236 100%);
}

.alp-coffee-hero::before,
.alp-coffee-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.alp-coffee-hero::before {
  top: 60px;
  left: -120px;
  width: 460px;
  height: 460px;
}

.alp-coffee-hero::after {
  top: -20px;
  left: -210px;
  width: 650px;
  height: 650px;
}

.alp-coffee-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: 68px;
  padding-block: 62px 70px;
}

.alp-coffee-eyebrow,
.alp-coffee-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--alp-coffee-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.alp-coffee-eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.alp-coffee-hero h1 {
  margin: 17px 0 18px;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -2.8px;
}

.alp-coffee-hero h1 em {
  color: var(--alp-coffee-gold);
  font-style: normal;
}

.alp-coffee-hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 2;
}

.alp-coffee-hero__actions,
.alp-coffee-actions,
.alp-coffee-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alp-coffee-hero__actions {
  margin-top: 28px;
}

.alp-coffee-button {
  display: inline-flex;
  min-height: 48px;
  justify-content: center;
  gap: 8px;
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.alp-coffee-button:hover,
.alp-coffee-button:focus-visible {
  transform: translateY(-2px);
}

.alp-coffee-button:focus-visible,
.alp-coffee-header a:focus-visible,
.alp-coffee-footer a:focus-visible {
  outline: 3px solid rgba(217, 183, 107, 0.45);
  outline-offset: 3px;
}

.alp-coffee-button--primary {
  color: #10231d !important;
  border-color: rgba(115, 82, 22, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    var(--alp-coffee-gold);
  box-shadow: 0 13px 28px rgba(168, 125, 40, 0.22);
}

.alp-coffee-button--primary:hover,
.alp-coffee-button--primary:focus-visible {
  box-shadow: 0 17px 34px rgba(168, 125, 40, 0.29);
}

.alp-coffee-button--outline {
  color: var(--coffee-ink);
  border-color: rgba(17, 43, 34, 0.2);
  background: transparent;
}

.alp-coffee-hero .alp-coffee-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.alp-coffee-status {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-top: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
  font-weight: 700;
}

.alp-coffee-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d29d;
  box-shadow: 0 0 0 5px rgba(103, 210, 157, 0.12);
}

.alp-coffee-hero__visual {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
}

.alp-coffee-hero__visual::after {
  position: absolute;
  right: 10%;
  bottom: 38px;
  width: 80%;
  height: 44px;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(24px);
}

.alp-coffee-hero__visual img {
  position: relative;
  z-index: 2;
  width: min(430px, 90%);
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.28));
}

.alp-coffee-hero__ring {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(217, 183, 107, 0.3);
  border-radius: 50%;
}

.alp-coffee-hero__note {
  position: absolute;
  z-index: 3;
  right: 2px;
  bottom: 34px;
  max-width: 92%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(4, 20, 15, 0.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
}

.alp-coffee-benefits {
  position: relative;
  z-index: 4;
  margin-top: -30px;
}

.alp-coffee-benefits .alp-coffee-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--coffee-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--coffee-shadow);
}

.alp-coffee-benefits article {
  display: grid;
  min-height: 104px;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  padding: 22px 25px;
  border-left: 1px solid var(--coffee-line);
  transition: background 0.2s ease;
}

.alp-coffee-benefits article:last-child {
  border-left: 0;
}

.alp-coffee-benefits article > span {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--alp-coffee-forest);
  font-family: Georgia, serif;
  font-size: 13px;
}

.alp-coffee-benefits strong,
.alp-coffee-benefits small {
  grid-column: 2;
}

.alp-coffee-benefits strong {
  align-self: end;
  font-size: 14px;
}

.alp-coffee-benefits small {
  align-self: start;
  color: var(--coffee-muted);
  font-size: 11px;
}

.alp-coffee-catalog {
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 90% 18%, rgba(217, 183, 107, 0.1), transparent 23%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42) 48%, transparent);
}

.alp-coffee-section-heading {
  max-width: 670px;
  margin: 0 auto 48px;
  text-align: center;
}

.alp-coffee-section-heading h2 {
  margin: 9px 0 11px;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.38;
  letter-spacing: -1.3px;
}

.alp-coffee-section-heading h2::after {
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  content: "";
  background: var(--alp-coffee-gold);
}

.alp-coffee-section-heading p {
  margin: 0;
  color: var(--coffee-muted);
  font-size: 14px;
}

.alp-coffee-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 26px;
}

.alp-coffee-product,
.alp-coffee-product--reverse {
  display: grid;
  scroll-margin-top: 98px;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 43, 34, 0.14);
  border-radius: 24px;
  background: var(--coffee-card);
  box-shadow: 0 18px 50px rgba(12, 35, 27, 0.075);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.alp-coffee-product--reverse .alp-coffee-product__visual {
  order: 0;
}

.alp-coffee-product__visual {
  position: relative;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 48%, #fff 0%, #f1eee5 61%, #e6e1d6 100%);
}

.alp-coffee-product__visual::before {
  position: absolute;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(17, 43, 34, 0.1);
  border-radius: 50%;
}

.alp-coffee-product__visual img {
  position: relative;
  z-index: 1;
  width: min(300px, 88%);
  max-height: 275px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(15, 36, 29, 0.13));
  transition: transform 0.35s ease;
}

.alp-coffee-product__percent,
.alp-coffee-product__tag {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.alp-coffee-product__percent {
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  color: #fff;
  background: var(--alp-coffee-forest);
  box-shadow: 0 8px 20px rgba(10, 35, 27, 0.17);
}

.alp-coffee-product__tag {
  bottom: 20px;
  left: 20px;
  padding: 7px 11px;
  color: var(--coffee-muted);
  border: 1px solid var(--coffee-line);
  background: rgba(255, 255, 255, 0.82);
  letter-spacing: 1px;
}

.alp-coffee-product__content {
  position: relative;
  counter-reset: alp-choice;
  padding: 30px 32px 32px;
  background: linear-gradient(180deg, #fff 0%, #fff 74%, #fdfcf8 100%);
}

.alp-coffee-product__content > .alp-coffee-kicker {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #6b572f;
  background: rgba(217, 183, 107, 0.16);
}

.alp-coffee-product__content h2 {
  margin: 7px 0 7px;
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.8px;
}

.alp-coffee-description {
  margin: 0;
  color: var(--coffee-muted);
  font-size: 13px;
}

.alp-coffee-roast {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #6c572f;
  background: rgba(217, 183, 107, 0.16);
  font-size: 11px;
  font-weight: 800;
}

.alp-coffee-roast span {
  color: var(--alp-coffee-gold);
  font-size: 7px;
}

.alp-coffee-choice {
  min-width: 0;
  margin: 25px 0 0;
  padding: 0;
  border: 0;
  counter-increment: alp-choice;
}

.alp-coffee-choice legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 11px;
  padding: 0;
  color: var(--coffee-ink);
  font-size: 12px;
  font-weight: 900;
}

.alp-coffee-choice legend::before {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  content: counter(alp-choice);
  background: var(--alp-coffee-forest);
  font-size: 10px;
}

.alp-coffee-choice__grid {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(17, 43, 34, 0.09);
  border-radius: 15px;
  background: #f8f7f2;
}

.alp-coffee-choice__grid--weights,
.alp-coffee-choice__grid--grinds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alp-coffee-choice label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.alp-coffee-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.alp-coffee-choice label > span {
  position: relative;
  display: flex;
  min-height: 65px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 6px;
  border: 1px solid rgba(17, 43, 34, 0.13);
  border-radius: 12px;
  color: var(--coffee-muted);
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.alp-coffee-choice label:hover > span {
  border-color: rgba(17, 43, 34, 0.34);
  box-shadow: 0 7px 17px rgba(12, 35, 27, 0.07);
  transform: translateY(-1px);
}

.alp-coffee-choice label > span strong {
  color: var(--coffee-ink);
  font-size: 12px;
  line-height: 1.5;
}

.alp-coffee-choice label > span small {
  color: var(--coffee-muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
}

.alp-coffee-choice label > span em {
  margin-top: 3px;
  color: #287852;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
}

.alp-coffee-choice input:checked + span {
  color: var(--alp-coffee-forest);
  border-color: var(--alp-coffee-forest);
  background: linear-gradient(145deg, rgba(217, 183, 107, 0.16), rgba(12, 32, 27, 0.045));
  box-shadow: inset 0 0 0 1px var(--alp-coffee-forest), 0 8px 20px rgba(12, 35, 27, 0.09);
  transform: translateY(-1px);
}

.alp-coffee-choice input:checked + span::after {
  position: absolute;
  top: 6px;
  left: 6px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  background: var(--alp-coffee-forest);
  font-size: 8px;
}

.alp-coffee-choice input:focus-visible + span {
  outline: 3px solid rgba(217, 183, 107, 0.4);
  outline-offset: 2px;
}

.alp-coffee-empty-choice {
  margin: 20px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--coffee-muted);
  background: var(--coffee-paper);
  font-size: 11px;
}

.alp-coffee-shipping-status {
  margin: 9px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(47, 125, 84, 0.2);
  border-radius: 10px;
  color: #256746;
  background: linear-gradient(90deg, rgba(47, 125, 84, 0.11), rgba(47, 125, 84, 0.055));
  font-size: 10px;
  font-weight: 900;
}

.alp-coffee-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 17px 18px;
  border: 1px solid rgba(17, 73, 52, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 32, 27, 0.065), rgba(217, 183, 107, 0.13));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.alp-coffee-selection > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.alp-coffee-selection span {
  color: var(--coffee-muted);
  font-size: 10px;
}

.alp-coffee-selection strong {
  font-size: 12px;
  line-height: 1.65;
}

.alp-coffee-price {
  flex: 0 0 auto;
  padding-inline-start: 17px;
  border-inline-start: 1px solid rgba(17, 73, 52, 0.15);
  text-align: left;
}

.alp-coffee-price strong {
  color: var(--alp-coffee-forest);
  font-size: 19px;
  line-height: 1.55;
}

.alp-coffee-actions {
  margin-top: 14px;
}

.alp-coffee-actions .alp-coffee-button {
  min-height: 52px;
  flex: 1 1 160px;
  border-radius: 14px;
}

.alp-coffee-actions .alp-coffee-button--outline {
  background: #fff;
}

.alp-coffee-unavailable {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  color: #8c3b31;
  background: #fff0ed;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.alp-coffee-empty {
  grid-column: 1 / -1;
  padding: 70px 30px;
  border: 1px dashed rgba(17, 43, 34, 0.23);
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.alp-coffee-empty h2 {
  margin: 0 0 7px;
}

.alp-coffee-empty p {
  margin: 0;
  color: var(--coffee-muted);
}

.alp-coffee-help {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(217, 183, 107, 0.12), transparent 28%),
    var(--alp-coffee-forest);
}

.alp-coffee-help .alp-coffee-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.alp-coffee-help h2 {
  margin: 7px 0;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.48;
}

.alp-coffee-help p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.alp-coffee-button--light {
  color: var(--alp-coffee-forest) !important;
  background: #fff;
}

.alp-coffee-button--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.26);
}

.alp-coffee-footer {
  color: #fff;
  background: #06130f;
}

.alp-coffee-footer .alp-coffee-shell {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.alp-coffee-footer .alp-coffee-shell > div:first-child {
  display: grid;
  gap: 2px;
}

.alp-coffee-footer strong {
  font-size: 14px;
}

.alp-coffee-footer span,
.alp-coffee-footer a {
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.alp-coffee-footer .alp-coffee-shell > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.alp-coffee-mobile-bar {
  display: none;
}

@media (hover: hover) {
  .alp-coffee-benefits article:hover {
    background: #fbfaf6;
  }

  .alp-coffee-product:hover {
    border-color: rgba(17, 73, 52, 0.25);
    box-shadow: 0 25px 65px rgba(12, 35, 27, 0.12);
    transform: translateY(-3px);
  }

  .alp-coffee-product:hover .alp-coffee-product__visual img {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (max-width: 1000px) {
  .alp-coffee-header nav {
    display: none;
  }

  .alp-coffee-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 34px;
  }
}

@media (max-width: 960px) {
  .alp-coffee-products {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .alp-coffee-product__visual {
    min-height: 340px;
  }

  .alp-coffee-product__visual img {
    max-height: 310px;
  }

  .alp-coffee-choice__grid--weights {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .alp-coffee-store {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .alp-coffee-shell {
    width: min(100% - 28px, 620px);
  }

  .alp-coffee-header__inner {
    min-height: 66px;
  }

  .alp-coffee-brand img {
    width: 40px;
    height: 40px;
  }

  .alp-coffee-brand strong {
    font-size: 13px;
  }

  .alp-coffee-brand small {
    font-size: 8px;
  }

  .alp-coffee-header__contact {
    min-height: 35px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .alp-coffee-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 48px 58px;
    text-align: center;
  }

  .alp-coffee-eyebrow,
  .alp-coffee-status {
    justify-content: center;
  }

  .alp-coffee-hero h1 {
    margin: 13px 0;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2px;
  }

  .alp-coffee-hero__copy > p {
    font-size: 14px;
  }

  .alp-coffee-hero__actions {
    justify-content: center;
    margin-top: 21px;
  }

  .alp-coffee-status {
    margin-top: 18px;
    margin-inline: auto;
  }

  .alp-coffee-hero__visual {
    min-height: 340px;
  }

  .alp-coffee-hero__visual img {
    width: min(320px, 88%);
    max-height: 340px;
  }

  .alp-coffee-hero__ring {
    width: 285px;
    height: 285px;
  }

  .alp-coffee-hero__note {
    right: 50%;
    bottom: 6px;
    width: max-content;
    max-width: 96%;
    transform: translateX(50%);
    line-height: 1.7;
  }

  .alp-coffee-benefits {
    margin-top: -22px;
  }

  .alp-coffee-benefits .alp-coffee-shell {
    grid-template-columns: 1fr;
  }

  .alp-coffee-benefits article {
    min-height: 82px;
    padding: 16px 19px;
    border-bottom: 1px solid var(--coffee-line);
    border-left: 0;
  }

  .alp-coffee-benefits article:last-child {
    border-bottom: 0;
  }

  .alp-coffee-benefits article > span {
    width: 34px;
    height: 34px;
  }

  .alp-coffee-catalog {
    padding: 76px 0 78px;
  }

  .alp-coffee-section-heading {
    margin-bottom: 32px;
  }

  .alp-coffee-section-heading h2 {
    font-size: 31px;
  }

  .alp-coffee-products {
    gap: 22px;
  }

  .alp-coffee-product,
  .alp-coffee-product--reverse {
    border-radius: 20px;
  }

  .alp-coffee-product__visual {
    min-height: 280px;
    padding: 26px;
  }

  .alp-coffee-product__visual::before {
    width: 220px;
    height: 220px;
  }

  .alp-coffee-product__visual img {
    max-height: 245px;
  }

  .alp-coffee-product__content {
    padding: 26px 22px 25px;
  }

  .alp-coffee-product__content h2 {
    font-size: 28px;
  }

  .alp-coffee-choice__grid--weights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alp-coffee-choice__grid--grinds {
    grid-template-columns: 1fr;
  }

  .alp-coffee-choice label > span {
    min-height: 59px;
  }

  .alp-coffee-selection {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .alp-coffee-price {
    padding-top: 9px;
    padding-inline-start: 0;
    border-top: 1px solid var(--coffee-line);
    border-inline-start: 0;
    text-align: right;
  }

  .alp-coffee-actions {
    flex-direction: column;
  }

  .alp-coffee-actions .alp-coffee-button {
    width: 100%;
    flex-basis: auto;
  }

  .alp-coffee-help {
    padding: 58px 0 68px;
    text-align: center;
  }

  .alp-coffee-help .alp-coffee-shell {
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
  }

  .alp-coffee-help__actions {
    justify-content: center;
  }

  .alp-coffee-footer {
    padding-bottom: 18px;
  }

  .alp-coffee-footer .alp-coffee-shell {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .alp-coffee-mobile-bar {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    color: #fff;
    background: rgba(7, 24, 19, 0.95);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .alp-coffee-mobile-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    font-size: 11px;
    font-weight: 900;
  }

  .alp-coffee-mobile-bar a:last-child {
    color: #10231d;
    background: var(--alp-coffee-gold);
  }
}

@media (max-width: 782px) {
  .admin-bar .alp-coffee-header {
    top: 46px;
  }
}

@media (max-width: 390px) {
  .alp-coffee-header__contact {
    padding-inline: 10px;
  }

  .alp-coffee-hero__actions .alp-coffee-button {
    width: 100%;
  }

  .alp-coffee-product__content {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alp-coffee-store *,
  .alp-coffee-store *::before,
  .alp-coffee-store *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
