:root {
  --earth-brown: #5a3a2e;
  --cream-beige: #3a2f26;
  --olive-green: #7c8a54;
  --black-coffee: #2b2a27;
  --soft-white: #ffffff;
  --light-text: #f4eee7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--light-text);
  background: radial-gradient(
    circle at 30% 20%,
    #b3a79c 0%,
    #4a4036 35%,
    #3a2f26 70%,
    #2a231d 100%
  );
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- HEADER ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(43, 42, 39, 0.96), rgba(90, 58, 46, 0.92));
  box-shadow: 0 6px 24px rgba(23, 20, 18, 0.7);
  padding: 6px 0 14px;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name-line1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-white);
}
.brand-name-line2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
}
.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 233, 216, 0.45);
  background: rgba(245, 233, 216, 0.08);
  color: var(--soft-white);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease;
}
.nav-link:hover {
  background: rgba(245, 233, 216, 0.18);
  border-color: rgba(245, 233, 216, 0.9);
  transform: translateY(-1px);
}
.nav-link.active {
  background: var(--soft-white);
  color: var(--black-coffee);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(34, 24, 18, 0.75);
}

/* кнопка-бургер для мобіли */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(245, 233, 216, 0.5);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--soft-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- LAYOUT ---------- */
.page {
  max-width: 1180px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.section {
  padding: 32px 26px 36px;
  margin-top: 34px;
  border-radius: 24px;
  background: rgba(16, 11, 8, 0.76);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- HERO / OVERVIEW ---------- */
.hero {
  margin-top: 34px;
  padding: 32px 26px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border-radius: 24px;
  background: rgba(16, 11, 8, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.8);
}
.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.7);
  margin-bottom: 10px;
}
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--soft-white);
  margin-bottom: 10px;
}
.hero-text {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 640px;
  margin-bottom: 14px;
}
.hero-text + .hero-text {
  margin-top: 6px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 0.8rem;
}
.tag-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(244, 238, 231, 0.6);
  color: var(--light-text);
}
.hero-note {
  font-size: 0.8rem;
  opacity: 0.72;
}

.hero-stats-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.7);
  margin-bottom: 8px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0;
}
.mix-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}
.mix-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.84rem;
}
.mix-name {
  font-weight: 500;
  color: var(--soft-white);
}
.mix-desc {
  font-size: 0.78rem;
  opacity: 0.82;
}
.mix-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(160, 130, 108, 0.55);
}
.mix-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--olive-green), var(--earth-brown));
  width: 0;
  animation: fill 1.2s forwards;
}
.coffee { width: 70%; }
.clothes { width: 20%; }
.beauty { width: 10%; }

.pill-mini {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--soft-white);
  border: 1px solid rgba(124, 138, 84, 0.5);
  font-size: 0.74rem;
  color: var(--black-coffee);
  justify-self: flex-end;
}
.hero-stats-footnote {
  font-size: 0.78rem;
  opacity: 0.78;
  margin-top: 6px;
}

@keyframes fill {
  from { width: 0; }
}

/* ---------- GENERIC SECTION TYPO ---------- */
.section-header {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.7);
  margin-bottom: 6px;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: var(--soft-white);
  margin-bottom: 4px;
}
.section-subtitle {
  font-size: 0.9rem;
  opacity: 0.86;
  max-width: 780px;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.two-cols.single-col {
  grid-template-columns: minmax(0, 1fr);
}

/* ------ CONTACTS: спеціальні налаштування ------ */
#contact .two-cols {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  column-gap: 72px;
  align-items: flex-start;
}

#contact .section-subtitle,
#contact .text-block {
  max-width: 520px;
}
@media (min-width: 961px) {
  #contact .two-cols > div:last-child {
    margin-top: -100px;
  }
}

@media (max-width: 960px) {
  #contact .two-cols > div:last-child {
    margin-top: 0;
  }
}

#contact .contact-details {
  padding-left: 8px;
}

.text-block p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.highlight {
  font-weight: 500;
  color: #f2c994;
}

.bullet-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 238, 231, 0.7);
  margin-bottom: 6px;
}
.bullet-list {
  list-style: none;
  padding-left: 0;
  margin-top: 4px;
  font-size: 0.86rem;
}
.bullet-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.bullet-dot {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--olive-green), var(--earth-brown));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* -------- bean CTA styles -------- */
.bean-cta-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.bean-label {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.8);
}

.bean-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #f4e3c6, #5a3a2e);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.85),
    0 0 0 2px rgba(245, 233, 216, 0.7);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.bean-button:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.05);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(255, 255, 255, 0.9);
}

.bean-button img,
.bean-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}

/* ---------- PROCESS GRID ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.84rem;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.step {
  border-radius: 16px;
  padding: 10px;
  border: 1px dashed rgba(230, 214, 189, 0.7);
  background: rgba(25, 18, 12, 0.95);
}
.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 238, 231, 0.7);
  margin-bottom: 4px;
}
.step-name {
  font-weight: 500;
  margin-bottom: 4px;
  color: #f2c994;
}

/* ---------- CHIPS ---------- */
.chips-cloud {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
}
.chip {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(244, 238, 231, 0.6);
  color: var(--light-text);
}

.footer-mini {
  font-size: 0.76rem;
  margin-top: 10px;
  opacity: 0.7;
}

/* ---------- PHOTO SECTIONS ---------- */
.section-photo {
  position: relative;
  color: var(--soft-white);
  padding: 72px 26px;
  border-radius: 26px;
  border-top: none;
  margin-top: 42px;
  overflow: hidden;
  background-color: transparent;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.9);
}
.section-photo::before,
.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}
.section-photo::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-photo::after {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55),
    rgba(43, 42, 39, 0.8),
    rgba(90, 58, 46, 0.85)
  );
}
.section-photo .section-header,
.section-photo .two-cols {
  position: relative;
  z-index: 1;
}
.section-photo .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}
.section-photo .section-title {
  color: var(--soft-white);
}
.section-photo .section-subtitle,
.section-photo .text-block p,
.section-photo .bullet-title,
.section-photo .bullet-list li span {
  color: rgba(255, 255, 255, 0.92);
}
.section-photo .highlight {
  color: #fad9a1;
}
.section-photo .bullet-dot {
  background: radial-gradient(circle, #fad9a1, #f2b76a);
}
.section-photo .tag-pill,
.section-photo .chip {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(245, 233, 216, 0.7);
  color: var(--soft-white);
}

.coffee-photo::before {
  background-image: url("coffee-bg.png");
  background-position: center center;
}
.fashion-photo::before {
  background-image: url("clothing-bg.png");
  background-position: center center;
}
.beauty-photo::before {
  background-image: url("beauty-bg.png");
  background-position: center center;
}

/* ---------- FLOATING CONTACT BUBBLE ---------- */
.floating-contact {
  position: fixed;
  right: 32px;
  bottom: 38px;
  z-index: 120;
  width: 88px;
  height: 60px;
  border-radius: 26px;
  border: 3px solid var(--soft-white);
  background: linear-gradient(145deg, var(--olive-green), var(--earth-brown));
  box-shadow:
    0 12px 26px rgba(34, 24, 18, 0.75),
    inset 0 0 16px rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.floating-contact:hover {
  transform: translateY(-2px) scale(1.07);
  filter: brightness(1.06);
  box-shadow:
    0 18px 34px rgba(34, 24, 18, 0.9),
    inset 0 0 22px rgba(255, 255, 255, 0.35);
}
.floating-contact::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-top: 14px solid var(--earth-brown);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}
.floating-contact.bounce {
  animation: floatBounce 0.4s ease-out;
}
@keyframes floatBounce {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-5px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}
.bubble-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.bubble-dot {
  width: 10px;
  height: 10px;
  background: var(--soft-white);
  opacity: 0.92;
  border-radius: 50%;
  animation: bubbleBlink 1.5s infinite ease-in-out;
}
.bubble-dot:nth-child(2) { animation-delay: 0.25s; }
.bubble-dot:nth-child(3) { animation-delay: 0.5s; }

@keyframes bubbleBlink {
  0% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.3; transform: scale(0.8); }
}
.floating-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
  background: #c5503a;
  color: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--soft-white);
}

/* ---------- MODAL ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(245, 233, 216, 0.9), rgba(43, 42, 39, 0.88));
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
  z-index: 90;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  width: 100%;
  max-width: 520px;
  background: radial-gradient(circle at top, #ffffff, #f5e9d8);
  border-radius: 28px;
  box-shadow:
    0 26px 60px rgba(23, 20, 18, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  padding: 20px;
  position: relative;
  color: var(--black-coffee);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.2s ease-out,
    transform 0.2s ease-out;
}
.modal-backdrop.open .modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-emoji {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f2e3cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 22px rgba(90, 58, 46, 0.4);
}
.modal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--earth-brown);
}
.modal-subtitle {
  font-size: 0.86rem;
  opacity: 0.82;
  margin-top: 2px;
}
.modal-close {
  border: none;
  background: rgba(245, 233, 216, 0.9);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--black-coffee);
  box-shadow: 0 8px 18px rgba(23, 20, 18, 0.35);
}
.modal-body {
  margin-top: 10px;
  font-size: 0.86rem;
}
.form-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.form-grid-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 3px;
  color: rgba(43, 42, 39, 0.85);
}
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(160, 130, 108, 0.9);
  padding: 8px 9px;
  font-family: inherit;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.98);
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
input:focus,
textarea:focus {
  border-color: var(--olive-green);
  box-shadow: 0 0 0 2px rgba(124, 138, 84, 0.4);
}
textarea {
  resize: vertical;
  min-height: 80px;
}
.modal-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  opacity: 0.85;
}
.btn-send {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(145deg, var(--olive-green), var(--earth-brown));
  color: var(--soft-white);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(34, 24, 18, 0.6);
}

/* статус повідомлення + іконка */
.status-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--olive-green);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--olive-green);
  background: rgba(124, 138, 84, 0.08);
}

.status-icon.visible {
  display: flex;
}

/* --- CONTACTS: WhatsApp + map --- */
.wa-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.wa-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #f5e9d8, #5a3a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.75);
}

.wa-svg {
  width: 18px;
  height: 18px;
}

.wa-svg path {
  fill: #2b2a27;
}

.wa-number {
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  transition: text-shadow 0.15s ease;
}

.wa-number:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
}

.map-wrap {
  margin-top: 22px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}
.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 280px;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .two-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  /* контакти – теж одна колонка */
  #contact .two-cols {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-name-line1 {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }
  .brand-name-line2 {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(16, 11, 8, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .page {
    padding: 0 16px 90px;
  }
  .section,
  .hero {
    padding: 24px 18px 26px;
  }
  .section-photo {
    padding: 48px 18px;
  }

  /* контакти – красива картка */
  #contact .contact-details {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
  }

  #contact .contact-details .bullet-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-grid-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .floating-contact {
    right: 18px;
    bottom: 24px;
  }
  .mix-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4px;
  }
}
/* --- Simple overview hero (one column, like screenshot) --- */
.hero.hero-simple {
  grid-template-columns: minmax(0, 1fr);
}
/* --- Fix overview hero width (simple version) --- */
.hero.hero-simple {
  grid-template-columns: minmax(0, 1fr);
}

.hero.hero-simple > div {
  max-width: none;
}

.hero.hero-simple .hero-text {
  max-width: none;
}
/* -------- T-shirt CTA (like coffee bean) -------- */
.shirt-cta-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.shirt-label {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 231, 0.8);
}

.shirt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #f4e3c6, #5a3a2e);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.85),
    0 0 0 2px rgba(245, 233, 216, 0.7);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.shirt-button:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.05);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(255, 255, 255, 0.9);
}

.shirt-button img,
.shirt-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}
