:root {
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #18221b;
  --muted: #687369;
  --line: #e4e0d6;
  --sage: #6f8b6e;
  --moss: #2f553b;
  --clay: #c28662;
  --mist: #eef1ea;
  --shadow: 0 18px 50px rgba(24, 34, 27, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(228, 224, 214, 0.82);
  backdrop-filter: blur(14px);
}

.petal-layer {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  overflow: hidden;
  animation: petal-layer-hide 22s ease forwards;
}

.petal-layer span {
  position: absolute;
  top: -10vh;
  width: 14px;
  height: 9px;
  border-radius: 90% 10% 90% 10%;
  background: rgba(229, 144, 161, 0.72);
  box-shadow: 0 0 10px rgba(229, 144, 161, 0.18);
  animation: petal-fall linear infinite;
  animation-iteration-count: 2;
}

.petal-layer span:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.petal-layer span:nth-child(2) { left: 13%; animation-duration: 15s; animation-delay: -5s; }
.petal-layer span:nth-child(3) { left: 24%; animation-duration: 11s; animation-delay: -2s; }
.petal-layer span:nth-child(4) { left: 35%; animation-duration: 16s; animation-delay: -8s; }
.petal-layer span:nth-child(5) { left: 47%; animation-duration: 13s; animation-delay: -4s; }
.petal-layer span:nth-child(6) { left: 56%; animation-duration: 17s; animation-delay: -7s; }
.petal-layer span:nth-child(7) { left: 64%; animation-duration: 12s; animation-delay: -9s; }
.petal-layer span:nth-child(8) { left: 73%; animation-duration: 15s; animation-delay: -3s; }
.petal-layer span:nth-child(9) { left: 82%; animation-duration: 14s; animation-delay: -6s; }
.petal-layer span:nth-child(10) { left: 91%; animation-duration: 18s; animation-delay: -10s; }
.petal-layer span:nth-child(11) { left: 30%; animation-duration: 19s; animation-delay: -12s; }
.petal-layer span:nth-child(12) { left: 70%; animation-duration: 20s; animation-delay: -14s; }

@keyframes petal-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(48px, 112vh, 0) rotate(460deg);
    opacity: 0;
  }
}

@keyframes petal-layer-hide {
  0%, 86% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(24, 34, 27, 0.08);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--moss);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--moss);
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(24, 34, 27, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
}

.button.primary {
  color: var(--white);
  background: var(--moss);
}

.button.secondary {
  color: var(--moss);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #f4efe6, #eef1ea);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(88%, 560px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.hero-brand-visual {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(194, 134, 98, 0.18), transparent 18rem),
    linear-gradient(145deg, #fff8f4, #eef1ea);
}

.hero-brand-visual img {
  width: min(90%, 600px);
  box-shadow: 0 18px 42px rgba(24, 34, 27, 0.08);
}

.hero-logo-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(228, 224, 214, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(24, 34, 27, 0.08);
}

.hero-logo-card strong {
  color: var(--moss);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-logo-card span {
  color: var(--muted);
  font-weight: 700;
}

.section,
.contact-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section.compact {
  padding-top: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: end;
}

.section-heading.split p {
  color: var(--muted);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.category-pill {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--moss);
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 85, 59, 0.28);
  box-shadow: 0 14px 34px rgba(24, 34, 27, 0.08);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
  gap: 14px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111, 139, 110, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(24, 34, 27, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--mist);
}

.product-body {
  padding: 18px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.product-category {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-price {
  white-space: nowrap;
  color: var(--moss);
  font-weight: 800;
}

.product-card p {
  color: var(--muted);
}

.product-meta {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.delete-product {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  border: 1px solid #ead5c9;
  border-radius: 999px;
  background: #fff8f3;
  color: #9b5538;
  cursor: pointer;
  font-weight: 700;
}

.order-product {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--moss);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  text-align: center;
}

.empty-state p {
  max-width: 520px;
  margin-inline: auto;
  color: var(--muted);
}

.maintenance-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 139, 110, 0.14), transparent 24rem),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(24, 34, 27, 0.05);
}

.service-grid p {
  color: var(--muted);
}

.maintenance-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.maintenance-flow div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid rgba(47, 85, 59, 0.16);
  border-radius: 8px;
  background: #fbf7ef;
  padding: 16px;
}

.maintenance-flow strong {
  color: var(--terracotta);
  font-size: 0.82rem;
}

.maintenance-flow span {
  color: var(--ink);
  font-weight: 700;
}

.service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(47, 85, 59, 0.2);
  border-radius: 8px;
  background: #f4f7f1;
  padding: 18px 20px;
}

.service-note strong {
  color: var(--moss);
}

.service-note span {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.about-band,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.about-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.about-band p,
.about-copy p,
.about-points p {
  color: var(--muted);
}

.about-copy {
  display: grid;
  gap: 16px;
  font-size: 18px;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 34px rgba(24, 34, 27, 0.05);
}

.about-points h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 36px);
}

.care-list {
  display: grid;
  gap: 12px;
}

.care-list article {
  border-left: 3px solid var(--sage);
  padding: 6px 0 6px 18px;
}

.care-list p {
  color: var(--muted);
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--mist);
}

.reviews-section {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: start;
}

.review-form {
  max-width: none;
}

.rating-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.rating-field legend {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.rating-options label {
  cursor: pointer;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options span {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--moss);
  font-size: 18px;
  font-weight: 800;
}

.rating-options span::after {
  content: "★";
  margin-left: 4px;
  color: var(--clay);
}

.rating-options input:checked + span,
.rating-options span:hover {
  border-color: rgba(47, 85, 59, 0.34);
  background: #f4f7f1;
  box-shadow: 0 0 0 3px rgba(111, 139, 110, 0.12);
}

.coupon-card,
.coupon-status[data-type="success"] {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 85, 59, 0.22);
  border-radius: 8px;
  background: var(--moss);
  color: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.coupon-card span,
.coupon-status[data-type="success"] span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.coupon-card strong,
.coupon-status[data-type="success"] strong {
  width: fit-content;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0;
}

.coupon-card p,
.coupon-status[data-type="success"] p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.review-list-panel {
  display: grid;
  gap: 14px;
}

.review-list-panel .section-heading {
  margin-bottom: 0;
}

.review-list-panel h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.reviews-list {
  display: grid;
  gap: 12px;
}

.review-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 32px rgba(24, 34, 27, 0.06);
}

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.review-card strong {
  color: var(--ink);
  font-size: 16px;
}

.review-card p {
  margin: 0;
}

.review-card small {
  color: var(--muted);
  font-weight: 700;
}

.review-stars {
  color: var(--clay);
  letter-spacing: 0;
}

.compact-empty {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  color: var(--muted);
}

.contact-band p {
  max-width: 620px;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
  min-width: min(100%, 300px);
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 13px 18px;
  color: var(--moss);
  font-weight: 700;
  text-align: center;
}

.admin-dialog {
  width: min(940px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.admin-dialog::backdrop {
  background: rgba(24, 34, 27, 0.42);
  backdrop-filter: blur(4px);
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.admin-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.subpage-hero {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
}

.subpage-hero.small {
  max-width: 1040px;
}

.subpage-hero h1 {
  max-width: 920px;
}

.subpage-hero .lead {
  max-width: 780px;
}

.care-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 12px 34px rgba(24, 34, 27, 0.05);
}

.info-card h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.info-card p,
.legal-text p {
  color: var(--muted);
}

.info-card ul,
.legal-text ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 8px;
}

.legal-text {
  max-width: 980px;
  padding-top: 18px;
}

.legal-text h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 38px);
}

.form-section {
  padding-top: 18px;
}

.large-form {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.checkbox-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.hidden-field {
  display: none;
}

.category-page {
  background:
    radial-gradient(circle at top right, rgba(194, 134, 98, 0.13), transparent 34rem),
    linear-gradient(180deg, var(--paper), #f5f6f0);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(44px, 7vw, 94px) clamp(18px, 5vw, 72px);
}

.category-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--mist);
}

.category-product div {
  padding: 20px;
}

.category-product h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 4vw, 42px);
}

.category-product strong {
  color: var(--moss);
  font-size: 22px;
}

.category-care {
  max-width: 960px;
  padding-top: 0;
}

.category-care ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-care li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(24, 34, 27, 0.04);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 12px 34px rgba(24, 34, 27, 0.05);
}

.price-card.featured {
  border-color: rgba(47, 85, 59, 0.28);
  background: linear-gradient(180deg, #ffffff, #f4f7f1);
}

.price-card h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.price-card p {
  margin-top: 18px;
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.price-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  color: var(--moss);
  text-align: right;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 34px rgba(24, 34, 27, 0.05);
}

.faq-list h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.faq-list p,
.not-found p {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.not-found .brand-logo {
  width: 76px;
  height: 76px;
}

.availability-card {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.availability-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
}

.availability-card p {
  max-width: 760px;
  color: var(--muted);
}

.admin-page {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: clamp(22px, 5vw, 72px);
}

.admin-controls {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.form-status {
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--mist);
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-type="success"] {
  border-color: rgba(47, 85, 59, 0.24);
  background: #edf4ed;
  color: var(--moss);
}

.form-status[data-type="error"] {
  border-color: #ead5c9;
  background: #fff8f3;
  color: #9b5538;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-card-body h3,
.product-card-body p {
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.product-actions strong {
  color: var(--moss);
  font-size: 22px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
}

.checkout-summary pre {
  min-height: 120px;
  margin: 12px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf7ef;
  padding: 16px;
  white-space: pre-wrap;
  color: var(--muted);
  font: inherit;
}

.summary-box {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 85, 59, 0.18);
  border-radius: 8px;
  background: #f4f7f1;
  padding: 18px;
}

.summary-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-box span,
.delivery-info span,
.payment-info span,
.qr-payment p,
.cart-empty span,
.cart-note {
  color: var(--muted);
}

.summary-box strong {
  color: var(--ink);
}

.summary-total {
  border-top: 1px solid rgba(47, 85, 59, 0.18);
  padding-top: 12px;
  font-size: 20px;
}

.delivery-info,
.payment-info,
.form-hint {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 16px;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

#discountStatus:not(:empty) {
  border-color: rgba(47, 85, 59, 0.18);
  background: #f4f7f1;
  color: var(--moss);
}

.qr-payment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(47, 85, 59, 0.2);
  border-radius: 8px;
  background: #f4f7f1;
  padding: 18px;
}

.qr-payment h2 {
  margin: 4px 0 8px;
}

.qr-payment p {
  margin: 0;
}

.qr-payment img {
  width: 180px;
  height: 180px;
  border: 8px solid var(--white);
  border-radius: 8px;
  background: var(--white);
}

.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(24, 34, 27, 0.22);
  cursor: pointer;
}

.cart-fab strong {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(420px, 100vw);
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(24, 34, 27, 0.18);
  padding: 22px;
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel-head h2 {
  margin: 4px 0 0;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

.cart-empty {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.cart-row img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.qty-control {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}

.qty-control button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  padding: 6px 10px;
  font: inherit;
  cursor: pointer;
}

.cart-total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 20px;
}

.cart-checkout {
  justify-content: center;
  margin-top: 14px;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .two-column,
  .about-band,
  .about-layout,
  .category-hero,
  .section-heading.split,
  .contact-band,
  .care-page,
  .price-grid,
  .faq-list,
  .service-grid,
  .maintenance-flow,
  .checkout-summary,
  .qr-payment,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .category-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    display: grid;
  }
}

@media (max-width: 620px) {
  .toolbar,
  .form-grid,
  .maintenance-flow,
  .category-strip,
  .product-grid,
  .rating-options {
    grid-template-columns: 1fr;
  }

  .product-actions,
  .summary-box div,
  .cart-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .qr-payment img {
    width: min(220px, 100%);
    height: auto;
    justify-self: start;
  }

  .cart-fab {
    right: 12px;
    bottom: 12px;
  }

  .large-form {
    padding: 16px;
  }

  .checkout-summary {
    gap: 12px;
    margin-bottom: 16px;
  }

  .summary-box {
    position: sticky;
    top: 8px;
    z-index: 2;
  }

  .delivery-info,
  .payment-info,
  .form-hint {
    padding: 14px;
  }

  .petal-layer span {
    width: 11px;
    height: 7px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .button {
    width: 100%;
  }
}
