:root {
  --green-900: #063f1b;
  --green-800: #075326;
  --green-700: #0b6b31;
  --green-500: #2f9f46;
  --leaf: #61bd43;
  --yellow: #ffd84a;
  --orange: #ff9c3a;
  --cream: #fffaf0;
  --white: #ffffff;
  --ink: #1b2b1d;
  --muted: #647166;
  --line: #e3eadf;
  --shadow: 0 22px 70px rgba(6, 63, 27, 0.16);
  --soft-shadow: 0 14px 38px rgba(6, 63, 27, 0.1);
  --radius: 8px;
  --radius-lg: 20px;
  --container: min(1180px, calc(100% - 36px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 84px 0;
}

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

.section-reveal.is-visible {
  animation: revealUp 0.8s ease both;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(227, 234, 223, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(6, 63, 27, 0.18);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: #263328;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 13px 18px;
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(7, 83, 38, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-phone:hover {
  transform: translateY(-2px);
  background: var(--green-700);
  box-shadow: 0 18px 36px rgba(7, 83, 38, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.hero {
  min-height: calc(84vh - var(--header-height));
  padding: 56px 0 50px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 87% 24%, rgba(255, 216, 74, 0.38), transparent 28%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 39%, #fff8e7 100%);
  overflow: hidden;
}

.hero-content {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.15rem, 7.2vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4f5d51;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 16px 32px rgba(11, 107, 49, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(11, 107, 49, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white);
  box-shadow: 0 16px 34px rgba(7, 83, 38, 0.13);
}

.btn-dark {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 16px 32px rgba(6, 63, 27, 0.24);
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(236, 247, 227, 0.9), rgba(255, 255, 255, 0.98) 360px),
    var(--cream);
}

.legal-hero {
  padding: 94px 0 52px;
}

/* .legal-hero .container {
  max-width: 850px;
} */

.legal-hero h1 {
  margin: 12px 0 18px;
  color: var(--green-900);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.legal-hero .legal-updated {
  margin-top: 18px;
  color: var(--green-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.legal-content {
  padding-top: 20px;
}

.legal-layout {
  display: grid;
  /* grid-template-columns: minmax(0, 850px); */
}

.legal-card {
  padding: 42px;
  border: 1px solid rgba(15, 120, 55, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(6, 63, 27, 0.1);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--green-900);
  font-size: 1.2rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.legal-card a {
  color: var(--green-700);
  font-weight: 800;
}

.legal-nav-links {
  margin-left: auto;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -9% -11% 4%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 216, 74, 0.9), rgba(255, 156, 58, 0.2));
  border-radius: 32px;
  transform: rotate(-2deg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 14px 17px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(6, 63, 27, 0.18);
  backdrop-filter: blur(14px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-quality {
  left: -24px;
  bottom: 13%;
}

.card-delivery {
  top: 10%;
  right: -18px;
  animation-delay: -2.5s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 52px;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.06);
}

.section-label {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--green-700);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.offer-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 16px;
  background: #f7fbf5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.trust-strip span {
  color: var(--green-900);
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.3;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(247, 251, 245, 0.94), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 10% 20%, rgba(255, 216, 74, 0.32), transparent 24%);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card,
.product-card,
.why-grid article,
.testimonial-card,
.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(6, 63, 27, 0.07);
}

.category-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.1 / 0.82;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.category-card h3 {
  min-height: 52px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px 6px;
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.category-view {
  display: block;
  width: calc(100% - 30px);
  min-height: 36px;
  margin: 0 15px 15px;
  color: var(--green-800);
  background: #f2faf0;
  border: 1px solid rgba(47, 159, 70, 0.28);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(47, 159, 70, 0.35);
  box-shadow: 0 22px 48px rgba(6, 63, 27, 0.13);
  outline: none;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-view,
.category-card:focus-visible .category-view {
  color: var(--white);
  background: var(--green-700);
}

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

.product-card {
  padding: 16px;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 156, 58, 0.45);
  box-shadow: 0 24px 48px rgba(6, 63, 27, 0.13);
}

.product-image {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #f8fbf4, #ffffff);
  border-radius: var(--radius);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card h3 {
  min-height: 46px;
  margin: 15px 0 4px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.28;
}

.price {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 1.12rem;
  font-weight: 900;
}

.view-btn {
  width: 100%;
  min-height: 38px;
  color: var(--white);
  background: var(--green-700);
  border: 0;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.view-btn:hover,
.view-btn:focus-visible {
  background: var(--green-900);
  box-shadow: 0 12px 24px rgba(6, 63, 27, 0.2);
}

.view-btn:active,
.category-view:active {
  transform: scale(0.96);
}

.why-section {
  padding-top: 54px;
}

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

.why-grid article {
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(6, 63, 27, 0.12);
}

.why-grid svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 17px;
  color: var(--green-700);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.02rem;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 216, 74, 0.98), rgba(255, 156, 58, 0.88)),
    var(--yellow);
  box-shadow: 0 28px 70px rgba(255, 156, 58, 0.24);
}

.offer-banner::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  top: -95px;
  border: 32px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.offer-copy {
  position: relative;
  z-index: 2;
  padding: 52px;
}

.offer-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  color: var(--white);
  background: #e53b20;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 14px 30px rgba(229, 59, 32, 0.26);
}

.offer-copy p {
  max-width: 510px;
  margin: 16px 0 24px;
  color: #33402e;
  font-weight: 700;
}

.offer-image {
  height: 100%;
  min-height: 320px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

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

.testimonial-shell {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.testimonial-card p {
  margin: 0 0 24px;
  color: #354338;
  font-size: 1.12rem;
  font-weight: 700;
}

.customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e7f3e3;
}

.customer strong,
.customer small {
  display: block;
}

.customer strong {
  color: var(--green-900);
  font-size: 0.96rem;
}

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

.slider-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(6, 63, 27, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-btn:hover {
  transform: scale(1.06);
  background: var(--green-900);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #cbd9c8;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--green-700);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #eef5ea;
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(6, 63, 27, 0.1);
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.contact-section {
  background: #f8fbf5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
}

.contact-row svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--green-700);
  background: #ecf7e8;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-row h3 {
  margin: 0 0 3px;
  color: var(--green-900);
  font-size: 0.97rem;
}

.contact-row p,
.contact-row a {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-row a:hover {
  color: var(--green-700);
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.static-map {
  isolation: isolate;
  background:
    radial-gradient(circle at 25% 20%, rgba(97, 189, 67, 0.24), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(255, 216, 74, 0.34), transparent 28%),
    linear-gradient(135deg, #edf8e9, #fffaf0);
}

.static-map::before,
.static-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 83, 38, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 83, 38, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.static-map::after {
  inset: 28px;
  border: 1px dashed rgba(7, 83, 38, 0.18);
  border-radius: 24px;
  background: transparent;
}

.map-road,
.map-lane {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 2px rgba(7, 83, 38, 0.08);
}

.road-one {
  width: 120%;
  height: 34px;
  left: -12%;
  top: 44%;
  transform: rotate(-9deg);
}

.road-two {
  width: 96%;
  height: 30px;
  left: 12%;
  top: 20%;
  transform: rotate(24deg);
}

.road-three {
  width: 88%;
  height: 28px;
  left: -8%;
  bottom: 18%;
  transform: rotate(16deg);
}

.lane-one {
  width: 30px;
  height: 118%;
  left: 28%;
  top: -8%;
  transform: rotate(12deg);
}

.lane-two {
  width: 26px;
  height: 92%;
  right: 22%;
  top: 3%;
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: 52%;
  top: 38%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #f05a28, #d82616);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(216, 38, 22, 0.28);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.map-label {
  position: absolute;
  z-index: 4;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 20px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(6, 63, 27, 0.14);
  backdrop-filter: blur(14px);
}

.map-label strong,
.map-label span,
.map-label a {
  display: block;
}

.map-label strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.map-label span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.map-label a {
  width: fit-content;
  margin-top: 12px;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, var(--green-900), #0b6b31),
    var(--green-900);
  padding: 44px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.9fr 0.85fr;
  gap: 44px;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.site-footer p {
  max-width: 320px;
  margin: 17px 0 0;
  font-size: 0.92rem;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:not(.brand):hover {
  color: var(--white);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 11px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.copyright {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 24, 10, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(980px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-weight: 900;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 24, 10, 0.74);
  backdrop-filter: blur(10px);
}

.detail-modal[hidden] {
  display: none;
}

.detail-dialog {
  position: relative;
  width: min(900px, 94vw);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(6, 63, 27, 0.14);
}

.detail-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.detail-image {
  min-height: 390px;
  background: linear-gradient(145deg, #f1faee, #fff8e2);
}

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

.detail-content {
  padding: 44px;
}

.detail-type {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-content h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.detail-price {
  margin: 14px 0 0;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 900;
}

.detail-content p:not(.detail-price):not(.detail-note) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.detail-content ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-content li {
  position: relative;
  padding-left: 28px;
  color: #33402e;
  font-weight: 800;
}

.detail-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 10px;
  height: 10px;
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #e9f6e6;
}

.detail-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  color: var(--green-900);
  background: #f2faf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.detail-contact {
  width: fit-content;
  margin-top: 24px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 250;
  min-width: 230px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 63, 27, 0.26);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

  .nav-links a {
    font-size: 0.76rem;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .menu-toggle {
    display: block;
  }

  .nav-phone {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 46px rgba(6, 63, 27, 0.16);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 58px;
  }

  .hero-content,
  .about-grid,
  .contact-grid,
  .offer-banner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-media {
    max-width: 760px;
    margin: 0 auto;
  }

  .card-quality {
    left: 16px;
  }

  .card-delivery {
    right: 16px;
  }

  .trust-strip,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .offer-image {
    min-height: 260px;
    clip-path: none;
    order: -1;
  }

  .offer-copy {
    padding: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section-pad {
    padding: 62px 0;
  }

  .hero {
    padding: 34px 0 38px;
    background: linear-gradient(180deg, #ffffff, #fff8e7);
  }

  .hero-content {
    width: var(--container);
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.2vw, 3.55rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-media::before {
    inset: 12% 0 -8% 8%;
    border-radius: 22px;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.68;
    border-radius: 18px;
  }

  .floating-card {
    position: absolute;
    display: grid;
    max-width: 46%;
    padding: 10px 12px;
    margin: 0;
  }

  .floating-card strong {
    font-size: 0.78rem;
  }

  .floating-card span {
    font-size: 0.68rem;
  }

  .card-quality {
    left: 10px;
    bottom: 10px;
  }

  .card-delivery {
    top: 10px;
    right: 10px;
  }

  .trust-strip,
  .category-grid,
  .why-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .product-image {
    grid-row: span 3;
  }

  .product-card h3 {
    min-height: 0;
    margin: 0;
  }

  .view-btn {
    max-width: 150px;
  }

  .offer-copy {
    padding: 28px;
  }

  .offer-copy span {
    width: 78px;
    height: 78px;
    font-size: 0.9rem;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .testimonial-track {
    min-height: 270px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .contact-card {
    padding: 22px;
  }

  .map-card {
    min-height: 300px;
  }

  .map-pin {
    left: 58%;
    top: 34%;
    width: 58px;
    height: 58px;
  }

  .map-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }

  .detail-dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .detail-image {
    min-height: 230px;
  }

  .detail-content {
    padding: 28px;
  }

  .detail-contact {
    width: 100%;
  }
}

@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;
  }
}
