:root {
  --green-900: #244533;
  --green-800: #3f6f45;
  --green-700: #5f8f55;
  --green-600: #6f9c64;
  --wood: #d8b98a;
  --wood-dark: #b9935e;
  --sand-100: #fffdf8;
  --sand-200: #f5f1e8;
  --sand-300: #e8ddcc;
  --green-soft: #eef4e9;
  --white: #ffffff;
  --ink: #2f2f2f;
  --heading: #244533;
  --heading-deep: #2f4f38;
  --muted: #65635c;
  --line: rgba(36, 69, 51, 0.16);
  --shadow: 0 18px 42px rgba(36, 69, 51, 0.1);
  --shadow-soft: 0 10px 28px rgba(36, 69, 51, 0.08);
  --gold: #b9935e;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand-100);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(95, 143, 85, 0.35);
  outline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 9px 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: var(--heading-deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.22s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sand-200);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center end;
  background: linear-gradient(90deg, #f8f4ea, #fff 42%, #eef8ea);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(1.08) contrast(1.12) saturate(1.08);
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 34, 25, 0.78), rgba(36, 69, 51, 0.48) 42%, rgba(245, 241, 232, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.06));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 88vw);
  padding: 14vh 0 13vh 6vw;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(20, 31, 24, 0.18);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7.3vw, 82px);
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  color: var(--heading);
  font-size: clamp(32px, 4.2vw, 54px);
}

h3 {
  color: var(--heading-deep);
  font-size: 22px;
}

.hero p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-900);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  border-color: var(--green-800);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  background: var(--green-900);
  color: var(--white);
}

.btn-hero-call {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 104px;
  padding: 24px 6vw;
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--heading);
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 86px 6vw;
}

.section-warm {
  background: var(--sand-200);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 40px;
  align-items: end;
}

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

.category-card {
  position: relative;
  isolation: isolate;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(63, 143, 44, 0.18);
  border-radius: 16px;
  background: var(--white);
  color: var(--heading-deep);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--category-card-image, none) center/cover;
  content: "";
  opacity: 0.2;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(245, 241, 232, 0.84));
  content: "";
}

.category-card:hover::before {
  opacity: 0.3;
  transform: scale(1.04);
}

.category-card-garden {
  --category-card-image: url("product-chair.jpeg");
}

.category-card-home {
  --category-card-image: url("product-sofa.jpeg");
}

.category-card span {
  font-size: 20px;
  font-weight: 900;
}

.category-card small {
  color: var(--muted);
}

.category-card strong {
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--green-700);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
}

.category-card-dark {
  background: var(--green-soft);
  color: var(--ink);
}

.category-card-dark small {
  color: var(--muted);
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand-200);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.reserved {
  background: var(--wood);
  color: var(--ink);
}

.badge.sold {
  background: #ededed;
  color: var(--ink);
}

.product-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0;
}

.catalog-price {
  color: var(--heading-deep);
  font-size: 20px;
  font-weight: 900;
}

.catalog-price.old-price {
  color: var(--muted);
  font-size: 15px;
  text-decoration: line-through;
}

.outlet-price {
  color: var(--green-900);
  font-size: 24px;
  font-weight: 900;
}

.saving-badge,
.price-note {
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.saving-badge {
  padding: 6px 9px;
  background: var(--green-soft);
  color: var(--green-900);
}

.price-note {
  margin: -4px 0 14px;
  color: var(--green-800);
}

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

.dimensions {
  margin-top: 12px;
  color: var(--heading-deep);
  font-size: 14px;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-actions .btn {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
}

.outlet-section {
  background: var(--green-soft);
}

.outlet-section h2,
.outlet-section h3 {
  color: var(--heading-deep);
}

.outlet-section .section-heading p,
.outlet-section article p {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  background: transparent;
}

.benefit-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-grid h3 {
  margin-bottom: 14px;
}

.showroom-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
  padding: clamp(76px, 8vw, 118px) 6vw;
  background:
    radial-gradient(circle at 84% 18%, rgba(95, 143, 85, 0.13), transparent 30%),
    linear-gradient(180deg, var(--sand-200), #fbf8f1);
}

.category-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 110px 6vw 74px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94), rgba(245, 241, 232, 0.78) 55%, rgba(95, 143, 85, 0.18)),
    var(--category-image) center/cover;
}

.category-hero-garden {
  --category-image: url("ogrod-optimized.jpg");
}

.category-hero-home {
  --category-image: url("dom-optimized.jpg");
}

.category-hero > div {
  max-width: 780px;
}

.category-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.showroom-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--green-700);
  font-weight: 900;
  text-decoration: none;
}

.showroom-gallery {
  --gallery-radius: 24px;
  --photo-frame-gap: 8px;
  --photo-inner-radius: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.92fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  height: clamp(620px, 54vw, 740px);
  min-height: 0;
  animation: fade-up 0.7s ease both;
}

.showroom-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(36, 69, 51, 0.16);
  border-radius: var(--gallery-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(95, 143, 85, 0.08)),
    var(--white);
  box-shadow: 0 20px 48px rgba(36, 69, 51, 0.11);
  animation: fade-up 0.72s ease both;
}

.showroom-photo:nth-child(1) {
  animation-delay: 0.03s;
}

.showroom-photo:nth-child(2) {
  animation-delay: 0.12s;
}

.showroom-photo:nth-child(3) {
  animation-delay: 0.21s;
}

.showroom-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(47, 47, 47, 0.08));
  content: "";
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.showroom-photo:hover::after {
  opacity: 1;
}

.showroom-photo img {
  position: absolute;
  inset: var(--photo-frame-gap);
  width: calc(100% - (var(--photo-frame-gap) * 2));
  height: calc(100% - (var(--photo-frame-gap) * 2));
  display: block;
  border: 1px solid rgba(36, 69, 51, 0.14);
  border-radius: var(--photo-inner-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  object-fit: cover;
  object-position: center;
  transition: transform 0.34s ease;
}

.showroom-photo:hover img {
  transform: scale(1.02);
}

.showroom-photo-feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 0;
}

.showroom-photo-side {
  min-height: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand-100), var(--sand-200));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.reviews-intro > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.google-rating-card {
  max-width: 430px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.google-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--heading-deep);
  font-weight: 900;
}

.google-rating-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.google-rating-card .stars {
  margin: 10px 0;
  font-size: 22px;
}

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

.google-rating-card .reviews-link {
  margin-top: 14px;
}

.reviews-static {
  display: grid;
  gap: 18px;
}

.review-card {
  width: 360px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-card-featured {
  width: auto;
  min-height: 0;
}

.review-card .stars {
  margin-bottom: 14px;
}

.review-card p {
  margin-bottom: 16px;
  color: var(--ink);
}

.review-card strong {
  display: block;
  color: var(--heading-deep);
}

.review-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.reviews-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--heading-deep);
  font-weight: 900;
  text-decoration: none;
}

.admin-concept {
  background: var(--white);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.admin-preview {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--sand-100);
  box-shadow: var(--shadow);
}

.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-bar span {
  color: var(--heading);
  font-weight: 900;
}

.admin-bar button {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
}

.admin-preview label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--heading-deep);
  font-size: 13px;
  font-weight: 900;
}

.admin-preview input,
.admin-preview select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 110px;
  border: 1px dashed rgba(63, 143, 44, 0.45);
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--heading-deep);
  font-weight: 900;
}

.admin-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.admin-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--sand-100);
  color: var(--ink);
  font-weight: 700;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  background: var(--sand-200);
}

.location-card {
  padding: 76px 6vw;
  color: var(--ink);
}

.location-card h2 {
  color: var(--heading);
}

.location-card address,
.location-card p {
  margin-bottom: 13px;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.location-card strong {
  color: var(--ink);
}

.hours-card {
  max-width: 420px;
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading-deep);
}

.hours-card p {
  margin-bottom: 5px;
  font-size: 16px;
}

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

.social-inline a {
  color: var(--heading-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-card .contact-actions {
  margin-top: 24px;
}

.map-wrap {
  min-height: 480px;
  background: var(--white);
  border-left: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--heading-deep);
  font-weight: 900;
}

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

.mobile-sticky-cta {
  display: none;
}

.category-card,
.product-card,
.benefit-grid article,
.review-card {
  animation: fade-up 0.55s ease both;
}

.product-card:nth-child(2),
.benefit-grid article:nth-child(2),
.review-card:nth-child(2) {
  animation-delay: 0.06s;
}

.product-card:nth-child(3),
.benefit-grid article:nth-child(3),
.review-card:nth-child(3) {
  animation-delay: 0.12s;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 13px;
  }

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

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

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

  .showroom-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 520px 300px;
    height: auto;
    min-height: auto;
  }

  .showroom-photo-feature {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 6vw 24px;
    border-bottom: 1px solid var(--line);
    background: var(--sand-100);
    box-shadow: 0 18px 40px rgba(36, 69, 51, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    background: var(--sand-200);
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(18, 34, 25, 0.78), rgba(36, 69, 51, 0.24));
  }

  .hero-content {
    width: 100%;
    padding: 34vh 6vw 54px;
  }

  .trust-strip,
  .split-heading,
  .reviews-layout,
  .showroom-section,
  .admin-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 20px 6vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-card {
    width: 310px;
  }

  .reviews-static .review-card {
    width: auto;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 18px 40px rgba(36, 69, 51, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--green-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }
}

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

  .logo img {
    width: 58px;
    height: 58px;
  }

  .main-nav {
    top: 76px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-actions,
  .contact-actions,
  .category-actions,
  .product-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section,
  .showroom-section {
    padding: 60px 6vw;
  }

  .category-grid,
  .product-grid,
  .benefit-grid,
  .showroom-gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .showroom-gallery {
    grid-template-rows: none;
    height: auto;
    gap: 16px;
  }

  .showroom-photo,
  .showroom-photo-feature,
  .showroom-photo-side {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .showroom-photo img {
    inset: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 15px;
  }

  .category-card {
    min-height: 118px;
  }

  .product-body {
    padding: 18px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

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