:root {
  --ink: #283126;
  --olive: #687756;
  --olive-dark: #38412f;
  --sage: #9ba390;
  --sand: #c4a98d;
  --gold: #d9a323;
  --tomato: #d92f24;
  --leaf: #2f9f95;
  --leaf-dark: #247b75;
  --aqua-soft: #e2f5f1;
  --mint: #eef6dc;
  --teal: #2f7169;
  --plum: #7c3f55;
  --linen: #f7f6f1;
  --paper: #fffefa;
  --clay: #a86f48;
  --line: rgba(40, 49, 38, 0.14);
  --shadow: 0 18px 50px rgba(40, 49, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: var(--paper);
  background: var(--leaf-dark);
}

main {
  overflow: clip;
}

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--tomato);
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 88px;
  padding: 8px clamp(16px, 4vw, 54px);
  background: rgba(255, 254, 250, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.brand-name small {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  margin-left: auto;
}

.main-nav a,
.secondary-link,
.primary-link {
  color: var(--ink);
  text-decoration: none;
}

.main-nav a {
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--tomato);
  transform: translateY(-1px);
}

.admin-open,
.primary-link,
.secondary-link,
.whatsapp-button,
.admin-action,
.ghost-action,
.danger-action,
.add-button {
  border: 0;
  cursor: pointer;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 760;
}

.admin-open {
  padding: 0 18px;
  color: var(--paper);
  background: var(--olive-dark);
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100vh - 170px), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.72fr);
  gap: 16px;
  width: min(1380px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: clamp(480px, 44vw, 610px);
}

.showcase-main,
.side-promo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--olive-dark);
  box-shadow: 0 16px 40px rgba(40, 49, 38, 0.14);
}

.showcase-main {
  min-height: inherit;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease, transform 520ms ease;
  transform: scale(1.015);
}

.showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.showcase-slide::after,
.side-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 40, 30, 0.76) 0%, rgba(47, 113, 105, 0.36) 52%, rgba(47, 113, 105, 0.08) 100%);
}

.showcase-slide img,
.side-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.showcase-slide.active img {
  animation: showcaseDrift 7s ease-out both;
}

.side-promo img {
  object-position: center right;
}

.showcase-copy,
.side-promo div {
  position: relative;
  z-index: 1;
  color: #fff;
}

.showcase-copy {
  max-width: 720px;
  padding: clamp(26px, 5vw, 62px);
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  background: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-badge.warm {
  background: var(--gold);
  color: #2d260e;
}

.showcase-badge.green {
  background: var(--leaf-dark);
}

.showcase-badge.blue {
  background: var(--teal);
}

.showcase-badge.plum {
  background: var(--plum);
}

.showcase-copy h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.6rem, 4.65vw, 5rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.showcase-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.showcase-action,
.side-promo button {
  min-height: 46px;
  margin-top: 24px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.showcase-action:hover,
.side-promo button:hover {
  transform: translateY(-1px);
  background: var(--leaf-dark);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.showcase-dots {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.showcase-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.showcase-dots button.active {
  width: 34px;
  background: #fff;
}

.showcase-side {
  display: grid;
  grid-template-rows: 0.85fr 1.15fr;
  gap: 14px;
  min-height: inherit;
}

.side-promo {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.side-promo::after {
  background: linear-gradient(180deg, rgba(47, 113, 105, 0.02) 0%, rgba(47, 113, 105, 0.08) 52%, rgba(47, 113, 105, 0.68) 100%);
}

.side-promo.accent::after {
  background: linear-gradient(180deg, rgba(124, 63, 85, 0.02) 0%, rgba(124, 63, 85, 0.08) 52%, rgba(124, 63, 85, 0.66) 100%);
}

.side-promo div {
  display: grid;
  align-content: end;
  min-height: 100%;
  width: min(68%, 245px);
  padding: 14px;
}

.side-promo h2 {
  max-width: 220px;
  margin: 0;
  font-size: clamp(0.98rem, 1.28vw, 1.18rem);
  line-height: 1.12;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.side-promo .showcase-badge {
  min-height: 24px;
  margin-bottom: 9px;
  padding: 0 9px;
  font-size: 0.66rem;
}

.side-promo button {
  min-height: 32px;
  margin-top: 10px;
  padding: 0 11px;
  font-size: 0.78rem;
}

.brand-marquee {
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  color: #fff;
  background: var(--leaf-dark);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 54px;
  animation: marqueeMove 28s linear infinite;
}

.brand-marquee span {
  padding: 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand-marquee i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.manifesto-section,
.history-section,
.team-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.manifesto-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.manifesto-section h2 {
  max-width: 1020px;
  margin: 0;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6.4vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.manifesto-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
}

.manifesto-actions p {
  max-width: 620px;
  margin: 0;
  color: rgba(40, 49, 38, 0.7);
  font-size: 1.08rem;
  line-height: 1.65;
}

.history-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding: clamp(68px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.history-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  background: var(--olive-dark);
  border-radius: 8px;
}

.history-visual::before {
  content: "DUFER";
  position: absolute;
  left: -18px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.8;
}

.history-visual img {
  position: relative;
  width: min(310px, 82%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.history-visual span {
  position: relative;
  align-self: end;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.history-content h2,
.team-heading h2 {
  margin: 0;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.history-content > p:not(.eyebrow),
.team-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(40, 49, 38, 0.7);
  line-height: 1.7;
}

.history-timeline {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.history-timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.history-timeline article > span,
.team-roles article > span {
  color: var(--tomato);
  font-weight: 900;
}

.history-timeline strong {
  display: block;
  color: var(--olive-dark);
  font-size: 1.02rem;
}

.history-timeline p {
  margin: 5px 0 0;
  color: rgba(40, 49, 38, 0.66);
  line-height: 1.5;
}

.team-section {
  padding: clamp(68px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 24px 64px;
  align-items: end;
}

.team-heading .eyebrow {
  grid-column: 1 / -1;
}

.team-heading > p:not(.eyebrow) {
  margin: 0;
}

.team-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}

.team-roles article {
  position: relative;
  min-height: 290px;
  padding: 28px;
  background: var(--paper);
  transition: color 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.team-roles article:hover {
  z-index: 1;
  color: #fff;
  background: var(--leaf-dark);
  transform: translateY(-6px);
}

.team-roles article:hover h3,
.team-roles article:hover p,
.team-roles article:hover span {
  color: #fff;
}

.team-roles h3 {
  margin: 92px 0 12px;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.team-roles p {
  margin: 0;
  color: rgba(40, 49, 38, 0.68);
  line-height: 1.58;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(247, 246, 241, 0.96) 0%, rgba(247, 246, 241, 0.74) 42%, rgba(247, 246, 241, 0.18) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 96px);
  padding: 34px 0 46px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid rgba(40, 49, 38, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(40, 49, 38, 0.1);
}

.hero-brand img {
  width: clamp(108px, 10vw, 150px);
  height: clamp(108px, 10vw, 150px);
  object-fit: contain;
}

.hero-brand div {
  display: grid;
  gap: 4px;
}

.hero-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.1em;
}

.hero-brand span {
  color: var(--tomato);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.4vw, 5.7rem);
  line-height: 0.96;
  font-weight: 500;
}

.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(40, 49, 38, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-link {
  color: var(--paper);
  background: var(--leaf);
  box-shadow: var(--shadow);
}

.secondary-link {
  color: var(--tomato);
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid var(--line);
}

.primary-link,
.secondary-link,
.whatsapp-button,
.admin-action,
.ghost-action,
.danger-action,
.add-button,
.category-tabs button,
.admin-row-actions button,
.icon-button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-link:hover,
.secondary-link:hover,
.whatsapp-button:hover,
.admin-action:hover,
.ghost-action:hover,
.danger-action:hover,
.add-button:hover,
.admin-row-actions button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(40, 49, 38, 0.12);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro-band div {
  min-height: 112px;
  padding: 26px clamp(16px, 4vw, 54px);
  background: var(--paper);
}

.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-band strong {
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2.4vw, 1.75rem);
  font-weight: 500;
}

.section-shell,
.story-section,
.order-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.story-copy h2,
.admin-topbar h2 {
  margin: 0;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 500;
}

.section-heading p:not(.eyebrow),
.story-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(40, 49, 38, 0.72);
  line-height: 1.68;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.search-field,
.customer-form label,
.admin-card label {
  display: grid;
  gap: 8px;
  color: rgba(40, 49, 38, 0.75);
  font-size: 0.88rem;
  font-weight: 760;
}

.admin-card .checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--olive-dark);
}

.checkbox-field input {
  width: auto;
  accent-color: var(--leaf-dark);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(47, 159, 149, 0.14);
}

.category-tabs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--olive-dark);
  background: rgba(255, 254, 250, 0.76);
  cursor: pointer;
  font-weight: 760;
}

.category-tabs button:hover {
  border-color: rgba(47, 159, 149, 0.42);
  box-shadow: 0 8px 20px rgba(40, 49, 38, 0.08);
}

.category-tabs button.active {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--leaf);
}

.product-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(56, 65, 47, 0.28) transparent;
}

.product-card {
  flex: 0 0 clamp(310px, 31vw, 390px);
  display: grid;
  grid-template-rows: 280px 1fr;
  min-height: 448px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(40, 49, 38, 0.07);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 159, 149, 0.32);
  box-shadow: 0 18px 42px rgba(40, 49, 38, 0.12);
}

.catalog-shortcut {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-initial {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.product-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-kicker span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--leaf-dark);
  background: var(--aqua-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-body h3 {
  margin: 0;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.product-body p {
  margin: 0;
  color: rgba(40, 49, 38, 0.72);
  line-height: 1.55;
}

.quantity-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
  margin-top: auto;
}

.add-button {
  color: var(--paper);
  background: var(--leaf);
}

.story-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.commitment-grid {
  display: grid;
  gap: 14px;
}

.commitment-grid article {
  padding: 24px;
  background: linear-gradient(180deg, var(--paper), #fff9ee);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.commitment-grid span {
  color: var(--tomato);
  font-weight: 900;
}

.commitment-grid h3 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.commitment-grid p {
  margin: 0;
  color: rgba(40, 49, 38, 0.72);
  line-height: 1.55;
}

.order-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.cart-panel,
.customer-form,
.admin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(40, 49, 38, 0.06);
}

.cart-panel {
  padding: 24px;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-empty {
  margin: 0;
  color: rgba(40, 49, 38, 0.64);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-row strong {
  display: block;
}

.cart-row span {
  color: rgba(40, 49, 38, 0.68);
  font-size: 0.88rem;
}

.cart-row button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--linen);
  cursor: pointer;
}

.customer-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.whatsapp-button {
  color: var(--paper);
  background: #1f8f4f;
}

.form-note {
  margin: 0;
  color: rgba(40, 49, 38, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(16px, 4vw, 54px);
  color: var(--paper);
  background: var(--olive-dark);
}

.site-footer img {
  width: 58px;
  height: 58px;
  padding: 4px;
  background: var(--paper);
  border-radius: 50%;
}

.site-footer p {
  margin: 3px 0 0;
  color: rgba(255, 254, 250, 0.74);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer nav button,
.site-footer nav a {
  border: 0;
  padding: 0;
  color: rgba(255, 254, 250, 0.8);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.86rem;
}

.site-footer nav button:hover,
.site-footer nav a:hover {
  color: #fff;
}

.floating-order {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 14px 34px rgba(40, 49, 38, 0.22);
  text-decoration: none;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 49, 38, 0.28);
}

.information-dialog {
  width: min(680px, calc(100% - 24px));
  max-height: min(86vh, 760px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.information-dialog::backdrop {
  background: rgba(25, 39, 30, 0.62);
  backdrop-filter: blur(4px);
}

.information-dialog-content {
  position: relative;
  padding: clamp(28px, 6vw, 54px);
}

.information-dialog-content h2 {
  max-width: 560px;
  margin: 0 48px 22px 0;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.information-dialog-content h3 {
  margin: 24px 0 6px;
  color: var(--leaf-dark);
  font-size: 1rem;
}

.information-dialog-content p:not(.eyebrow) {
  margin: 0 0 12px;
  color: rgba(40, 49, 38, 0.72);
  line-height: 1.62;
}

.information-dialog-content .dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-dialog {
  width: min(1120px, calc(100% - 22px));
  max-height: min(88vh, 860px);
  padding: 0;
  color: var(--ink);
  background: var(--linen);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-dialog::backdrop {
  background: rgba(40, 49, 38, 0.48);
}

.admin-shell {
  margin: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.admin-topbar h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--linen);
  cursor: pointer;
  font-size: 1.5rem;
}

.admin-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  padding: 14px;
}

.admin-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.admin-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.admin-help {
  margin: 0;
  color: rgba(40, 49, 38, 0.64);
  line-height: 1.5;
}

.admin-card.wide {
  grid-column: 1 / -1;
}

.product-form {
  display: grid;
  gap: 13px;
}

.admin-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-admin-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
}

.admin-action,
.ghost-action,
.danger-action {
  padding: 0 16px;
}

.admin-action {
  color: var(--paper);
  background: var(--leaf);
}

.ghost-action {
  color: var(--olive-dark);
  background: var(--linen);
  border: 1px solid var(--line);
}

.danger-action {
  color: #fff;
  background: #9b3d2d;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-filter-field {
  max-width: 360px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: opacity 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.admin-product-row.inactive {
  opacity: 0.62;
  background: rgba(255, 254, 250, 0.52);
}

.admin-product-row img,
.admin-product-thumb {
  width: 64px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(47, 159, 149, 0.14);
}

.admin-product-row h4 {
  margin: 0 0 4px;
}

.admin-product-row p {
  margin: 0;
  color: rgba(40, 49, 38, 0.66);
  font-size: 0.88rem;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 6px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 0.76rem;
  font-weight: 850;
}

.admin-status.available {
  color: #245538;
  background: rgba(31, 122, 70, 0.12);
}

.admin-status.unavailable {
  color: #8a3a2d;
  background: rgba(155, 61, 45, 0.12);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-row-actions button {
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 36px;
  padding: 0 10px;
  background: var(--paper);
  cursor: pointer;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes showcaseDrift {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-marquee-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .showcase-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-main {
    min-height: 500px;
  }

  .showcase-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 220px;
  }

  .side-promo div {
    width: min(64%, 240px);
  }

  .showcase-admin-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .manifesto-actions,
  .team-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .history-section {
    grid-template-columns: 1fr;
  }

  .history-visual {
    min-height: 420px;
  }

  .team-roles {
    grid-template-columns: 1fr;
  }

  .team-roles article {
    min-height: 230px;
  }

  .team-roles h3 {
    margin-top: 52px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .brand-name strong {
    font-size: 2.2rem;
  }

  .brand-name small {
    font-size: 0.72rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .hero {
    min-height: clamp(600px, calc(100vh - 190px), 700px);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 246, 241, 0.97) 0%, rgba(247, 246, 241, 0.78) 58%, rgba(247, 246, 241, 0.2) 100%);
  }

  .hero-content {
    margin-inline: 16px;
    align-self: start;
    padding-top: 54px;
  }

  .intro-band,
  .catalog-toolbar,
  .story-section,
  .order-section,
  .admin-content {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-basis: min(420px, 72vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .showcase-section {
    width: min(100% - 20px, 520px);
    margin-top: 12px;
    gap: 12px;
  }

  .showcase-main {
    min-height: 500px;
  }

  .manifesto-section h2 {
    font-size: 2.65rem;
  }

  .history-visual {
    min-height: 350px;
  }

  .history-content h2,
  .team-heading h2 {
    font-size: 2.45rem;
  }

  .showcase-copy {
    padding: 24px;
  }

  .showcase-copy h1 {
    font-size: 2.35rem;
  }

  .showcase-dots {
    right: 20px;
    bottom: 18px;
  }

  .showcase-side,
  .showcase-admin-grid {
    grid-template-columns: 1fr;
  }

  .side-promo {
    min-height: 210px;
  }

  .side-promo div {
    width: min(70%, 250px);
    padding: 14px;
  }

  .side-promo h2 {
    font-size: 1.05rem;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .brand {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .floating-order {
    right: 12px;
    bottom: 12px;
  }

  .brand-name strong {
    font-size: 2.2rem;
  }

  .hero-brand {
    width: 100%;
    align-items: center;
    padding-right: 12px;
  }

  .hero-brand img {
    width: 90px;
    height: 90px;
  }

  .hero-brand strong {
    font-size: 2.1rem;
  }

  .product-card {
    flex-basis: min(360px, 86vw);
    grid-template-rows: 190px 1fr;
    min-height: auto;
  }

  .quantity-row,
  .cart-row,
  .admin-product-row {
    grid-template-columns: 1fr;
  }

  .cart-row button {
    width: 100%;
  }
}
