
:root {
  --bg: #f6f7f3;
  --bg-accent: #e9f3ec;
  --ink: #1d2b24;
  --muted: #5b6b63;
  --primary: #1f7a44;
  --primary-dark: #135432;
  --accent: #cbd6d0;
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  /* background: radial-gradient(circle at top left, #fdfdfb 0%, var(--bg) 45%, var(--bg-accent) 100%); */
  min-height: 100vh;
  scroll-padding-top: 72px;
}

.bold {
  font-weight: 700;
}

.page {
  width: 100%;

  margin: 0 auto;
  padding: 64px 0 0;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-spacer,
.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.header-actions {
  justify-content: flex-end;
  gap: 8px;
}

.logo-wrap img {
  width: 215px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  padding: 12px 0;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  width: 100%;
  left: 0;
  right: 0;
}

.nav-toggle {
  display: none;
  width: 60px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(30, 52, 40, 0.15);
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  margin-right: 6px;
}

@media (min-width: 801px) {
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 52px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.728);
  border: 1px solid rgba(30, 52, 40, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(30, 52, 40, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 60;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 12px 20px;
  max-width: 320px;
  margin: 0 auto;
}

.mobile-nav-inner a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  padding: 12px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  text-align: left;
}

.mobile-nav-inner a:hover {
  background: rgba(31, 122, 68, 0.08);
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  padding: 10px 8px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.2) 0%, rgba(7, 7, 7, 0.8) 50%, rgba(12, 12, 12, 0.3) 100%),
    url("../img/raypathdom_bg.jpg");

  /* background-image:
    linear-gradient(120deg, rgba(253, 253, 251, 0.2) 0%, rgba(243, 248, 242, 0.8) 50%, rgba(234, 245, 234, 0.3) 100%),
    url("../img/raypathdom_bg.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 0 8px;
  min-height: 600px;
  border-top: 1px solid #b19112d0;
  border-bottom: 1px solid #b19112d0;
}

.hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.hero-body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  flex: 1;
}

.hero-trust {
  margin-top: 0;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  align-items: center;
  font-size: .85rem;
  letter-spacing: 0.1em;
  line-height: 1.2rem;
  text-transform: uppercase;
  background: #1f7a4367;
  color: rgba(255, 255, 255, 0.846);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  content: '•';
  color: rgba(255, 255, 255, 0.55);
}

.hero-info-bar {
  margin: -8px auto 0;
  padding: 10px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #f6f7f3c6;
  background: rgb(0, 0, 0);
  border-top: 1px solid rgba(31, 122, 68, 0.16);
  border-bottom: 1px solid rgba(31, 122, 68, 0.12);
}

.hero-info-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-info-bar span::before {
  content: '•';
  color: rgba(255, 255, 255, 0.689);
}

.hero-text h1 {
  font-size: clamp(42px, 8vw, 72px);
  color: #ffffffbb;
  margin: 8px 0 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px auto 16px;
  width: max-content;
  max-width: 100%;
}

.hero-title h1 {
  margin: 0;
}

.hero-logo {
  width: 64px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.hero-text .eyebrow {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.699);
}

.hero-text hr {
  width: min(520px, 80%);
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 18px auto;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-text,
.hero-card,
.hero-card-rotator {
  width: 100%;
  max-width: 520px;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-accent);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions .btn {
  height: 42px;
  padding: 0 22px;
}

.hero-actions .btn.ghost {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15rem;
  border: 1px solid transparent;
  font-weight: 400;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  margin-top: 15px;
  border-color: rgba(31, 122, 68, 0.35);
  color: var(--primary-dark);
  background: rgba(31, 122, 68, 0.08);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 20px rgba(31, 122, 68, 0.15);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn.ghost:hover {
  background: rgba(31, 122, 68, 0.14);
  border-color: rgba(31, 122, 68, 0.55);
  box-shadow: 0 10px 20px rgba(31, 122, 68, 0.16);
}

.btn:focus-visible {
  outline: 2px solid rgba(31, 122, 68, 0.5);
  outline-offset: 2px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(31, 122, 68, 0.18);
  background: rgba(31, 122, 68, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(31, 122, 68, 0.28);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  z-index: 60;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 16px 30px rgba(31, 122, 68, 0.32);
  transform: translateY(-2px);
}

@media (min-width: 801px) {
  .back-to-top {
    display: none;
  }
}

.btn.small {
  padding: 8px 16px;
  font-size: 13px;
}

.hero-text {
  max-width: 600px;
}

.hero-card {
  /* background: linear-gradient(135deg, #ffffff 0%, #f4faf2 55%, #eef6ef 100%); */
  font-style: normal;
  text-align: left;
  font-size: 0.9rem;
  max-width: 500px;
  max-height: 200px;
  border-radius: 10px;

  padding: 20px 20px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 122, 68, 0.12);


  background: rgba(96, 96, 96, 0.1);
  /* border: 1px solid rgba(77, 77, 77, 0.498); */
  box-shadow: rgba(187, 199, 208, 0.3) 0px 1px 2px 0px, rgba(152, 158, 163, 0.15) 0px 1px 3px 1px;
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
}

.hero-card-rotator {
  position: relative;
  min-height: 250px;
  margin: 0 auto;
  justify-self: center;
}

.hero-card-rotator .hero-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-card-rotator .hero-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-progress {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: min(240px, 70%);
  height: 6px;
  background: rgba(188, 188, 188, 0.1);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  border-radius: inherit;
}

.hero-card-rotator.is-animating .hero-progress span {
  animation: heroProgress var(--hero-interval, 7s) linear forwards;
}

.hero-card--cta {
  text-align: left;
  padding: 16px;
}

.hero-card--cta .hero-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.kitchen-cta-media {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 100px;
  border: 2px solid rgba(31, 122, 68, 0.25);
  box-shadow: 0 10px 18px rgba(31, 122, 68, 0.22);
  background: #f4f7f2;
}

.kitchen-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kitchen-cta-content {
  display: grid;
  gap: 4px;
  align-items: start;
  align-content: start;
}

.hero-card--cta .card-role {
  margin-bottom: 2px;
}

.hero-card--cta .card-name {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.hero-card--cta .card-lead {
  max-width: 320px;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.kitchen-hero-btn {
  margin-top: 30px;
  align-self: flex-start;
  background: #196ad3!important;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  box-shadow: 0 14px 26px rgba(31, 122, 68, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.kitchen-hero-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 32px rgba(31, 122, 68, 0.32);
  filter: brightness(1.06);
  animation: ctaGlow 0.7s ease;
}

@keyframes ctaGlow {
  0% {
    box-shadow: 0 14px 26px rgba(31, 122, 68, 0.22);
  }
  50% {
    box-shadow: 0 22px 36px rgba(31, 122, 68, 0.36);
  }
  100% {
    box-shadow: 0 18px 32px rgba(31, 122, 68, 0.32);
  }
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 239, 224, 0.35), transparent 70%);
  z-index: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 10px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-card-inner {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 16px;
}

.card-avatar {
  width: 120px;
  height: 120px;
  
  overflow: hidden;
  flex: 0 0 120px;
}

.card-avatar img,
img.card-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-meta {
  display: grid;
  gap: 4px;
}

.card-role {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--bg-accent);
}

.card-quote {
  display: grid;
  gap: 6px;
  padding: 6px 0 4px;
  position: relative;
}

.card-quote::before {
  display: none;
  content: "“";
  position: absolute;
  left: -8px;
  top: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: rgba(31, 122, 68, 0.18);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0;
}

.card-lead {
  margin: 0;
  font-size: 1rem!important;
  color: var(--muted);
  line-height: 1.55;
  color: var(--bg-accent);
}

.card-list {
  font-size: .85rem;
  padding: 0;
  margin: 2px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  text-align: left;
}

.card-list li {
  position: relative;
  padding-left: 18px;
}

.card-list li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.card-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 122, 68, 0.12);
}

.card-sign {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: right;
}

@media (max-width: 800px) {
  .hero-card {
    text-align: center;
  }

  .card-header {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .card-meta {
    justify-items: center;
  }

  .card-sign {
    text-align: center;
  }

  .card-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .card-list {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: center;
  }

  .hero-card--cta .card-lead {
    max-width: 100%;
  }

  .hero-card--cta .hero-card-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .kitchen-hero-btn {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }

  .hero-card-rotator {
    max-width: 92vw;
    min-height: unset;
    height: auto;
    position: relative;
  }

  .hero-card {
    padding: 16px;
  }

  .hero-card-rotator .hero-card {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .hero-card-rotator .hero-card.is-active {
    display: block;
    animation: heroCardFade 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .kitchen-cta-media {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .hero-progress {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 12px auto 0;
    width: min(260px, 80%);
  }
}

@keyframes heroCardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@media (min-width: 980px) {
  .hero-text,
  .hero-card,
  .hero-card-rotator {
    max-width: 620px;
  }

  .hero-card--cta {
    display: flex;
    align-items: center;
  }

  .hero-card--cta .hero-card-inner {
    width: 100%;
  }

  .hero-card {
    max-height: none;
    padding: 18px 20px;
  }

  .hero-card-rotator {
    min-height: 260px;
  }

  .hero-card--cta .hero-card-inner {
    gap: 16px;
    align-items: stretch;
  }

  .kitchen-cta-media {
    width: 140px;
    height: 140px;
    flex-basis: 140px;
  }

  .hero-card--cta .card-name {
    font-size: 1.2rem;
  }

  .kitchen-cta-content {
    min-height: 140px;
    align-content: space-between;
  }

  .hero-card--cta .card-lead {
    max-width: 420px;
    font-size: 0.9rem;
  }

  .kitchen-hero-btn {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .kitchen-hero-btn {
    max-width: 100%;
  }
}

.text-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.section {
  max-width: 1200px;
  margin-top: 64px;
  margin: auto;
  scroll-margin-top: 74px;
}

.consultant-section {
  padding: 24px 24px 56px;
}

.consultant-wrap {
  display: flex;
  justify-content: center;
}

.consultant-card {
  max-width: 980px;
  padding: 16px 28px;
}

.consultant-card .hero-card-inner {
  gap: 6px;
}

.consultant-card .card-header {
  justify-content: flex-start;
  gap: 14px;
}

.consultant-card .card-avatar {
  width: 100px;
  height: 100px;
  flex-basis: 100px;
}

.consultant-card .card-note {
  padding-top: 8px;
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 12px;
}

.section-actions .btn {
  font-size: 0.9rem;
}

.section.kitchen .section-actions {
  margin-top: 8px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.section-cta .btn {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-links {
  padding: 24px 24px 56px;
}

.landing-links .section-head {
  flex-direction: column;
  gap: 10px;
}

.landing-links-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.landing-link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(31, 122, 68, 0.12);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.landing-link-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.landing-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.landing-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 122, 68, 0.3);
  box-shadow: 0 14px 28px rgba(31, 122, 68, 0.18);
}

.section.promo {
  padding: 40px 24px 64px;
  background: linear-gradient(180deg, rgba(31, 122, 68, 0.08), rgba(255, 255, 255, 0.95));
}

.promo .section-head {
  flex-direction: column;
  margin-bottom: 18px;
}

.section.promo {
  position: relative;
}

.section.promo.recommended .promo-card .btn {
  margin-top: auto;
}

.section.promo.recommended .promo-badge {
  background: linear-gradient(135deg, #2a8f5b, #1f7a44);
}

.section.promo.recommended .promo-card-body h3 {
  text-align: center;
}

.section.promo.recommended .promo-slide h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.section.promo.recommended .promo-prices {
  width: 100%;
  justify-content: flex-end;
  text-align: right;
}

.section.promo.recommended .promo-prices .promo-new {
  text-align: right;
  margin-left: auto;
}

.promo-footer-cta {
  padding: 0 24px 40px;
}

.promo-footer-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.687);
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.promo-footer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 520px;
}

.promo-footer-card a:not(.btn) {
  color: #9fe3b2;
  font-weight: 600;
}

.promo-footer-card .btn {
  white-space: nowrap;
  padding: 10px 18px;
}

@media (max-width: 800px) {
  .promo-footer-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-footer-card p {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .section.promo {
    padding-top: 8px;
  }

  .promo-slider {
    margin-bottom: 52px;
  }
}

.promo-slider {
  position: relative;
  max-width: 940px;
  margin: 10px auto 40px;
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 122, 68, 0.14);
  box-shadow: 0 20px 50px rgba(25, 52, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.promo-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(31, 122, 68, 0.22);
}

.promo-slide-body {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-slide img,
.promo-slide .promo-image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 26px rgba(31, 122, 68, 0.16);
  flex-shrink: 0;
}

.promo-slide h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.promo-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.promo-slide-cta {
  margin-top: 10px;
}

.promo-empty {
  max-width: 760px;
  margin: 18px auto 8px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.promo-empty h3 {
  margin: 0 0 8px;
}

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

.promo-feature {
  max-width: 980px;
  margin: 18px auto 10px;
}

.promo-feature-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 20px 50px rgba(25, 52, 39, 0.18);
  border: 1px solid rgba(31, 122, 68, 0.14);
  display: grid;
  gap: 18px;
}

.promo-feature-media {
  border-radius: 18px;
  overflow: hidden;
  background: #f1f4f0;
  box-shadow: 0 16px 28px rgba(25, 52, 39, 0.16);
  max-width: 520px;
  margin: 0 auto;
}

.promo-feature-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.promo-feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(31, 122, 68, 0.22);
}

.promo-feature-body {
  display: grid;
  gap: 12px;
}

.promo-feature-body h3 {
  margin: 0;
  font-size: 1.4rem;
}

.promo-feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.promo-feature-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.promo-feature .btn {
  justify-self: start;
}

.promo-feature .btn.primary {
  box-shadow: 0 14px 26px rgba(31, 122, 68, 0.22);
}

.promo-feature .btn.primary:hover {
  box-shadow: 0 18px 32px rgba(31, 122, 68, 0.28);
}

.promo-progress {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: min(240px, 70%);
  height: 6px;
  background: rgba(31, 122, 68, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.promo-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(25, 106, 211, 0.3), #196ad3);
  border-radius: inherit;
}

.promo-slider.is-animating .promo-progress span {
  animation: promoProgress var(--promo-interval, 5s) linear forwards;
}

@keyframes promoProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.promo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo-divider {
  height: 1px;
  width: min(820px, 90%);
  margin: 6px auto 32px;
  background: linear-gradient(90deg, transparent, rgba(31, 122, 68, 0.18), transparent);
}

.promo-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 8px auto 26px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 122, 68, 0.16);
  box-shadow: 0 10px 24px rgba(31, 122, 68, 0.12);
  font-weight: 600;
  color: var(--ink);
}

.promo-countdown-label {
  font-size: 0.88rem;
  color: var(--muted);
}

.promo-countdown-value {
  font-size: 1rem;
  color: #006805;
}

.promo-countdown.is-ended .promo-countdown-value {
  color: rgba(62, 80, 71, 0.65);
}

.section.promo .promo-countdown {
  position: sticky;
  top: 64px;
  z-index: 40;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.hero-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  width: fit-content;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid #01c50bdb;
  box-shadow: 0 12px 22px rgba(31, 122, 68, 0.12);
}

.hero-promo-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dbb00, #01c50b);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-promo-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-promo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border-radius: 999px;
  background: #196ad3;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(25, 106, 211, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-promo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(25, 106, 211, 0.32);
  filter: brightness(1.05);
}

.hero-promo-countdown {
  margin: 0;
  padding: 6px 10px;
  box-shadow: none;
  background: rgba(31, 122, 68, 0.08);
}

@media (max-width: 700px) {
  .promo-countdown {
    top: 58px;
    width: min(320px, 92%);
    justify-content: center;
    text-align: center;
  }

  .hero-promo {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 901px) {
  .hero-promo {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    margin: 0 0 24px;
    padding: 12px 32px;
    border-radius: 12px;
  }
}

.hero--promo {
  padding-top: 0;
}

.hero--promo .hero-body {
  padding-top: 28px;
}

.hero--promo .hero-promo {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.687);
  box-shadow: none;
}

.hero--promo .hero-promo-text {
  color: #f5f7f6;
}

.hero--promo .hero-promo-link {
  box-shadow: 0 10px 20px rgba(25, 106, 211, 0.35);
}

.hero--promo .hero-promo-countdown {
  background: rgba(255, 255, 255, 0.9);
}

.promo-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31, 122, 68, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  height: 100%;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 320px 420px;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(31, 122, 68, 0.2);
}

.promo-card img,
.promo-card .promo-image-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #196ad3, #2f84ff);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 22px rgba(25, 106, 211, 0.28);
  z-index: 2;
}

.promo-slide .promo-discount {
  position: relative;
  top: auto;
  left: auto;
  align-self: flex-start;
  margin-left: auto;
  margin-right: 6px;
}

.promo-image-placeholder {
  display: grid;
  place-items: center;
  color: rgba(31, 122, 68, 0.8);
  font-weight: 600;
  background: rgba(31, 122, 68, 0.08);
}

.promo-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1;
}

.promo-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.promo-title-link {
  color: inherit;
  text-decoration: none;
}

.promo-title-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.promo-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  display: block;
  overflow: visible;
}

.promo-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.promo-old {
  color: rgba(62, 80, 71, 0.6);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.promo-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: #196ad3;
}

.promo-card .btn {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .promo-slider {
    margin-bottom: 24px;
  }

  .promo-slide {
    padding: 18px;
  }

  .promo-slide-body {
    flex-direction: column;
    text-align: center;
  }

  .promo-slide img,
  .promo-slide .promo-image-placeholder {
    width: 140px;
    height: 140px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card .btn {
    align-self: center;
  }
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-head>div {
  text-align: center;
}

.section-head h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 20px;
  margin-top: 30px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin: 0 0 24px;
  margin-bottom: 30px;
  text-align: center;
}

.section-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-top: 4px;
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .section-head {
    flex-direction: column;
    align-items: center;
  }

  .section-head>div,
  .section-head h2,
  .section-head p {
    text-align: center;
  }

  .section-actions {
    justify-content: center;
  }

  .section.kitchen .section-actions {
    margin-top: 18px;
  }

  .contact-form {
    width: 90vw;
  }
  .contact-form .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .landing-links {
    padding: 16px 16px 44px;
  }

  .landing-links-grid {
    grid-template-columns: 1fr;
  }
}

.section.tips .section-head {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section.tips .section-head>div,
.section.tips .section-head h2,
.section.tips .section-head p {
  text-align: center;
}

.section.articles .section-head {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section.articles .section-head>div,
.section.articles .section-head h2,
.section.articles .section-head p {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(20, 40, 28, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 122, 68, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f4f5f2;
}

.product-placeholder {
  height: 220px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
  background: linear-gradient(135deg, #f2f5ef, #e3ece4);
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-body h3 {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  min-height: 2.6em;
}

.product-card .btn.small {
  margin-top: auto;
  align-self: center;
  padding: 10px 18px;
  font-size: .9rem;
  letter-spacing: 0.12rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1f7a44 0%, #2f8f55 100%);
  border: 1px solid rgba(31, 122, 68, 0.3);
  box-shadow: 0 12px 22px rgba(31, 122, 68, 0.22);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 40, 28, 0.18);
  border-color: rgba(31, 122, 68, 0.2);
}

.product-card img {
  transition: transform 220ms ease;
}

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

.petal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.petal-card {
  display: grid;
  gap: 0;
}

.petal-media {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 350px;
  aspect-ratio: 6 / 4;
  border-radius: 100% 100% 100% 100% / 0% 100% 0% 100%;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0f4ee;
  position: relative;
  text-decoration: none;
  transform-origin: center;
  box-shadow: var(--shadow);
}

.petal-card:nth-child(2) .petal-media {
  transform: scaleX(-1);
}

.petal-card:nth-child(3) .petal-media {
  transform: scaleY(-1);
}

.petal-card:nth-child(4) .petal-media {
  transform: scale(-1, -1);
}

.petal-media img,
.petal-media .product-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.petal-card:nth-child(2) .petal-media img,
.petal-card:nth-child(2) .petal-overlay {
  transform: scaleX(-1);
}

.petal-card:nth-child(3) .petal-media img,
.petal-card:nth-child(3) .petal-overlay {
  transform: scaleY(-1);
}

.petal-card:nth-child(4) .petal-media img,
.petal-card:nth-child(4) .petal-overlay {
  transform: scale(-1, -1);
}

.petal-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(160deg, rgba(9, 45, 27, 0.6), rgba(9, 45, 27, 0.25));
}

.petal-overlay h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 20px;
}

.petal-overlay p {
  margin: 0 0 12px;
  font-size: 14px;
}

.petal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f6fff9;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(9, 45, 27, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.petal-link::after {
  content: "›";
  font-size: 14px;
}

.petal-media:hover .petal-link,
.petal-media:focus-visible .petal-link {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(9, 45, 27, 0.35);
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 900px) {
  .petal-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    max-width: 980px;
    margin: 0 auto;
  }

  .petal-media {
    aspect-ratio: 7 / 4;
  }
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tip-card.is-clickable {
  cursor: pointer;
}

.tips-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.messenger-icon {
  width: 18px;
  height: 18px;
}

.facebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: #1877f2;
  color: #1877f2;
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.08);
}

.facebook-icon {
  width: 18px;
  height: 18px;
}

.tip-card {
  background: radial-gradient(circle at top left, #fdfdfb 0%, var(--bg) 45%, var(--bg-accent) 100%);
  border-radius: 0% 30px 0% 30px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  gap: 10px;
}

.tip-card h3 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.tip-card.is-active {
  outline: 2px solid rgba(31, 122, 68, 0.35);
  box-shadow: 0 14px 30px rgba(31, 122, 68, 0.15);
}

.tip-toggle {
  position: absolute;
  right: 8px;
  bottom: 4px;
  border: 1px solid rgba(31, 122, 68, 0.35);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tip-article {
  margin-top: 24px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: grid;
  gap: 16px;
}

.tip-article[hidden] {
  display: none !important;
}

.tip-article-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(31, 122, 68, 0.25);
  background: #f7fbf8;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  margin-bottom: 20px;
  gap: 16px;
}

.contact-details {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #fdfdfb 0%, var(--bg) 45%, var(--bg-accent) 100%);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  text-align: center;
}

.contact-details h3 {
  margin: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.flash-list {
  max-width: 640px;
  margin: 12px auto 20px;
  display: grid;
  gap: 8px;
}

.flash.success {
  background: #e7f6ee;
  color: #1f7a44;
}

.flash.error {
  background: #ffe9e9;
  color: #a12323;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 52, 40, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(30, 52, 40, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

@media (max-width: 700px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px) {

  .site-nav {
    display: none;
  }

  .header-top {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header-spacer {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    margin-bottom: -50px;
  }

  .logo-wrap img {
    width: 120px;
    height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 70;
    background: rgba(255, 255, 255, 0.452);
    border-color: rgba(30, 52, 40, 0.18);
    
    backdrop-filter: blur(3px) saturate(140%);
    -webkit-backdrop-filter: blur(3px) saturate(140%);
  }

  .header-actions .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
  }

  .section-actions {
    padding-left: 12px;
    margin-top: 15px;
  }

  .section.promo {
    margin-top: 20px;
  }

  .page {
    padding: 0;
  }

  .hero {
    padding: 44px 0 32px;
    gap: 20px;
    overflow-x: hidden;
    min-height: 0;
  }

  .hero-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  .hero-title {
    margin: 12px 0 20px;
    gap: 10px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-title h1 {
    text-align: center;
    width: 100%;
    max-width: 92vw;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-logo {
    width: 52px;
  }

  .hero-text {
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    min-width: 0;
  }

  .hero-text hr {
    margin: 22px auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-actions .btn {
    width: min(84vw, 320px);
    min-width: 0;
    font-size: 15px;
    padding: 12px 16px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.2;
    min-height: 44px;
    letter-spacing: 0.12rem;
    position: relative;
    overflow: hidden;
  }

  .hero-actions .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
  }

  .hero-card {
    padding: 16px;
    width: 90vw;
    max-height: fit-content;
/*     background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(209, 208, 208, 0.7); */
    /* box-shadow: rgba(0, 0, 0, 0.343) 0px 2px 4px; */
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
  }

  .card-title {
    text-align: center;
  }

  .card-lead {
    text-align: justify;
  }

  .card-list {
    font-size: 1rem;
  }

  .card-note {
    margin-top: 10px;
  }

  .card-sign {
    text-align: right;
  }

  .eyebrow {
    font-size: 14px;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
    letter-spacing: 0.1em;
  }

  .hero-text .eyebrow {
    width: 100%;
  }

  .section {
    margin-top: 44px;
  }

  .section-head p {
    font-size: 1.1rem;
  }

  .petal-grid {
    width: 95vw;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    width: 92vw;
    margin: 0 auto;
  }

  .product-card img,
  .product-placeholder {
    height: 200px;
  }

  .product-card .btn.small {
    align-self: center;
  }

  .product-body h3 {
    font-size: 1.2rem;
  }

  .product-body p {
    font-size: 1rem;
  }

  .petal-media {
    height: clamp(210px, 48vw, 290px);
    margin-top: 8px;
  }

  .petal-overlay {
    padding: 12px;
  }

  .petal-overlay h3 {
    font-size: 14px;
  }

  .petal-overlay p {
    font-size: 11px;
  }

  .petal-link {
    font-size: 9px;
    padding: 6px 10px;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    width: 90vw;
    margin: 0 auto;
  }

  .tips-cta {
    flex-direction: column;
  }

  .tips-cta .btn {
    width: 70%;
    text-align: center;
    min-width: 180px;
    margin: 0 auto;
  }

  .article-grid {
    grid-template-columns: 1fr;
    width: 92vw;
    margin: 0 auto;
    gap: 16px;
  }

  .article-card {
    width: 100%;
    max-width: none;
  }

  .faq-list {
    width: 90vw;
  }

  .faq-question {
    font-size: .9rem;
  }


  .cta-body h2 {
    font-size: 1.2rem;
  }

  .cta-body p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .cta-banner .btn {
    width: 50%;
    min-width: 180px;
    margin: 0 auto;
  }

  .site-footer {
    padding: 16px;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

.tip-article h3 {
  margin: 0 0 10px;
}

.tip-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tip-article-media {
  width: min(100%, 320px);
  border-radius: 16px;
  overflow: hidden;
  background: #f1f4f0;
  margin: 0 auto;
}

.tip-article-media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  max-width: 320px;
  display: block;
  object-fit: contain;
}

.tip-article-cta {
  justify-self: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  gap: 20px;
  justify-content: center;
}

.article-card {
  background: var(--card);
  border-radius: 0 30px 0 30px;
  padding: 0;
  margin-bottom: 20px;
  display: grid;
  gap: 0;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f1f4f0;
  overflow: hidden;
  position: relative;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 20, 0.0) 0%, rgba(10, 30, 20, 0.18) 100%);
  transition: opacity 180ms ease;
}

.article-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
  background: linear-gradient(135deg, #f2f5ef, #e3ece4);
}

.article-body {
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  text-align: center;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 52, 40, 0.18);
}

.article-card:hover .article-media::after {
  opacity: 0.35;
}

.section.privacy .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 24px;
}

.section.privacy .section-head h2,
.section.privacy .section-head p {
  text-align: center;
}

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-align: left;
  line-height: 1.7;
  font-size: 1rem;
}

.policy-body strong {
  color: var(--ink);
}

.policy-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.policy-body a {
  color: var(--primary-dark);
  text-decoration: none;
}

.policy-body a:hover {
  text-decoration: underline;
}

.section.faq .section-head p {
  width: 90vw;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.section.faq .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.section.faq .section-head h2,
.section.faq .section-head p {
  text-align: center;
}

.faq-item {
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  font-size: .9rem;
  background: none;
  border: none;
  padding: 16px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: var(--primary-dark);
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.article-detail .article-body {
  background: var(--card);
  padding: 26px;
  line-height: 1.7;
  display: block;
  text-align: left;
}

.article-detail .article-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.article-detail .article-head h2,
.article-detail .article-head p {
  text-align: center;
}

.article-lead {
  float: left;
  width: 220px;
  aspect-ratio: 1 / 1;
  margin: 4px 18px 10px 0;
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  background: #f1f4f0;
}

.article-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-paragraph {
  margin: 0 0 16px;
  text-align: left;
}

.article-paragraph:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .article-lead {
    float: none;
    margin: 0 auto 16px;
  }
}

.article-related {
  margin-top: 32px;
}

.article-related h3 {
  margin: 10px 0 16px;
  text-align: center;
}

.article-cta {
  margin-top: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner {
  margin-top: 32px;
  background: linear-gradient(120deg, #1f7a44, #3aa868);
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-body {
  max-width: 1120px;
  flex: 1 1 520px;
}

.cta-body h2 {
  font-size: 1.1rem;
}

.cta-body p {
  font-size: 0.9rem;
  margin-top: 10px;
}

.cta-banner .btn {
  flex: 0 0 auto;
}

.site-footer {
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 52, 40, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  color: var(--muted);
  background: radial-gradient(circle at top left, #fdfdfb 0%, var(--bg) 45%, var(--bg-accent) 100%);
  /* border-radius: 20px; */
  padding: 18px 22px;
  justify-items: center;
  text-align: center;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-top: 6px;
}

.footer-title {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

footer p,
a {
  font-size: .9rem;
}

footer p {
  margin-top: 10px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-actions .footer-btn {
  height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin-top: 0;
}

.footer-actions .footer-btn.ghost {
  color: #1d2b24;
  border-color: rgba(31, 122, 68, 0.35);
  background: rgba(31, 122, 68, 0.12);
  box-shadow: 0 10px 20px rgba(31, 122, 68, 0.12);
}

.footer-actions .footer-btn.ghost:hover {
  background: rgba(31, 122, 68, 0.18);
  border-color: rgba(31, 122, 68, 0.5);
  box-shadow: 0 14px 26px rgba(31, 122, 68, 0.18);
}

.empty {
  color: var(--muted);
  font-style: italic;
}

/* Admin */
.admin-body {
  background: #fff;
}

.admin-shell {
  min-height: 100vh;
  padding: 24px 28px 48px;
  display: grid;
  gap: 20px;
  grid-auto-rows: min-content;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #fdfdfb 0%, var(--bg) 45%, var(--bg-accent) 100%);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  height: 100px;
  min-height: 100px;
  gap: 16px;
}

.admin-header>a {
  margin-left: auto;
}

.admin-header>a+a {
  margin-left: 8px;
}

.admin-brand {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}

.admin-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.admin-tile {
  border: 1px solid rgba(188, 186, 186, 0.633);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 220px;
  height: 220px;
}

.admin-tile small {
  color: var(--muted);
}

.admin-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.099);
  border-radius: 16px;
}

.admin-tile>div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.admin-tile span,
.admin-tile small {
  display: block;
}

.admin-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(4px);
  opacity: 0.85;
  z-index: 0;
}

.admin-tile--traffic {
  background-image: linear-gradient(135deg, rgba(31, 122, 68, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/traffic.png');
}

.admin-tile--products {
  background-image: linear-gradient(135deg, rgba(79, 174, 112, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/top_products.png');
}

.admin-tile--tips {
  background-image: linear-gradient(135deg, rgba(50, 132, 86, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/tips.png');
}

.admin-tile--articles {
  background-image: linear-gradient(135deg, rgba(17, 88, 52, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/articles.png');
}

.admin-tile--faq {
  background-image: linear-gradient(135deg, rgba(26, 121, 83, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/faq.png');
}

.admin-tile--settings {
  background-image: linear-gradient(135deg, rgba(64, 160, 118, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/settings.png');
}

.admin-tile--promo {
  background-image: linear-gradient(135deg, rgba(23, 120, 64, 0.12), rgba(255, 255, 255, 0.95));
}

.admin-tile--recommended {
  background-image: linear-gradient(135deg, rgba(26, 122, 68, 0.12), rgba(255, 255, 255, 0.95)),
    url('../img/top_products.png');
}

.admin-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(30, 52, 40, 0.16);
}

.admin-tile.active {
  outline: 2px solid rgba(31, 122, 67, 0.719);
  box-shadow: 0 18px 36px rgba(31, 122, 68, 0.18);
}

.admin-main {
  padding: 8px 4px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.admin-head h1 {
  width: 100%;
  text-align: center;
  margin: 0;
}

.admin-main>h1 {
  width: 100%;
  text-align: center;
  margin: 0 0 12px;
}

.admin-metric {
  text-align: center;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px auto 20px;
  max-width: 900px;
  text-align: center;
}

.admin-stat {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
}

.admin-reset {
  margin: 18px auto 0;
  text-align: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eef1ed;
}

.admin-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: #f1f4f0;
}

.admin-thumb.placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  border: 1px dashed #d6dcd7;
}

.admin-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.admin-form-wrap {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.admin-form-wrap h2 {
  margin: 0 0 12px;
  text-align: center;
}

.input,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dcd7;
  font-family: inherit;
}

.input--compact {
  width: 78px;
  padding: 8px 10px;
  text-align: center;
}

input[type="file"].input {
  padding: 10px 12px;
  background: #fff;
}

.textarea {
  min-height: 180px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.admin-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.inline {
  display: inline;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.admin-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.admin-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.link {
  background: none;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.login-card {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  min-width: 280px;
}

.flash {
  background: #ffe5e5;
  color: #a12323;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

@media (max-width: 800px) {
  .admin-shell {
    padding: 16px;
  }

  .admin-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    min-height: 0;
    padding: 16px;
  }

  .admin-header > a {
    margin-left: 0;
  }

  .admin-header > a + a {
    margin-left: 0;
  }

  .admin-header .btn {
    width: 100%;
    max-width: 220px;
  }

  .admin-tiles {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 10px;
  }

  .admin-tile {
    min-height: 160px;
    height: 160px;
    font-size: 1rem;
    padding: 12px;
  }

  .admin-tile small {
    font-size: 0.75rem;
  }

  .admin-main {
    padding: 0;
  }

  .admin-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table th,
  .admin-table td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .admin-thumb {
    width: 36px;
    height: 36px;
  }

  .admin-form,
  .admin-form-wrap {
    max-width: 100%;
  }

  .admin-form-wrap {
    padding: 14px;
  }

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

  .admin-stats-row {
    grid-template-columns: 1fr;
  }

  .admin-stat {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .admin-tiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .site-footer a {
    padding: 10px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .hero {
    padding-bottom: 4px;
    gap: 18px;
  }

  .hero-trust {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
  }

  .hero-info-bar {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

.section.kitchen {
  max-width: 1100px;
  padding: 0 24px 48px;
}

.section.kitchen .section-head {
  flex-direction: column;
  gap: 10px;
}

.kitchen-hero {
  max-width: 860px;
  margin: 0 auto 24px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-accent);
  box-shadow: var(--shadow);
}

.kitchen-hero img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.kitchen-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  gap: 16px;
  background: var(--card);
  border-radius: 26px;
  box-shadow: var(--shadow);
  line-height: 1.7;
}

.kitchen-lead {
  font-size: 1.1rem;
}

.kitchen-content h3 {
  margin-top: 8px;
  font-size: 22px;
}

.kitchen-list {
  margin: 4px 0 8px;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.kitchen-divider {
  height: 1px;
  width: 100%;
  background: rgba(31, 122, 68, 0.16);
  margin: 16px 0;
}

.kitchen-callout {
  background: #f2f6f1;
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  padding: 18px 20px;
}

.kitchen-callout h4 {
  margin-bottom: 8px;
}

.kitchen-cta {
  margin-top: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
}

.kitchen-cta .btn {
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  color: #fff;
  background: linear-gradient(135deg, #1f7a44 0%, #1b6f3e 45%, #2a8a55 100%);
  box-shadow: 0 12px 24px rgba(31, 122, 68, 0.26);
  border: 1px solid rgba(31, 122, 68, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.kitchen-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(31, 122, 68, 0.32);
  filter: brightness(1.06);
}

@media (max-width: 900px) {
  .section.kitchen {
    padding: 0 16px 40px;
  }

  .kitchen-content {
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  .kitchen-hero {
    border-radius: 20px;
  }

  .kitchen-content {
    padding: 20px;
    border-radius: 20px;
  }

  .kitchen-content h3 {
    font-size: 20px;
  }
}
