/* =========================================================
   01. FONTS
========================================================= */

@font-face {
  font-family: "Apercu";
  src: url("../fonts/Apercu.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Apercu";
  src: url("../fonts/Apercu-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Apercu";
  src: url("../fonts/Apercu-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Apercu Mono";
  src:
    url("../fonts/ApercuMonoProRegular.woff2") format("woff2"),
    url("../fonts/ApercuMonoProRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Apercu Mono";
  src: url("../fonts/ApercuMonoProBold.woff2?v=2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* =========================================================
   02. TOKENS / VARIABLES
========================================================= */

:root {
  --color-orange: #FD8019;
  --color-orange-hover: #f27613;
  --color-green: #009884;
  --color-red: #E0564C;
  --color-gray: #F5F5F5;
  --color-gray-soft: #F3F0EC;
  --color-gray-dark: #ECEAE7;
  --color-black: #000;
  --color-white: #fff;

  --text-light: rgba(255, 255, 255, 0.92);
  --text-light-dim: rgba(255, 255, 255, 0.72);
  --text-dark: rgba(0, 0, 0, 0.72);
  --text-dark-soft: rgba(0, 0, 0, 0.8);
  --text-dark-muted: rgba(0, 0, 0, 0.55);

  --border-dark-soft: rgba(0, 0, 0, 0.12);
  --border-dark-mid: rgba(0, 0, 0, 0.14);
  --border-dark-strong: rgba(0, 0, 0, 0.55);

  --shadow-soft: 0 6px 14px rgba(0, 0, 0, 0.35);
  --shadow-hero: 0 14px 30px rgba(0, 0, 0, 0.45);
  --shadow-modal: 0 24px 70px rgba(0, 0, 0, 0.22);

  --font-body: "Apercu Mono", "Source Code Pro", monospace;
  --font-ui: "Apercu", Arial, sans-serif;

  --header-h: 72px;
  --container-max: 1750px;
  --container-gutter: 120px;

  --radius-pill: 999px;
  --radius-card-lg: 28px;
  --radius-card-md: 24px;
  --radius-card-sm: 18px;
  --radius-field: 18px;
  --radius-field-sm: 12px;

  --transition-fast: .15s ease;
  --transition-mid: .25s ease;
  --transition-slow: .35s ease;

  --bottom-safe: env(safe-area-inset-bottom, 0px);
  --top-safe: env(safe-area-inset-top, 0px);
  --side-safe: env(safe-area-inset-left, 0px);
  
  --p-font-size: 18px;
  
  --btn-font-size: 18px;
  --btn-height: 44px;
  --btn-padding-x: 50px;
}

/* =========================================================
   03. RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;  
}

body {
  font-family: var(--font-body);
  color: #111;
  overflow-x: clip;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

body.home {
  background: var(--color-gray);
}

body.subpage {
  background: var(--color-gray);
}

/* =========================================================
   04. LAYOUT
========================================================= */

.container {
  max-width: var(--container-max);
  width: calc(100% - var(--container-gutter));
  margin: 0 auto;
}

.section {
  background: var(--color-gray);
  color: #111;
  padding: 90px 0 0px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 8vw, 66px);
  font-weight: 400;
  letter-spacing: .02em;
}

/* =========================================================
   05. REUSABLE COMPONENTS
========================================================= */

/* ---------- Buttons ---------- */

/* =========================================================
   BUTTON SYSTEM
========================================================= */

.btn {
  --btn-bg: transparent;
  --btn-color: #111;
  --btn-border: transparent;  
  --btn-font-size: var(--p-font-size);
  --btn-letter-spacing: .08em;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  
  width: fit-content;
  max-width: max-content;

  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);

  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);

  font-family: "Apercu Mono", "Source Code Pro", monospace;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter-spacing);  
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    transform .18s ease,
    filter .18s ease,
    opacity .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .2);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn__label {
  display: inline-block;
  line-height: 1;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1em;
  transform: translateY(-1px);
}

/* Variants */

.btn--orange {
  --btn-bg: #FD8019;
  --btn-color: #000;
  --btn-border: #FD8019;
}

.btn--orange:hover {
  --btn-bg: #f27613;
  --btn-border: #f27613;
}

.btn--green {
  --btn-bg: #009884;
  --btn-color: #000;
  --btn-border: #000;
}

.btn--green:hover {
  --btn-bg: #009884;
}

.btn--light {
  --btn-bg: #F5F5F5;
  --btn-color: #000;
  --btn-border: #F5F5F5;
}

.btn--light:hover {
  filter: brightness(.97);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: #111;
  --btn-border: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.btn--pill {
  border-radius: 999px;
}

.btn--cta {
  --btn-height: 52px;
  --btn-padding-x: 32px;
  --btn-font-size: 15px;
  --btn-letter-spacing: .08em;
}

.btn--compact {
  --btn-height: 36px;
  --btn-padding-x: 18px;
  --btn-font-size: 18px;
  --btn-letter-spacing: .10em;
}

.btn--nooutline {
	border: 0px;
}

/* ---------- Pills ---------- */

.pill {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill-qty {
  background: rgba(255, 255, 255, 0.35);
}

.pill-buy {
  background: var(--color-orange);
  padding: 0 10px 0 18px;
  font-size: var(--p-font-size);
}

.pill-left {
  font-size: var(--p-font-size);
  letter-spacing: .06em;
  color: rgba(0, 0, 0, 0.75);
}

/* ---------- Quantity ---------- */

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.qty-controls .qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.85);
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(0, 0, 0, 0.9);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ebe7e4;
  border-radius: var(--radius-pill);
  padding: 6px;
}

.qty-control .qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.qty-input {
  width: 34px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 15px;
}

/* ---------- Cards ---------- */

.card-glass,
.cart-card,
.cart-summary {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Form controls ---------- */

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.group-label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-dark-mid);
  border-radius: var(--radius-field);
  background: #f7f5f2;
  color: #111;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #111;
}

/* =========================================================
   06. SITE HEADER / NAV / MOBILE
========================================================= */

.site-header {
  position: absolute;
  top: calc(0px + var(--top-safe));
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container-max);
  width: calc(100% - var(--container-gutter));
  margin: 0 auto;
  padding-top: 15px;
}

body.subpage .site-header {
  position: relative;
  top: auto;
  height: auto;
  background: var(--color-gray);
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left .hamburger {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 90px;
  padding-top: 30px;
}

.brand img {
  width: auto;
  display: block;
  filter: drop-shadow(var(--shadow-soft));
}

body.subpage .brand img {
  height: 64px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav a,
.sticky-nav a {
  text-decoration: none;
  font-size: 18px;
  padding-left: 16px;
  padding-right: 16px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.site-header.header--light .nav a {
  color: var(--text-light-dim);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.site-header.header--light .nav a:hover {
  color: var(--text-light);
}

.site-header.header--dark .nav a {
  color: var(--text-dark);
  text-shadow: none;
}

.site-header.header--dark .nav a:hover {
  color: var(--color-black);
}

.actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  opacity: .92;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.icon-btn:hover {
  opacity: 1;
}

.icon {
  width: 34px;
  height: 34px;
  display: block;
}

.site-header.header--light .icon-btn {
  color: var(--text-light);
  filter: drop-shadow(var(--shadow-soft));
}

.site-header.header--dark .icon-btn {
  filter: none;
}

.site-header.header--dark .brand img,
.site-header.header--dark .icon {
  filter: brightness(0);
}

.site-header.header--light .brand img,
.site-header.header--light .icon {
  filter: brightness(0) invert(1);
}

.site-header.header--dark .hamburger span {
  background: #000;
}

.site-header.header--light .hamburger span {
  background: var(--text-light);
}

.site-header.header--dark .account-trigger__name {
  color: #111;
}

/* ---------- Hamburger ---------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
  filter: drop-shadow(var(--shadow-soft));
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text-light);
  transition: transform var(--transition-mid), opacity var(--transition-mid);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile drawer ---------- */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--p-font-size);
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
}

.mobile-drawer a:hover {
  opacity: .7;
}

/* ---------- Sticky bar ---------- */

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 52px;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition:
    opacity .28s ease,
    transform .28s ease;
  background: #000;
  backdrop-filter: blur(20px);
}

.sticky-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-inner {
  max-width: var(--container-max);
  width: calc(100% - var(--container-gutter));
  height: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.sticky-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
}

.sticky-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.sticky-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.sticky-bar .hamburger {
  display: none;
}

.sticky-brand img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 1;
  transition: filter .2s ease;
}

.sticky-nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.sticky-nav a {
  text-decoration: none;
  font-size: 18px;
  padding-left: 16px;
  padding-right: 16px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  color: #fff;
}

.sticky-nav a:hover {
  color: var(--text-light);
}

.sticky-brand img,
.sticky-bar .icon {
  filter: brightness(0) invert(1);
}

.sticky-bar .hamburger span {
  background: #fff;
}

.sticky-bar .hamburger {
  filter: none;
}

/* =========================================================
   07. HERO
========================================================= */

.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("../images/hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, rgba(0, 0, 0, 0) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, rgba(0, 0, 0, 0) 1px 4px);
  transform: rotate(-2deg);
}

.hero-center {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: min(860px, 92vw);
  display: grid;
  place-items: center;
  margin-top: calc(var(--header-h) * .35);
}

.hero-logo {
  width: min(620px, 78vw);
  height: auto;
  display: block;
  filter: drop-shadow(var(--shadow-hero));
}

.tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(20px + var(--bottom-safe));
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  font-size: clamp(14px, 1.9vw, 18px);
  letter-spacing: .18em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  user-select: none;
}

/* =========================================================
   08. COFFEE SECTION
========================================================= */

.size-toggle {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  user-select: none;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: lowercase;
}

.size-toggle button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px 2px;
  font-size: var(--p-font-size);
  letter-spacing: .14em;
  text-transform: lowercase;
}

.size-toggle .is-active {
  color: #111;
}

.size-toggle .is-idle {
  color: rgba(0, 0, 0, .35);
}

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.coffee-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.coffee-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ddd;
}

.coffee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .7s ease;
}

.coffee-image:hover img {
  transform: scale(1.2);
}

.coffee-body {
  padding: 2px 2px 0;
}

.coffee-name {
  margin: 0 0 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  font-size: var(--p-font-size);
  letter-spacing: .06em;
}

.coffee-desc {
  margin: 0;
  padding-bottom: 0px;
  font-size: var(--p-font-size);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-dark-soft);
  white-space: pre-line;
}

.coffee-footer {  
  display: grid;
  gap: 12px;
}

.price {
  font-weight: 400;
  font-size: var(--p-font-size);
  letter-spacing: .10em;
  color: #111;
}

/* =========================================================
   09. ABOUT
========================================================= */

.about {
  background: var(--color-green);
  color: var(--color-black);
  padding: 110px 0;
  margin-top: 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 220px;
  row-gap: 50px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 22px;
}

.about h2 {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(50px, 4.2vw, 66px);
  font-weight: 500;
  letter-spacing: .10em;
}

.about h3 {
  margin: 0;
  padding-bottom: 30px;
  font-size: clamp(50px, 4.6vw, 66px);
  font-weight: 500;
  letter-spacing: .10em;
}

.about p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  max-width: 820px;
}

.about-philo {
  align-self: center;
  padding-top: 80px;
}

.about-philo p {
  max-width: 720px;
}

.about-illus {
  width: 100%;
  max-width: 520px;
  margin-top: 60px;
}

.about-illus img {
  width: 100%;
  height: auto;
  display: block;
}

.about-illus-br {
  justify-self: start;
  align-self: end;
  margin-right: 40px;
  margin-bottom: 10px;
}

.about-pill-toggle {
  width: 100%;
  max-width: 400px;
  margin-top: 18px;
}

.about-pill-toggle span {
  margin-left: 10px;
}

.about-more-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition:
    grid-template-rows var(--transition-slow),
    opacity var(--transition-mid),
    margin-top var(--transition-mid);
}

.about-more-content.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 16px;
}

.about-more-content > div,
.about-more-content > p,
.about-more-content-inner {
  overflow: hidden;
}

.about-more-content p {
  margin: 0;
}

/* =========================================================
   10. OTTO
========================================================= */

.otto {
  background: var(--color-gray);
  padding: 90px 0 90px;
}

.otto-title {
  margin: 0 0 50px;
  font-weight: 400;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: .10em;
}

.otto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.otto-card {
  display: grid;
  gap: 16px;
}

.otto-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.otto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.otto-meta {
  padding-top: 20px;
  font-size: var(--p-font-size);
  font-weight: 800;
  letter-spacing: .2em;
}

.otto-text {
  font-size: var(--p-font-size);
  line-height: 1.6;
}

.otto-more {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.otto-btn {
  padding-inline: clamp(28px, 6vw, 70px);
  max-width:250px;
  font-size: clamp(16px, 3.2vw, 20px);
  letter-spacing: .12em;
}

/* =========================================================
   11. RATIO BAND
========================================================= */

.ratio-band {
  background: var(--color-orange);
  padding: clamp(10px, 1.6vw, 28px) 0; /* ugyanaz mint a gap */
}

.ratio-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 28px);
  align-items: center;
}

.ratio-strip img {
  width: 100%;
  height: auto; /* ez fontos */
  display: block;
}

/* =========================================================
   12. CONTACT
========================================================= */

.contact {
  background: var(--color-gray);
  color: #111;
  padding: 110px 0 120px;
}

.contact-wrap {
  position: relative;
}

.contact-title {
  margin: 0;
  text-align: left;
  font-size: clamp(50px, 4.6vw, 66px);
  letter-spacing: .10em;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.contact-grid-empty {
  min-height: 1px;
}

.contact-illus {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-illus img {
  width: min(420px, 90%);
  height: auto;
  display: block;
}

.contact-form {
  width: 100%;
  max-width: 740px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field label {
  font-size: var(--p-font-size);
  letter-spacing: .12em;
  opacity: .85;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-field-sm);
  background: transparent;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
  border-radius: 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(0, 0, 0, .85);
}

.contact-actions {
  display: flex;
  padding-top:30px;
  justify-content: flex-start;
  margin-top: 6px;
}

.contact-btn {
  padding-inline: 36px;
  font-size: var(--p-font-size);
  letter-spacing: .12em;
}

/* =========================================================
   13. FOOTER
========================================================= */

.site-footer {
  background: var(--color-green);
  color: var(--color-black);
  padding: 46px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 140px;
  align-items: start;
}

.footer-col {
  display: grid;
  gap: 22px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--color-black);
  text-decoration: none;
  font-size: var(--p-font-size);
  line-height: 1.55;
  letter-spacing: .06em;
  opacity: .9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, .7);
  color: var(--color-black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .10em;
  white-space: nowrap;
}

.footer-pill:hover {
  background: rgba(0, 0, 0, .06);
}

.footer-right {
  justify-self: end;
  text-align: left;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  text-decoration: none;
  line-height: 0;
}

.social-btn svg {
  display: block;
  width: 48px;
  height: 48px;
}

.social-btn:hover {
  background: rgba(0, 0, 0, .08);
}

.footer-bottom {
  display: contents;
}

.footer-pill-mobile {
  display: none;
}

.footer-pill-desktop {
  display: inline-flex;
}

/* =========================================================
   14. CART
========================================================= */

.cart-page {
  padding: 140px 0 90px;
  background: var(--color-gray);
  color: #111;
}

.cart-hero {
  margin-bottom: 34px;
}

.cart-title {
  margin: 0 0 8px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .95;
  letter-spacing: .02em;
}

.cart-lead {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .04em;
  opacity: .8;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: start;
}

.cart-main {
  display: grid;
  gap: 24px;
}

.cart-card h2,
.cart-summary h2 {
  margin: 0 0 20px;
  font-size: 22px;
  letter-spacing: .04em;
}

.cart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.cart-card-head h2 {
  margin: 0;
}

.cart-back-link {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
}

.cart-back-link:hover {
  text-decoration: underline;
}

.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-card-md);
  background: #f5f5f5;
}

.cart-item-media {
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #d8d4d1;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-body {
  display: grid;
  gap: 12px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.cart-item-title {
  margin: 0 0 4px;
  font-size: var(--p-font-size);
  letter-spacing: .04em;
}

.cart-item-meta,
.cart-item-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: .8;
}

.cart-remove {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.cart-item-price {
  font-size: 18px;
  letter-spacing: .06em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.radio-group {
  display: grid;
  gap: 12px;
}

.radio-group + .radio-group {
  margin-top: 22px;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-dark-soft);
  border-radius: var(--radius-field);
  background: #f7f5f2;
  cursor: pointer;
}

.option-row input {
  margin-right: 10px;
}

.cart-summary {
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  font-size: 15px;
}

.summary-row-total {
  margin-top: 8px;
  padding-top: 18px;
  font-size: var(--p-font-size);
  border-bottom: 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 20px;
  font-size: 13px;
  line-height: 1.5;
}

.cart-submit {
  width: 100%;
  height: 58px;
  font-size: 15px;
  letter-spacing: .12em;
}

.cart-help {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: .68;
}

.cart-empty {
  padding: 24px;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 15px;
}

/* =========================================================
   15. MODAL / MPL
========================================================= */

.mpl-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: none;
  z-index: 9999;
}

.mpl-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpl-modal-content {
  position: relative;
  width: min(1200px, calc(100vw - 80px));
  height: min(780px, calc(100vh - 80px));
  background: var(--color-gray);
  padding: 28px;
  overflow: hidden;
}

/* =========================================================
   16. SWEETALERT
========================================================= */

/* =========================================================
   SWEETALERT / OV
========================================================= */

div:where(.swal2-container).ov-swal-container {
  backdrop-filter: blur(1px);
}

.swal2-popup.ov-swal-popup {
  background: #F3F0EC !important;
  color: #111 !important;
  border-radius: 28px !important;
  padding: 26px 24px 26px !important;
  width: 700px !important;
  max-width: calc(100vw - 40px) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22) !important;
  font-family: "Apercu", Arial, sans-serif !important;
}

.swal2-title.ov-swal-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  color: #111 !important;
  font-family: "Apercu Mono", "Source Code Pro", monospace !important;
  font-size: 38px !important;
  line-height: 1.08 !important;
  letter-spacing: .08em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

.swal2-html-container.ov-swal-text,
.swal2-html-container.ov-swal-html {
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  color: #111 !important;
  font-family: "Apercu Mono", "Source Code Pro", monospace !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

.ov-swal-icon {
  width: 78px;
  height: 78px;
  margin: 8px auto 18px;
  border: 4px solid #98c9e8;
  border-radius: 50%;
  color: #98c9e8;
  font-family: "Apercu Mono", "Source Code Pro", monospace;
  font-size: 46px;
  line-height: 70px;
  text-align: center;
  box-sizing: border-box;
}

.ov-swal-summary {
  margin: 0 0 16px;
}

.ov-swal-row {
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.45;
  color: #111;
}

.ov-swal-row span {
  color: rgba(17, 17, 17, .68);
}

.ov-swal-row strong {
  color: #111;
  font-weight: 700;
}

.ov-swal-note {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(17, 17, 17, .55);
}

.ov-swal-summary,
.ov-swal-row,
.ov-swal-row span,
.ov-swal-row strong,
.ov-swal-note {
  opacity: 1 !important;
}

/* ---------- Actions ---------- */

.swal2-actions.ov-swal-actions {
  width: 100%;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 14px !important;
}

/* ---------- Buttons ---------- */

.swal2-confirm.ov-swal-confirm,
.swal2-cancel.ov-swal-cancel {
  min-width: 340px;
  height: 58px;
  padding: 0 34px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;

  border-radius: 999px !important;
  border: 1.5px solid #000 !important;
  box-shadow: none !important;
  outline: none !important;
  background-image: none !important;

  font-family: "Apercu Mono", "Source Code Pro", monospace !important;
  font-size: var(--p-font-size) !important;
  font-weight: 400 !important;
  letter-spacing: .08em !important;
  text-transform: none !important;
  line-height: 1 !important;

  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    transform .18s ease,
    filter .18s ease !important;
}

.swal2-styled:focus {
  box-shadow: none !important;
}

.swal2-confirm.ov-swal-confirm {
  background: #FD8019 !important;
  color: #000 !important;
  border-color: #FD8019 !important;
}

.swal2-confirm.ov-swal-confirm:hover,
.swal2-confirm.ov-swal-confirm:focus {
  background: #f27613 !important;
  border-color: #f27613 !important;
}

.swal2-cancel.ov-swal-cancel {
  background: #F5F5F5 !important;
  color: #000 !important;
}

.swal2-cancel.ov-swal-cancel:hover,
.swal2-cancel.ov-swal-cancel:focus {
  background: #ececec !important;
  color: #000 !important;
  border-color: #000 !important;
  transform: translateY(-1px);
}

.swal2-confirm.ov-swal-confirm:focus-visible,
.swal2-cancel.ov-swal-cancel:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .18) !important;
  outline-offset: 2px !important;
}

/* ---------- Success icon ---------- */

div:where(.swal2-icon).swal2-success {
  border-color: #FD8019 !important;
  color: #FD8019 !important;
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"] {
  background-color: #FD8019 !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  border-color: rgba(253, 128, 25, .28) !important;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .swal2-popup.ov-swal-popup {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    border-radius: 22px !important;
    padding: 22px 18px 22px !important;
  }

  .swal2-title.ov-swal-title {
    font-size: 28px !important;
    letter-spacing: .06em !important;
  }

  .swal2-html-container.ov-swal-text,
  .swal2-html-container.ov-swal-html {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .swal2-confirm.ov-swal-confirm,
  .swal2-cancel.ov-swal-cancel {
    min-width: 100%;
    width: 100%;
    height: 54px;
    font-size: 14px !important;
    letter-spacing: .06em !important;
  }

  .swal2-actions.ov-swal-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* =========================================================
   17. RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 980px) {
  .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .coffee-grid,
  .otto-grid,
  .contact-grid,
  .footer-grid,
  .form-grid,
  .otto-story,
  .otto-story.reverse,
  .otto-story--hero,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .otto-text,
  .contact-form,
  .otto-copy,
  .otto-copy p {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 56px;
  }

  .about-philo {
    padding-top: 0;
  }

  .about-illus-br {
    margin-right: 0;
  }

  .contact-actions {
    justify-content: center;
  }

  .footer-grid {
    row-gap: 36px;
  }

  .footer-right {
    justify-self: start;
    gap: 36px;
  }

  .footer-col-left {
    gap: 36px;
  }

  .footer-pill-desktop {
    display: none;
  }

  .footer-pill-mobile {
    display: inline-flex;
    margin-left: auto;
    width: 280px;
    height: 48px;
    flex: 0 0 auto;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }

  .footer-social {
    gap: 18px;
    flex: 0 0 auto;
  }

  .social-btn svg {
    width: 46px;
    height: 46px;
  }

  .otto-page-wrap {
    width: calc(100% - 40px);
  }

  .otto-story,
  .otto-story.reverse,
  .otto-story--hero {
    gap: 28px;
    margin-bottom: 42px;
    min-height: auto;
  }

  .otto-story--hero .otto-visual,
  .otto-story--hero .otto-visual img {
    min-height: 300px;
    height: 300px;
  }

  .otto-story--hero .otto-copy {
    padding: 0 20px 40px;
  }

  .otto-story.reverse .otto-copy,
  .otto-story.reverse .otto-visual {
    order: initial;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid-empty {
    display: none;
  }

  .contact-illus {
    order: 1;
  }

  .contact-title {
    order: 2;
  }

  .contact-form {
    order: 3;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 860px) {
.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 16px;
  }

  .sticky-center {
    display: none;
  }	
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    max-width: none;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 16px;
  }

  .nav,
  .sticky-nav,
  .brand {
    display: none;
  }

  .header-left .hamburger,
  .sticky-bar .hamburger {
    display: flex;
  }

  .hero-center {
    margin-top: calc(var(--header-h) * .2);
  }
}

@media (max-width: 760px) {
  .cart-page {
    padding: 110px 0 64px;
  }

  .card-glass,
  .cart-card,
  .cart-summary {
    padding: 20px;
    border-radius: 22px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-media {
    aspect-ratio: 4 / 3;
  }

  .cart-item-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-pill-mobile {
    width: 100%;
    max-width: 280px;
    height: 44px;
    font-size: 11px;
    letter-spacing: .08em;
    margin-left: 0;
	padding-left:30px;
	padding-right:30px;
  }
}

/* =========================================================
   AUTH MODAL
========================================================= */

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 0 40px;
}

.auth-modal.is-open {
  display: block;
}

.auth-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

.auth-modal__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  max-height: none;
  overflow: visible;
  margin: 0 auto;
  padding: 34px 34px 28px;
  background: var(--color-gray);
  color: #111;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.auth-modal__inner {
  padding-top: 10px;
}

.auth-modal__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.auth-tab {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--p-font-size);
  color: rgba(0, 0, 0, .35);
  transition: color var(--transition-fast);
}

.auth-tab.is-active {
  color: #111;
}

.auth-title {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: .04em;
  font-weight: 400;
}

.auth-lead {
  margin: 0 0 26px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, .82);
}

.auth-pane {
  display: none;
}

.auth-pane.is-active {
  display: block;
}

.auth-form,
.auth-grid {
  display: grid;
  gap: 16px;
}

.auth-grid--two {
  grid-template-columns: 1fr 1fr;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  font-family: var(--font-body);
  font-size: var(--p-font-size);
  color: #111;
}

.auth-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .55);
  background: transparent;
  padding: 8px 0 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #111;
  outline: none;
}

.auth-check {
  margin-top: 4px;
}

.auth-check label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: var(--p-font-size);
  line-height: 1.6;
  color: rgba(0, 0, 0, .82);
}

.auth-submit {
  margin-top: 10px;
  min-width: 220px;
  height: 48px;
  padding: 10px 22px;
  font-size: var(--p-font-size);
  letter-spacing: .14em;
}

.auth-submit:hover {
  background: var(--color-orange-hover);
  transform: translateY(-1px);
}

.auth-switch-note {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0, 0, 0, .74);
}

.auth-inline-switch {
  border: 0;
  background: transparent;
  padding: 0;
  color: #111;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.auth-modal__message {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
}

.auth-modal__message.is-visible {
  display: block;
}

.auth-modal__message.is-error {
  background: rgba(224, 86, 76, .10);
  color: #8f1d1d;
}

.auth-modal__message.is-success {
  background: rgba(0, 152, 132, .10);
  color: #006f61;
}

.icon-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.auth-profile-choose {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.auth-profile-btn {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: var(--radius-pill);
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  color: #111;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.auth-profile-btn:hover {
  background: rgba(0, 0, 0, .03);
  transform: translateY(-1px);
}

/* =========================================================
   AUTH MODAL / RESPONSIVE
========================================================= */

@media (max-width: 760px) {
  .auth-modal {
    padding: 12px 0 24px;
  }

  .auth-modal__panel {
    width: min(100vw - 24px, 760px);
    max-height: none;
    overflow: visible;
    margin: 0 auto;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }
}

  .auth-grid--two {
    grid-template-columns: 1fr;
  }

  .auth-submit {
    width: 100%;
  }

  .auth-tab {
    font-size: var(--p-font-size);
  }
}

.account-menu {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .account-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 50px;
      min-width: 190px;
      padding: 8px 0;
      background: #ECEAE7;
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(0,0,0,.14);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
      z-index: 1200;
    }

    .account-menu:hover .account-dropdown,
    .account-menu:focus-within .account-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .account-dropdown a {
      display: block;
      padding: 11px 16px;
      text-decoration: none;
      color: #111;
      font-family: "Apercu Mono", "Source Code Pro", monospace;
      font-size: 12px;
      line-height: 1.4;
    }

    .account-dropdown a:hover {
      background: rgba(0,0,0,.04);
    }

    .mobile-drawer-auth {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.18);
      display: grid;
      gap: 10px;
    }

    .mobile-drawer-auth a,
    .mobile-drawer-auth button {
      text-align: left;
    }

    .mobile-drawer-auth .drawer-auth-btn {
      border: 0;
      background: transparent;
      padding: 0;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    @media (max-width: 991.98px) {
      .account-dropdown {
        display: none;
      }
    }
	
	.account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}

.account-trigger__name {
  font-family: "Apercu Mono", "Source Code Pro", monospace;
  font-size: 11px;
  color: #000;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header.header--light .account-trigger__name {
  color: #fff;
}

.sticky-bar .account-trigger__name {
  color: #fff;
}

.account-trigger__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-trigger__icon.is-logged-in::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009884;
  box-shadow: 0 0 0 2px #ECEAE7;
}

.account-dropdown__user {
  padding: 10px 16px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 4px;
}

.account-dropdown__user strong,
.account-dropdown__user span {
  display: block;
  font-family: "Apercu Mono", "Source Code Pro", monospace;
}

.account-dropdown__user strong {
  font-size: 12px;
  color: #111;
}

.account-dropdown__user span {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(0,0,0,.55);
}

.mobile-drawer-user {
  display: grid;
  gap: 4px;
  margin-bottom: 6px;
}

.mobile-drawer-user strong,
.mobile-drawer-user span {
  font-family: "Apercu Mono", "Source Code Pro", monospace;
}

.mobile-drawer-user strong {
  font-size: 13px;
}

.mobile-drawer-user span {
  font-size: 11px;
  opacity: .75;
}

@media (max-width: 1200px) {
  .account-trigger__name {
    max-width: 90px;
  }
}

@media (max-width: 1200px) {
  .account-trigger__name {
    display: none;
  }
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #FD8019;
  color: #111;
  font-family: "Apercu Mono", "Source Code Pro", monospace;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

@media (max-width: 980px) {
  .about-pill-toggle {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .about-grid,
  .about-grid > *,
  .stack,
  .about-philo {
    min-width: 0;
  }

  .about h2,
  .about h3 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
    letter-spacing: .03em;
    max-width: 100%;
  }

  .about p {
    font-size: clamp(15px, 4vw, 18px);
    max-width: 100%;
  }

  .about-pill-toggle {
    width: 100%;
    max-width: 100%;
  }

  .about-illus,
  .about-illus img {
    max-width: 100%;
  }
}

.footer-pill {
  border: 0;
  cursor: pointer;
}

.auth-modal__message {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.auth-modal__message.is-visible {
  display: block;
}

.auth-modal__message.is-error {
  background: rgba(180, 30, 30, 0.08);
  color: #8f1d1d;
  border: 1px solid rgba(180, 30, 30, 0.18);
}

.auth-modal__message.is-success {
  background: rgba(11, 157, 138, 0.08);
  color: #0b6b5f;
  border: 1px solid rgba(11, 157, 138, 0.18);
}

body.modal-open {
  overflow: hidden;
}

.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#111;
    color:#fff;
    padding:18px 20px;
    z-index:9999;
    font-size:14px;
}

.cookie-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cookie-text{
    line-height:1.5;
}

.cookie-text a{
    color:#FD8019;
    text-decoration:underline;
}

.cookie-btn{
    background:#FD8019;
    border:none;
    color:#fff;
    padding:10px 18px;
    border-radius:20px;
    cursor:pointer;
    font-weight:500;
    white-space:nowrap;
}

.cookie-btn:hover{
    opacity:0.9;
}

@media(max-width:700px){

.cookie-container{
    flex-direction:column;
    align-items:flex-start;
}

.cookie-btn{
    margin-top:10px;
}

}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


.coffee-name a {
  color: inherit;
  text-decoration: none;
}

.coffee-name a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coffee-prop {
  font-size: var(--p-font-size);
  color: var(--text-dark-soft);
  line-height: 1.45;
}

.coffee-prop-label {
  font-weight: 400;
}

.coffee-prop-value {
  margin-left: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.product-pack-btn {
  min-width: 64px;
  height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border: 1px solid #111;
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.product-pack-btn.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.inner-links a {
  color: var(--color-black);
  text-decoration: none;
  font-size: var(--p-font-size);
  line-height: 1.55;
  letter-spacing: .06em;
  opacity: .9;
}

.pill-buy {  
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--color-orange);
  border-radius: 999px;
  padding: 10px 30px 10px 30px;

  color: inherit;
  font: inherit;
  font-size: var(--p-font-size);
  width: 100%;
  cursor: pointer;
}

.pill-buy .price {
  margin-right: auto;
}

.pill-buy .pill-label {
  margin-left: auto;
}

.pill-buy:hover {
  background: var(--color-orange);
}

.pill-buy:focus {
  outline: none;
  box-shadow: none;
}

.sticky-bar .hamburger {
  filter: none;
}

.coffee-footer {
  display: grid;
  gap: 12px;
}

.pill-qty-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-left: 18px;
  padding-right: 18px;
}

.qty-side {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.product-pack-switch--inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.product-pack-btn--inline {
  min-width: 0;
  height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.product-pack-btn--inline.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pill-qty-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
}

.qty-stepper,
.pack-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.qty-stepper {
  justify-content: flex-start;
}

.pack-stepper {
  justify-content: flex-end;
  margin-left: auto;
}

.qty-btn,
.pack-stepper-btn {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-value,
.pack-stepper-value {
  display: inline-block;
  min-width: 56px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--p-font-size);
  color: #111;
  line-height: 1;
}

.qty-value {
  min-width: 20px;
}

.pack-stepper-value {
  min-width: 72px;
}

@media (max-width: 760px) {
  .pill-qty-pack {
    gap: 12px;
    padding: 0 14px;
  }

  .qty-stepper,
  .pack-stepper {
    gap: 8px;
  }

  .qty-btn,
  .pack-stepper-btn {
    width: 22px;
    height: 22px;
    font-size: 20px;
  }

  .pack-stepper-value {
    min-width: 62px;
    font-size: var(--p-font-size);
  }
}

.auth-input-prefix-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .55);
  gap: 10px;
}

.auth-input-prefix {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 14px;
  color: #111;
  padding: 8px 0 10px;
}

.auth-input-prefix-wrap input {
  border: 0 !important;
  background: transparent;
  padding: 8px 0 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.auth-input-prefix-wrap.is-invalid {
  border-bottom-color: #b41e1e;
}

.auth-field input.is-invalid {
  border-bottom-color: #b41e1e !important;
}

.auth-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(0, 0, 0, .6);
}

.coffee-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ddd;
}

/* ===== OTTO VILÁGA ===== */

/* ===== OTTO VILÁGA ===== */

.otto-head {
  display: grid;
  grid-template-columns: 420px auto;
  justify-content: start;
  align-items: start;
  column-gap: 11rem;
  row-gap: 1rem;
  margin-bottom: 2.5rem;
}

.otto-title {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.otto-intro {
  padding-top: 0.35rem;
}

.otto-text {
  margin: 0;
  font-size: var(--p-font-size);
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .otto-head {
    grid-template-columns: 320px 1fr;
    column-gap: 2rem;
  }

  .otto-title {
    white-space: normal;
  }
}

@media (max-width: 767.98px) {
  .otto-head {
    grid-template-columns: 1fr;
  }

  .otto-intro {
    max-width: 100%;
    padding-top: 0;
  }
}

.ratio-band {
  width: 100%;
  overflow: hidden;
}

.ratio-svg {
  width: 100%;
  height: auto;
  display: block;
}

.otto-grid {
  align-items: start;
}

.otto-card {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.otto-image {
  line-height: 0;
  margin: 0;
}

.otto-image img {
  display: block;
}

.otto-meta {
  margin-top: 0;
  padding-top: 20px;
}