.offer__controls {
  display: none;
}

.offer--home > .offer__controls {
  display: none !important;
}

.offer__viewport {
  overflow: visible;
}

@media (min-width: 961px) {
  .offer--home .offer__viewport {
    container-type: inline-size;
    container-name: offer-home;
    overflow: hidden;
    width: calc(328px * 5 + var(--offer-gap, 2.08vw) * 4);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 14px;
  }

  .offer--home [data-offer-grid] {
    --offer-gap: 2.08vw;
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    justify-content: flex-start !important;
    gap: var(--offer-gap) !important;
    width: max-content;
    padding: 0 0 12px !important;
    transition: transform 0.35s ease;
  }

  .offer--home [data-offer-grid] .offer-card {
    flex: 0 0 328px;
    width: 328px;
    height: 432px;
    min-height: 432px;
    margin: 0;
    padding: 0;
    align-items: center;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    box-sizing: border-box;
    transition: box-shadow 0.35s ease;
  }

  .offer--home [data-offer-grid] .offer-card__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .offer--home [data-offer-grid] .offer-card__image-wrap {
    width: 328px;
    height: 318px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
  }
}

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

:root {
  --green: #8cb61d;
  --green-dark: #6b9616;
  --text-dark: #3a3a3a;
  --text-muted: #6e6e6e;
  --text-light: #8f8f8f;
  --border: #d8d8d8;
  --white: #ffffff;
  --page-max-width: 1920px;
  --header-height: 103px;
  --hero-slider-height: 564px;
  --hero-with-header: 667px;
  --side-padding: 120px;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000000;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  height: 100%;
}

.header__nav {
  justify-self: stretch;
  min-width: 0;
}

.header__menu {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__menu li {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.header__menu li:first-child {
  padding-left: 0;
}

.header__menu > li > a,
.header__menu .has-dropdown__box > a {
  color: #323335;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__menu > li > a:hover,
.header__menu > li > a.is-active,
.header__menu .has-dropdown__box > a:hover,
.header__menu .has-dropdown__box > a.is-active {
  color: var(--green);
}

.has-dropdown__box > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chevron {
  margin-top: 1px;
  opacity: 0.6;
}

/* Logo */
.header__logo {
  justify-self: center;
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.header__logo img {
  display: block;
  height: 90px;
  width: auto;
}

/* Contact */
.header__contact {
  justify-self: stretch;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.header__contact > * {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  white-space: nowrap;
}

.header__contact > :first-child {
  padding-left: 0;
}

.header__contact-label {
  color: var(--green);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.header__phone {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #323335;
}

.header__email {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #797878;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
}

.hero__slider {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  height: var(--hero-slider-height);
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Bottom block: title + arrows */
.hero__bottom {
  position: relative;
  background: var(--white);
  margin-top: -1px;
  padding-bottom: 32px;
}

/* Slider arrows */
.hero__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.hero__social {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s;
}

.hero__social:hover {
  background: var(--green-dark);
}

/* Slider arrows */
.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #b0b0b0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
}

.hero__arrow:hover {
  border-color: var(--green);
}

.hero__arrow svg {
  display: block;
}

/* Bottom edge: straight line + center dip */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}

/* Bottom edge: straight sides + rounded outward bulge */
.hero__wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* Title */
.hero__title {
  text-align: center;
  padding: 8px 24px 0;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  font-weight: 700;
  color: var(--green);
}

.hero__title-light {
  color: #5a5a5a;
  font-weight: 300;
}

/* ===== Offer (Section 2) ===== */
.offer {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 48px var(--side-padding) 64px;
}

.offer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.offer-card {
  position: relative;
  width: 328px;
  height: 432px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-radius 0.35s ease;
}

.offer-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54.667px;
  height: 3px;
  background: #80B427;
  opacity: 0;
  transform: translateX(0);
  transition: left 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.2s ease 0.3s;
}

.offer-card:hover {
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 17.5px 0 rgba(0, 0, 0, 0.21);
}

.offer-card:hover::after {
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  transition: left 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.05s ease;
}

.offer-card:hover .offer-card__image {
  transform: scale(1.05);
}

.offer-card__image-wrap {
  position: relative;
  width: 328px;
  height: 318px;
  flex-shrink: 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.offer-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.offer-card__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}

.offer-card__wave svg {
  display: block;
  width: 100%;
  height: 27px;
}

.offer-card__title {
  margin-top: 18px;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
}

.offer-card__title-light {
  color: #4E4E4E;
  font-weight: 300;
}

.offer-card__title-bold {
  color: #4E4E4E;
  font-weight: 900;
}

.offer-card__count {
  margin-top: 10px;
  color: #80B427;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.offer-card:hover .offer-card__count {
  opacity: 0;
}

.offer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 420px);
  margin: 48px auto 0;
  padding: 18px 40px;
  border-radius: 999px;
  background: #80B427;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
  transition: background 0.2s;
}

.offer__cta:hover {
  background: var(--green-dark);
}

.offer__cta-light {
  font-weight: 300;
}

.offer__cta-bold {
  font-weight: 900;
}

/* ===== About (Section 3) ===== */
.about {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 48px var(--side-padding) 80px;
}

.about__grid {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: start;
  justify-content: center;
  column-gap: 48px;
}

.about__gallery {
  display: grid;
  grid-template-columns: 328px 328px;
  column-gap: 14px;
  align-items: start;
}

.about__img {
  width: 328px;
  height: 558px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.about__img--2 {
  margin-top: 112px;
}

.about__content {
  display: flex;
  flex-direction: column;
  width: 430px;
  min-height: 558px;
}

.about__text {
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 22px;
}

.about__text--bold {
  font-weight: 600;
}

.about__btn {
  display: flex;
  width: 198px;
  height: 50px;
  padding: 12px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-radius: 30px;
  border: 1px solid #D6D6D5;
  background: transparent;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.34px;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about__btn:hover {
  border-color: #80B427;
  background: #80B427;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about__aside {
  display: grid;
  grid-template-areas: "stack";
  width: 768px;
}

.about__cards {
  grid-area: stack;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  z-index: 1;
}

.about__fruit {
  grid-area: stack;
  width: 768px;
  height: 768px;
  margin-top: 118px;
  z-index: 0;
  pointer-events: none;
}

.about__fruit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 418px;
  height: 146px;
  padding: 0 36px 0 24px;
  border-radius: 80px;
  border: 16px solid rgba(255, 255, 255, 0.65);
  background: #FFF;
  box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.about-card--shift {
  margin-left: 198px;
}

.about-card__icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.about-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 23px;
  font-style: normal;
  line-height: 1.25;
}

.about-card__text-light {
  color: #4E4E4E;
  font-weight: 300;
}

.about-card__text-bold {
  color: #4E4E4E;
  font-weight: 900;
}

/* ===== Page: O nas ===== */
.page-head {
  background: #FBFBFB;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.page-head__inner {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 14px var(--side-padding) 18px;
}

.breadcrumbs {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.breadcrumbs__sep {
  margin: 0 8px;
}

.breadcrumbs__current {
  color: var(--green);
}

.page-head__wave {
  line-height: 0;
  text-align: center;
}

.page-head__wave svg {
  display: block;
  width: 298px;
  height: 27px;
  margin: -1px auto 0;
}

.about.about--page {
  padding-top: 32px;
  padding-bottom: 96px;
  margin-top: 0;
  padding-left: var(--side-padding);
}

.about__gallery-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.about__social {
  position: absolute;
  left: calc(-1 * var(--side-padding));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s;
}

.about__social:hover {
  background: var(--green-dark);
}

.about.about--page .about__img--2 {
  margin-top: 0;
}

.about__title {
  margin: 0 0 28px;
  font-family: Outfit, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
}

.about__title-brand {
  color: var(--green);
  font-weight: 600;
}

.about__title-name {
  color: #B5B5B5;
  font-weight: 300;
}

.about.about--page .about__content {
  width: 480px;
  min-height: auto;
  padding-top: 8px;
}

.about.about--page .about__text {
  text-align: justify;
  margin-bottom: 24px;
}

.about.about--page .about__text:last-child {
  margin-bottom: 0;
}

.about__aside--page {
  display: block;
  width: auto;
}

.about.about--page .about__fruit {
  width: 768px;
  height: 768px;
  margin-top: 0;
  margin-left: -120px;
}

/* ===== Services (Section 4) ===== */
.services {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 64px var(--side-padding) 80px;
}

.services__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}

.services__leaf {
  display: block;
  width: auto;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  flex-shrink: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 727px 727px;
  justify-content: center;
  gap: 24px;
}

.services-card {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  width: 727px;
  height: 398px;
  border-radius: 15px;
  overflow: visible;
}

.services-card--green {
  background: #CDEDDA;
}

.services-card--peach {
  background: #FFE4BE;
}

.services-card__frame {
  grid-area: stack;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 610px;
  height: 281px;
  padding: 0 32px;
  border: 4.15px solid #FFF;
  box-sizing: border-box;
  z-index: 1;
}

.services-card__title {
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.6px;
}

.services-card__title-light {
  color: #3F3F3F;
  font-weight: 200;
}

.services-card__title-bold {
  color: #3F3F3F;
  font-weight: 900;
}

.services-card__btn {
  grid-area: stack;
  align-self: end;
  justify-self: start;
  display: flex;
  width: 198px;
  height: 50px;
  padding: 12px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #80B427;
  background: #80B427;
  box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.34px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  margin-left: 89px;
  margin-bottom: 59px;
  z-index: 3;
}

.services-card__btn:hover {
  background: #FFF;
  color: #80B427;
}

.services-card__image {
  grid-area: stack;
  justify-self: end;
  align-self: center;
  width: auto;
  height: 100%;
  max-height: 398px;
  margin-right: -24px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

/* ===== News (Section 5) ===== */
.news {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 64px var(--side-padding) 80px;
}

.news__heading {
  text-align: center;
  margin-bottom: 48px;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.72px;
}

.news__heading-light {
  color: #3F3F3F;
  font-weight: 200;
}

.news__heading-accent {
  color: #80B427;
  font-weight: 900;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 48px;
}

.news-card {
  display: grid;
  grid-template-columns: 362px auto;
  gap: 32px;
  align-items: start;
}

.news-card__image {
  width: 362px;
  height: 337px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  min-height: 337px;
  padding-top: 8px;
}

.news-card__title {
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-style: normal;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.news-card__title-light {
  color: #3F3F3F;
  font-weight: 300;
}

.news-card__title-bold {
  color: #3F3F3F;
  font-weight: 900;
}

.news-card__divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 16px;
  background: #E0E0E0;
}

.news-card__desc {
  width: 324px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.news-card__more {
  display: flex;
  width: 80px;
  margin-top: auto;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.34px;
  transition: color 0.3s ease;
}

.news-card__more svg {
  width: 25.026px;
  height: 12.513px;
  flex-shrink: 0;
}

.news-card:hover .news-card__more {
  color: #80B427;
}

.news__btn {
  display: flex;
  width: 190px;
  height: 50px;
  padding: 12px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 48px auto 0;
  border-radius: 30px;
  border: 1px solid #D6D6D5;
  background: transparent;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.34px;
  aspect-ratio: 19 / 5;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.news__btn:hover {
  border-color: #80B427;
  background: #80B427;
  color: #fff;
}

/* ===== Gallery (Section 6) ===== */
.gallery {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 48px 60px 80px 0;
  border-top: 2px dashed rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  --gallery-item-width: 329px;
  --gallery-gap: 39px;
  --gallery-loop: calc(var(--gallery-item-width) * 4 + var(--gallery-gap) * 4);
}

.gallery__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 48px;
  padding-left: var(--side-padding);
}

.gallery__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  flex-shrink: 0;
}

.gallery__heading {
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.72px;
  white-space: nowrap;
}

.gallery__heading-light {
  color: #3F3F3F;
  font-weight: 200;
}

.gallery__heading-accent {
  color: #80B427;
  font-weight: 900;
}

.gallery__btn {
  display: flex;
  width: 190px;
  height: 50px;
  padding: 12px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid #D6D6D5;
  background: transparent;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.34px;
  aspect-ratio: 19 / 5;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gallery__btn:hover {
  border-color: #80B427;
  background: #80B427;
  color: #fff;
}

.gallery__marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 306px;
  clip-path: inset(0 round 15px);
  -webkit-clip-path: inset(0 round 15px);
}

.gallery__track {
  display: flex;
  gap: var(--gallery-gap);
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}

.gallery__marquee:hover .gallery__track {
  animation-play-state: paused;
}

.gallery__link {
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  transform: translateZ(0);
}

.gallery__image {
  display: block;
  width: var(--gallery-item-width);
  height: 306px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(var(--gallery-loop) * -1));
  }
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: #F9F9F7;
  margin-top: 48px;
}

.footer__wave {
  position: relative;
  top: -47px;
  margin-bottom: -47px;
  line-height: 0;
  pointer-events: none;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

.footer__inner {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 32px var(--side-padding) 0;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

.footer__brand img {
  display: block;
  width: auto;
  height: 110px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-left: 48px;
  border-left: 2px dashed rgba(0, 0, 0, 0.08);
}

.footer__col-title {
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.footer__col-text {
  color: #3F3F3F;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.footer__col-text a {
  color: inherit;
  transition: color 0.2s;
}

.footer__col-text a:hover {
  color: #80B427;
}

.footer__nav {
  border-top: 2px dashed rgba(0, 0, 0, 0.08);
  border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
  padding: 28px 0;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}

.footer__menu a {
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer__menu a:hover,
.footer__menu a.is-active {
  color: #80B427;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 calc(var(--side-padding) * -1);
  padding: 18px var(--side-padding);
  background: #fff;
}

.footer__privacy {
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  justify-self: start;
  transition: opacity 0.2s;
}

.footer__privacy:hover {
  opacity: 0.8;
}

.footer__copy,
.footer__credit {
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

.footer__credit {
  justify-self: end;
  text-align: right;
}

.footer__accent {
  color: #80B427;
  font-weight: 700;
}

.footer__credit .footer__accent {
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  :root {
    --side-padding: 60px;
    --header-height: clamp(70px, 8.5vw, 103px);
    --hero-slider-height: clamp(280px, 46.5vw, 564px);
  }

  .header__menu li,
  .header__contact > * {
    padding: 0 6px;
  }

  .header__menu > li > a,
  .header__menu .has-dropdown__box > a,
  .header__contact-label,
  .header__phone,
  .header__email {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  :root {
    --side-padding: 24px;
    --header-height: 70px;
    --hero-slider-height: clamp(220px, 50vw, 400px);
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
    height: 100%;
  }

  .header__nav,
  .header__contact {
    display: none;
  }

  .header__dropdown {
    display: none !important;
  }

  .header__logo {
    justify-self: center;
  }

  .header__logo img {
    height: 52px;
  }

  .header__burger {
    display: flex;
    justify-self: end;
  }

  .hero__wave svg {
    height: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --side-padding: 16px;
    --hero-slider-height: clamp(180px, 55vw, 300px);
  }

  .hero__social {
    width: 30px;
    height: 30px;
  }

  .hero__title {
    padding: 8px 16px 0;
  }

  .hero__bottom {
    padding-bottom: 24px;
  }

  .offer {
    padding: 32px var(--side-padding) 48px;
  }

  .offer__grid {
    gap: 16px;
  }

  .about {
    padding: 32px var(--side-padding) 48px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 32px;
  }

  .about__gallery {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 14px;
  }

  .about__img {
    width: min(100%, 328px);
    height: auto;
    aspect-ratio: 328 / 558;
  }

  .about__img--2 {
    margin-top: 0;
  }

  .about__content {
    width: 100%;
    max-width: 430px;
    min-height: auto;
  }

  .about__aside {
    width: 85% !important;
    max-width: 100% !important;
  }

  .about__fruit {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-top: -75px !important;
  }

  .about__cards {
    width: 100%;
    align-items: center;
  }

  .about-card {
    width: min(100%, 418px);
  }

  .about-card--shift {
    margin-left: 0;
    align-self: flex-end;
  }

  .about__social {
    position: static;
    transform: none;
    margin-bottom: 16px;
  }

  .about__gallery-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .about.about--page .about__content {
    width: 100%;
    max-width: 480px;
  }

  .about.about--page .about__fruit {
    width: 100%;
    max-width: 768px;
    height: auto;
    margin-left: 0;
  }

  .about__title {
    font-size: 28px;
  }

  .services {
    padding: 32px var(--side-padding) 48px;
  }

  .services__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
    justify-items: center;
  }

  .services__leaf {
    max-height: 120px;
  }

  .services__leaf--left,
  .services__leaf--right {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .services-card {
    width: 100%;
    max-width: 727px;
    height: auto;
    min-height: 398px;
  }

  .services-card__frame {
    width: min(100%, 610px);
    height: auto;
    min-height: 281px;
    padding: 24px;
  }

  .services-card__image {
    max-height: 280px;
    margin-right: 0;
  }

  .news {
    padding: 32px var(--side-padding) 48px;
  }

  .news__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card__image {
    width: 100%;
    max-width: 362px;
    height: auto;
    aspect-ratio: 362 / 337;
  }

  .news-card__body {
    min-height: auto;
  }

  .news-card__desc {
    width: 100%;
    max-width: 324px;
  }

  .gallery {
    padding: 32px 60px 48px 0;
    --gallery-item-width: 280px;
    --gallery-gap: 24px;
  }

  .gallery__inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding-left: var(--side-padding);
    padding-right: 0;
  }

  .gallery__track {
    gap: var(--gallery-gap);
  }

  .gallery__marquee {
    height: auto;
  }

  .gallery__image {
    width: var(--gallery-item-width);
    height: auto;
    aspect-ratio: 329 / 306;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__contacts {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    border-left: none;
    gap: 24px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .footer__privacy,
  .footer__credit {
    justify-self: center;
    text-align: center;
  }
}

.header__inner {
    display: grid;
    grid-template-columns: 1fr 20vw 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    padding-left: 4.7vw;
    padding-right: 4.88vw;
}

.header__menu li {
    flex: 1;
    text-align: center;
    padding: 0px 0px;
}

.header__menu {
    display: grid;
    align-items: center;
    width: 100%;
    grid-template-columns: 5.1vw 7vw 5.2vw 5vw 6vw 7vw;
}
.header__logo {
    justify-self: center;
    display: flex;
    align-items: center;
    padding: 0;
}

.header__logo img {
    display: block;
    height: 109px;
    width: auto;
}

.header__nav {
    justify-self: stretch;
    min-width: 0;
    margin-top: -7px;
}

.header__contact-label {
    color: var(--green);
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: -3px;
}

.header__contact {
    justify-self: stretch;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    align-content: center;
}
.header__contact {
    justify-self: stretch;
    display: grid;
    align-items: center;
    width: 100%;
    min-width: 0;
    justify-content: start;
    align-content: center;
    grid-template-columns: 10vw 10vw 10vw;
    text-align: left;
}

.header__contact-label {
    color: var(--green);
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: -3px;
    text-align: left;
    margin-left: 3vw;
}

.header__contact {
    justify-self: stretch;
    display: grid;
    align-items: center;
    width: 100%;
    min-width: 0;
    justify-content: start;
    align-content: center;
    grid-template-columns: 10vw 10vw 16vw;
    text-align: left;
}

.hero__bottom {
    position: relative;
    background: var(--white);
    margin-top: 19px;
    padding-bottom: 32px;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 4vw;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 1.8vw;
    margin-top: 4vw;
}

.hero__title {
    text-align: center;
    padding: 8px 24px 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-size: 2.33vw;
    margin-top: -0.4vw;
}

.hero__title {
    text-align: center;
    padding: 8px 24px 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-size: 2.33vw;
    margin-top: -0.4vw;
    height: 103px;
    margin-top: -1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: #FBFBFB;
    backdrop-filter: blur(5.800000190734863px);
    position: relative;
    z-index: 11;
    margin-bottom: -1.7vw;
    border-bottom: 2px dashed #0000000f;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 1.8vw;
    margin-top: 4vw;
}

.hero__title {
    text-align: center;
    padding: 8px 24px 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-size: 2.33vw;
    margin-top: -0.4vw;
    height: 103px;
    margin-top: -1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: #FBFBFB;
    backdrop-filter: blur(5.800000190734863px);
    position: relative;
    z-index: 11;
    margin-bottom: -1.7vw;
    border-bottom: 2px dashed #0000000f;
    padding-bottom: 0.6vw;
}

.hero__wave svg {
    display: block;
    width: 38%;
    height: 66px;
    width: 298px;
    height: 27px;
    margin: auto;
    margin-top: -2vw;
}

.hero__wave svg {
    display: block;
    width: 38%;
    height: 66px;
    width: 298px;
    height: 27px;
    margin: auto;
    margin-top: -1.98vw;
}

.hero__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid #b0b0b0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    padding: 0;
    display: flex;
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header__email {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #797878;
    color: #323335;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header__phone {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #323335;
    color: #323335;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.hero__title {
    text-align: center;
    padding: 8px 24px 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-size: 2.33vw;
    margin-top: -0.4vw;
    height: 103px;
    margin-top: -1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: #FBFBFB;
    backdrop-filter: blur(5.800000190734863px);
    position: relative;
    z-index: 11;
    margin-bottom: -1.7vw;
    border-bottom: 2px dashed #0000000f;
    padding-bottom: 0.4vw;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 1.6vw;
    margin-top: 4.5vw;
}

.hero__bottom {
    position: relative;
    background: var(--white);
    margin-top: 18px;
    padding-bottom: 32px;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 1.6vw;
    margin-top: 4.2vw;
}

.offer {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 48px var(--side-padding) 64px;
    padding-left: 3vw;
    padding-right: 1.6vw;
}

*
{
  box-sizing: border-box;
}

.offer {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 48px var(--side-padding) 64px;
    padding-left: 2vw;
    padding-right: 2vw;
}

.offer__grid {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
}

.offer:not(.offer--home) .offer__grid {
    display: grid;
}

.offer {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 48px var(--side-padding) 64px;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 1vw;
}

.hero__controls {
    display: flex;
    justify-content: center;
    gap: 1.6vw;
    margin-top: 4.5vw;
}

.offer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: min(100%, 420px);
    margin: 48px auto 0;
    padding: 18px 40px;
    border-radius: 999px;
    background: #80B427;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: normal;
    transition: background 0.2s;
    display: flex;
    width: 285px;
    height: 60px;
    padding: 16.8px 29.4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.about {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0;
    margin-top: -3.8vw;
    padding-left: 9.1vw;
}

.about__img--2 {
    margin-top: 67px;
}

.about__gallery {
    display: grid;
    grid-template-columns: 328px 328px;
    column-gap: 39px;
    align-items: start;
    width: 35vw;
    justify-items: start;
    justify-content: start;
}

.about {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0;
    margin-top: -3.8vw;
    padding-left: 0;
    padding-left: 9.3vw;
}

.about__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    padding-left: 0;
    padding-top: 5.8vw;
    align-items: flex-start;
    align-content: flex-start;
}

.about__aside {
    display: grid;
    grid-template-areas: inherit;
    width: 100%;
}

.about {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0;
    margin-top: -3.8vw;
    padding-left: 0;
    padding-left: 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 37vw 27vw 1fr;
    align-items: start;
    justify-content: center;
    column-gap: 48px;
    padding-left: 16vw;
}

.about__text {
    color: #515151;
    font-family: Outfit, sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 29px;
    margin-bottom: 29px;
}

.about__grid {
    display: grid;
    grid-template-columns: 37vw 27vw 1fr;
    align-items: start;
    justify-content: center;
    column-gap: 48px;
    padding-left: 8vw;
}

.about__fruit {
    grid-area: stack;
    width: 34.1vw;
    height: auto;
    margin-top: -3vw;
    z-index: 0;
    pointer-events: none;
    margin-left: -11vw;
    z-index: -1;
}

.about__fruit {
    grid-area: stack;
    width: 34.1vw;
    height: auto;
    margin-top: -3vw;
    z-index: 0;
    pointer-events: none;
    margin-left: -7vw;
    z-index: -1;
}

.about-card--shift {
    margin-left: 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 37vw 27vw 1fr;
    align-items: start;
    justify-content: center;
    column-gap: 48px;
    padding-left: 3vw;
}

.about__btn {
    display: flex;
    width: 198px;
    height: 50px;
    padding: 12px 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    border-radius: 30px;
    border: 1px solid #D6D6D5;
    background: transparent;
    color: #9F9E9C;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.34px;
    box-shadow: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2.77vw;
}

.about__btn:hover {
    border-color: #80B427;
    background: #80B427;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-card {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 16px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(255 255 255 / 62%);
    box-sizing: border-box;
}

.about__fruit {
    grid-area: stack;
    width: 34.1vw;
    height: auto;
    margin-top: -3vw;
    z-index: 0;
    pointer-events: none;
    margin-left: -7vw;
    z-index: -1;
    position: absolute;
    right: 0px;
}

.about__cards {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    gap: 61px;
    align-items: flex-start;
    z-index: 1;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(255 255 255 / 62%);
    box-sizing: border-box;
    width: 405px;
    height: 138px;
    background-color: #ffffff00;
    position: relative;
}

.about-card__icon {
    flex-shrink: 0;
    width: 124px;
    height: 124px;
    object-fit: contain;
    margin-left: -1vw;
    margin-top: 1vw;
}

.about__cards {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    gap: 82px;
    align-items: flex-start;
    z-index: 1;
    margin-top: 1vw;
    z-index: 999999;
    position: relative;
}

.about-card.about-card--shift
{
 margin-bottom: -0.8vw; 
}

.about-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 18px rgb(247 247 247 / 62%);
    box-sizing: border-box;
    width: 405px;
    height: 138px;
    background-color: #ffffff;
    position: relative;
}

.about-card__icon {
    flex-shrink: 0;
    width: 124px;
    height: 124px;
    object-fit: contain;
    margin-left: -0.6vw;
    margin-top: 0vw;
}

.about__cards {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    gap: 75px;
    align-items: flex-start;
    z-index: 1;
    margin-top: 1vw;
    z-index: 999999;
    position: relative;
}

.about-card.about-card--shift {
    margin-bottom: -0.8vw;
    margin-top: -1vw;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 19px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(247 247 247 / 62%);
    box-sizing: border-box;
    width: 411px;
    height: 143px;
    background-color: #ffffff;
    position: relative;
}

.about__cards {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
    z-index: 1;
    margin-top: 1vw;
    z-index: 999999;
    position: relative;
}

.about-card.about-card--shift {
    margin-bottom: -0.8vw;
    margin-top: 0vw;
}

.about-card.about-card--shift {
    margin-bottom: -0.8vw;
    margin-top: -0.8vw;
}

.about__cards {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    gap: 3.16vw;
    align-items: flex-start;
    z-index: 1;
    margin-top: 1.5vw;
    z-index: 999999;
    position: relative;
}

.about__text--bold 
{
  font-weight: 600;
}

.services {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 64px var(--side-padding) 80px;
    padding-left: 0;
    padding-right: 0px;
}

.services__leaf {
    display: block;
    width: auto;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 12.3vw;
}

.services__leaf.services__leaf--right
{
  margin-top: -8vw;
}

.services-card__image {
    grid-area: stack;
    justify-self: end;
    align-self: center;
    width: auto;
    height: 100%;
    max-height: 294px;
    margin-right: 52px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: 767px 763px;
    justify-content: center;
    gap: 0px;
}

.services-card__image {
    grid-area: stack;
    justify-self: end;
    align-self: center;
    width: auto;
    height: 100%;
    max-height: 294px;
    margin-right: 27px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.services-card__image {
    grid-area: stack;
    justify-self: end;
    align-self: center;
    width: auto;
    height: 100%;
    max-height: 396px;
    margin-right: 6px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.services-card__frame {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    width: 613px;
    height: 281px;
    padding: 0 32px;
    border: 4.15px solid #FFF;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 4vw;
}

.services-card__title {
    flex-direction: column;
    font-family: Roboto, sans-serif;
    font-size: 30px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.6px;
    width: 14vw;
    justify-content: flex-start;
    display: flow;
    margin-bottom: 0vw;
    height: 5vw;
    margin-top: 1vw;
    gap: 8vw;
}

.services-card__btn {
    grid-area: stack;
    align-self: end;
    justify-self: start;
    display: flex;
    width: 198px;
    height: 50px;
    padding: 12px 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #80B427;
    background: #80B427;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    color: #FFF;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.34px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    margin-left: 89px;
    margin-bottom: 59px;
    z-index: 3;
}

.services-card__frame {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    width: 613px;
    height: 281px;
    padding: 0 32px;
    border: 4.15px solid #FFF;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 4vw;
}

.services-card__image {
    grid-area: stack;
    justify-self: end;
    align-self: center;
    width: auto;
    height: 100%;
    max-height: 292px;
    margin-right: 30px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.sok_pom {
    grid-area: stack;
    justify-self: end;
    align-self: center;
    width: auto;
    height: 100%;
    max-height: 395px;
    margin-right: 5px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.services-card__btn {
    grid-area: stack;
    align-self: end;
    justify-self: start;
    display: flex;
    width: 198px;
    height: 50px;
    padding: 12px 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #80B427;
    background: #80B427;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    color: #FFF;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.34px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    margin-left: 89px;
    margin-bottom: 59px;
    z-index: 3;
}

.services {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 64px var(--side-padding) 80px;
    padding-left: 0;
    padding-right: 0px;
    margin-top: 0.7vw;
}


.news-card__divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 16px;
    background: #E0E0E0;
    width: 42px;
    height: 1px;
}

.news {
    width: 91%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 64px var(--side-padding) 80px;
    padding-top: 0px;
    margin-top: -1vw;
}

.news-card__divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 16px;
    background: #E0E0E0;
    width: 42px;
    height: 1px;
    margin-top: 1.2vw;
    margin-bottom: 1.5vw;
}

.news-card__more {
    display: flex;
    width: 80px;
    margin-top: auto;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    color: #9F9E9C;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.34px;
    transition: color 0.3s ease;
    padding-top: 0px;
    margin-top: 3.3vw;
    align-content: center;
    gap: 0.6vw;
}

.news__heading {
    text-align: center;
    margin-bottom: 58px;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.72px;
}

.footer {
    background: #f7f6f2 !important;
}

.footer__inner {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 32px var(--side-padding) 0;
    padding-top: 2.3vw;
}
.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
}

.footer__contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 115px;
    padding-left: 58px;
    border-left: 2px dashed rgba(0, 0, 0, 0.08);
    margin-top: 8px;
}

.footer__col-title {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
}

.footer__col-text {
    color: #3F3F3F;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.98;
}

.footer__contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 63px;
    padding-left: 58px;
    border-left: 2px dashed rgba(0, 0, 0, 0.08);
    margin-top: 8px;
}

.footer__col_1a 
{
  margin-left: 3.4vw;
}

.footer__col_2a 
{
      margin-left: 4.1vw;
}

.footer__inner {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 32px var(--side-padding) 0;
    padding-top: 2.3vw;
    padding-left: 0px;
    padding-right: 0px;
}

.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    padding-left: 6.2vw;
}

.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    padding-left: 6.2vw;
    padding-right: 6.2vw;
}

.footer__nav {
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
    padding: 28px 0;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 0 calc(var(--side-padding) * -1);
    padding: 18px var(--side-padding);
    background: #fff;
    padding-right: 200px;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 0 calc(var(--side-padding) * -1);
    padding: 18px var(--side-padding);
    background: #fff;
    padding-right: 80px;
    padding-left: 132px;
    width: 100%;
    margin: auto;
}

.footer__col-title {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #80B427;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.footer__col-text {
    color: #3F3F3F;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.98;
    color: #3B3B3B;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
}

.footer__privacy {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    justify-self: start;
    transition: opacity 0.2s;
    color: #80B427;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer__copy, .footer__credit {
    color: #9F9E9C;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    color: #838383;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.footer__top a b 
{
  font-weight: 700;
}

.footer__contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 63px;
    padding-left: 58px;
    border-left: 2px dashed rgba(0, 0, 0, 0.08);
    margin-top: -45px;
    height: 10vw;
    margin-bottom: -9vw;
    padding-top: 2.9vw;
}

.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    padding-left: 3.8vw;
    padding-right: 6.2vw;
    margin-top: 0.3vw;
}

.footer__nav {
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
    padding: 28px 0;
    gap: 0vw;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
    gap: 3vw;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 0 calc(var(--side-padding) * -1);
    padding: 18px var(--side-padding);
    background: #fff;
    padding-right: 80px;
    padding-left: 82px;
    width: 100%;
    margin: auto;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 0 calc(var(--side-padding) * -1);
    padding: 18px var(--side-padding);
    background: #fff;
    padding-right: 80px;
    padding-left: 82px;
    width: 100%;
    margin: auto;
    padding-bottom: 0.9vw;
}

.gallery__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    flex-shrink: 0;
}

.footer__col-text {
    color: #3F3F3F;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.68;
    color: #3B3B3B;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
}

.header__phone b 
{
  font-weight: 700;
}

.header__logo img {
    display: block;
    height: 109px;
    width: auto;
}

.header__contact-label {
    border-right: 1px dashed #0000003b;
}

.header__phone {
    border-right: 1px dashed #0000003b;
}

.header {
    position: sticky;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    top: 0px;
    z-index: 1000000;
}
.chevron {
    margin-top: 1px;
    opacity: 0.6;
    font-size: 4vw;
    width: 1vw;
    height: 0.4vw;
    font-weight: 100;
}

.gallery__inner 
{
      column-gap: 120px;
}

.about.about--page {
  margin-top: 0;
  padding-left: var(--side-padding);
}

.about.about--page .about__grid {
  padding-left: 0;
}

.about.about--page .about__img--2 {
  margin-top: 0;
}

.about.about--page .about__fruit {
  margin-top: 0;
  margin-left: -120px;
}

.grid_pages_j 
{
      display: grid;
    grid-template-columns: 24vw 24vw 24vw;
    justify-items: center;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 19px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(247 247 247 / 62%);
    box-sizing: border-box;
    width: 411px;
    height: 143px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 44px;
}

.news__heading22 
{
     text-align: center;
    margin-bottom: 58px;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.72px;
    margin-top: 2vw; 
}

.jj77 .about-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 23px;
    font-style: normal;
    line-height: 1.25;
    color: #4E4E4E;
    text-align: center;
    font-family: Roboto;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    justify-content: flex-start;
}

.jj77 .about-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(247 247 247);
    box-sizing: border-box;
    width: 100%;
    height: 173px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 44px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    padding-left: 34px;
}

.mi1 
{
  position: absolute;
    right: 0px;
}

.jj77 .about-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(247 247 247);
    box-sizing: border-box;
    width: 100%;
    height: 173px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 21px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    padding-left: 34px;
}

.grid_pages_j {
    display: grid;
    grid-template-columns: 24vw 24vw 24vw;
    justify-items: center;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    column-gap: 2vw;
}

.page-head {
    background: #FBFBFB;
    border-bottom: 0px dashed rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
}

.svg_pl 
{
  left: 50%;
    position: absolute;
    top: 7.8vw;
}

.svg_pl {
    left: 50%;
    position: absolute;
    top: 7.8vw;
    transform: translate(-50%);
}

.footer {
    position: relative;
    background: #F9F9F7;
    margin-top: 77px;
}

.footer {
    position: relative;
    background: #F9F9F7;
    margin-top: 77px;
}

.jj77 .about-card__text {
    display: block;
}

.jj77 .about-card__text b {
    display: block;
    font-weight: 700;
    color: #4E4E4E;
}

.news__heading22 {
    text-align: center;
    margin-bottom: 58px;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.72px;
    margin-top: 2.6vw;
}

.hig_s img 
{
 width: 329px; 
}

.grid_hig_s 
{
      display: grid;
    grid-template-columns: 329px 329px 329px 329px 329px;
    margin: auto;
    justify-items: center;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 1.7vw;
}

.news__heading22-2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.72px;
    margin-top: 2.6vw;
}

.news__grid_8 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 48px;
    width: 79%;
    margin: auto;
}

.offer__grid_pll {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

.t1 
{
width: 17.08vw;
height: 30.36vw; 
border-radius: 0.78vw;
}

.sekcja_1_png 
{
  color: #3F3F3F;
font-family: Roboto;
font-size: 36px;
font-style: normal;
font-weight: 200;
line-height: normal;
letter-spacing: -0.72px;
}

.sekcja_1_png b 
{
color: #80B427;
font-family: Roboto;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.72px;
}

.sekcja_1_png_1 
{
color: #515151;
font-family: Outfit;
font-size: 0.99vw;
font-style: normal;
font-weight: 300;
line-height: 1.41vw;
}

.about.about--page
{
display: grid;
    grid-template-columns: 39vw 1fr 1fr;
    justify-content: space-between;
    width: 100%;
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 2vw;  
}

.t1_ol 
{
 position: absolute;
    right: 0px; 
}

.sekcja_1 
{
  display: flex;
    gap: 30px;
}


.sekcja_1ss {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.sekcja_1 {
    display: flex;
    gap: 39px;
    margin-left: 3vw;
}

.sekcja_1ss {
    display: flex;
    gap: 30px;
    flex-direction: column;
    margin-left: 3.5vw;
    margin-top: 1vw;
}
.about.about--page {
    display: grid;
    grid-template-columns: 39vw 39vw 1fr;
    justify-content: space-between;
    width: 100%;
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 2vw;
}

.sekcja_1_png_1 {
    color: #515151;
    font-family: Outfit;
    font-size: 0.99vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.41vw;
    color: #515151;
    font-family: Outfit;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
}

.sekcja_1ss {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-left: 3.5vw;
    margin-top: 1vw;
}
.about.about--page {
    display: grid;
    grid-template-columns: 39vw 38vw 1fr;
    justify-content: space-between;
    width: 100%;
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 2vw;
}

.sekcja_1ss {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-left: 3.5vw;
    margin-top: 1vw;
    position: relative;
    z-index: 99999;
}

.sekcja_1_png_1 {
    color: #515151;
    font-family: Outfit;
    font-size: 0.99vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.41vw;
    color: #515151;
    font-family: Outfit;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
}

.about-card {
    margin-bottom: 0px;
}


.t1_ol {
    position: absolute;
    right: 0px;
    top: 4vw;
}

.class_g1 
{
      display: grid;
    grid-template-columns: 27vw 27vw 27vw;
    margin: auto;
    justify-items: center;
    align-items: center;
    justify-content: center;
    margin-top: 4vw;
}

.class_g1  .about-card {
    display: flex;
    align-items: center;
    gap: 19px;
    width: 418px;
    height: 146px;
    padding: 0 36px 0 24px;
    border-radius: 80px;
    border: 0px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 1px 1px 0px 20px rgb(247 247 247 / 62%);
    box-sizing: border-box;
    width: 411px;
    height: 143px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 44px;
    border: 16px solid rgba(255, 255, 255, 0.65);
    background: #FFF;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    width: 453px;
    height: 170px;
}

.class_g1 {
    display: grid;
    grid-template-columns: 27vw 27vw 27vw;
    margin: auto;
    justify-items: center;
    align-items: center;
    justify-content: center;
    margin-top: 3.5vw;
}

.left_class_ok1 h2 
{
border-radius: 0.78vw;
background: linear-gradient(97deg, #CDEDDA 1.29%, #FFF 121.27%), #CDEDDA;
width: 53.8vw;
height: 29.9vw;
}

.zamowi 
{
width: 37.86vw;
height: 29.9vw;
border-radius: 15px;
}

.left_class_ok1 
{
  background: linear-gradient(97deg, #CDEDDA 1.29%, #FFF 121.27%), #CDEDDA;
}

.left_class_ok1 h2 {
    height: auto;
}

.left_class_ok1 h2 {
    background: none;
}

.left_class_ok1 {
    background: linear-gradient(97deg, #CDEDDA 1.29%, #FFF 121.27%), #CDEDDA;
    width: 100%;
    height: 29.9vw;
}

.class_ok 
{
 display: grid;
    grid-template-columns: 1fr 28vw;
    width: 90%;
    margin: auto; 
}

.class_ok {
    display: grid;
    grid-template-columns: 1fr 28vw;
    width: 95%;
    margin: auto;
    gap: 2vw;
}
.left_class_ok1 {
    background: linear-gradient(97deg, #CDEDDA 1.29%, #FFF 121.27%), #CDEDDA;
    width: 100%;
    height: 29.9vw;
    border-radius: 1vw;
}


.left_class_ok1 h2 {
    background: none;
    color: #3F3F3F;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
}

.gallery {
    padding: 47px 60px 30px 0;
}

.left_class_ok1 {
    background: linear-gradient(97deg, #CDEDDA 1.29%, #FFF 121.27%), #CDEDDA;
    width: 100%;
    height: 29.9vw;
    border-radius: 1vw;
    padding-left: 4.3vw;
    padding-top: 2.3vw;
}

.kontent_h2 
{
    width: 44vw;
    color: #323335;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    margin-top: 1.6vw;  
}

.left_class_ok1 h2 {
    width: auto;
}

.class_ok {
    display: grid;
    grid-template-columns: 1fr 38vw;
    width: 95%;
    margin: auto;
    gap: 2vw;
}

.wzrz_32 
{
  margin-top:1vw;
}

.wzrz_32 {
    margin-top: 1.5vw;
}

.left_class_ok1 h2 {
    font-weight: 300;
}

.wzrz b 
{
  font-weight: 700;
}

.wzrz211 
{
  margin-top:1vw;
}

.wzrz211 {
    margin-top: 1.3vw;
}

.wzrz211 b {
    font-weight: 700;
}

.kontent_h2 b 
{
  font-weight: 700;
}

.sekcja_1_png_1 b 
{
  font-weight: 700;
}

.wzrz3 b 
{
  font-weight: 700;
}

.class_ok {
    display: grid;
    grid-template-columns: 1fr 38vw;
    width: 95%;
    margin: auto;
    gap: 2vw;
    padding-bottom: 4vw;
}

.class_g1 {
    display: grid;
    grid-template-columns: 27vw 27vw 27vw;
    margin: auto;
    justify-items: center;
    align-items: center;
    justify-content: center;
    margin-top: 3.8vw;
    margin-bottom: 1.5vw;
}

/* ===== Page: Kontakt ===== */
.footer-k {
  position: relative;
  background: #F7F6F2;
  margin-top: 77px;
}

.footer-k__wave {
  position: relative;
  top: -47px;
  margin-bottom: -47px;
  line-height: 0;
  pointer-events: none;
}

.footer-k__wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

.footer-k__nav {
  padding: 28px 4.7vw;
}

.footer-k__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 3vw;
}

.footer-k__menu a {
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-k__menu a:hover,
.footer-k__menu a.is-active {
  color: #80B427;
}

.footer-k__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 4.7vw;
  background: #fff;
}

.footer-k__privacy {
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  justify-self: start;
  transition: opacity 0.2s;
}

.footer-k__privacy:hover {
  opacity: 0.8;
}

.footer-k__copy,
.footer-k__credit {
  color: #838383;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.footer-k__credit {
  justify-self: end;
  text-align: right;
}

.footer-k__accent {
  color: #80B427;
  font-weight: 700;
}

@media (max-width: 960px) {
  .footer-k__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .footer-k__privacy,
  .footer-k__credit {
    justify-self: center;
    text-align: center;
  }
}

.contact {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 2vw 4.7vw 4vw;
}

.contact__inner {
  display: grid;
  grid-template-columns: 17.08vw 1fr 22vw;
  align-items: start;
  column-gap: 3vw;
}

.contact__photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.contact__photo {
  width: 17.08vw;
  height: 30.36vw;
  border-radius: 0.78vw;
  object-fit: cover;
  object-position: center;
}

.contact__social {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s;
}

.contact__social:hover {
  background: var(--green-dark);
}

.contact__title {
  margin: 0 0 2vw;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: -0.72px;
}

.contact__title-brand {
  color: #80B427;
  font-weight: 700;
}

.contact__title-name {
  color: #B5B5B5;
  font-weight: 300;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3vw;
}

.contact__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.contact__logo {
  width: auto;
  height: 56px;
}

.contact__badge {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.contact__block {
  margin-bottom: 22px;
}

.contact__block:last-child {
  margin-bottom: 0;
}

.contact__label {
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 8px;
}

.contact__text {
  color: #3B3B3B;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.68;
}

.contact__text a {
  color: inherit;
  transition: color 0.2s;
}

.contact__text a:hover {
  color: #80B427;
}

.contact__text b {
  font-weight: 700;
}

.contact__form-wrap {
  position: relative;
  padding-left: 2.5vw;
  border-left: 2px dashed rgba(0, 0, 0, 0.08);
  min-height: 100%;
  overflow: hidden;
}

.contact__form-bg {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 100%;
  max-width: 420px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.contact__form-bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact__form-title {
  position: relative;
  z-index: 1;
  margin: 0 0 2.2vw;
  color: #B5B5B5;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: -0.72px;
}

.contact__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field label {
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #D6D6D5;
  background: transparent;
  padding: 6px 0 8px;
  color: #3B3B3B;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-bottom-color: #80B427;
}

.contact__field--message textarea {
  min-height: 32px;
}

.contact__submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  background: #80B427;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.34px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact__submit:hover {
  background: var(--green-dark);
}

@media (max-width: 1200px) {
  .contact__inner {
    grid-template-columns: 200px 1fr 280px;
    column-gap: 32px;
    padding: 0;
  }

  .contact__photo {
    width: 200px;
    height: auto;
    aspect-ratio: 329 / 558;
  }
}

@media (max-width: 960px) {
  .contact {
    padding: 24px var(--side-padding) 48px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .contact__photo-wrap {
    justify-content: center;
  }

  .contact__photo {
    width: min(100%, 329px);
    height: auto;
    aspect-ratio: 329 / 558;
  }

  .contact__social {
    left: calc(50% - min(100%, 329px) / 2 - 18px);
  }

  .contact__form-wrap {
    padding-left: 0;
    border-left: none;
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
    padding-top: 32px;
  }

  .contact__title,
  .contact__form-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .contact__details {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .contact__logos {
    margin-bottom: 20px;
  }
}


.contact {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 2vw 3.2vw 4vw;
}

.contact__inner {
    display: grid;
    grid-template-columns: 26.08vw 1fr 22.7vw;
    align-items: start;
    column-gap: 3vw;
}

.contact__photo {
    width: 25.7vw;
    height: 30.36vw;
    border-radius: 0.78vw;
    object-fit: cover;
    object-position: center;
}
.contact__title {
    margin: 0 0 2vw;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    letter-spacing: -0.72px;
    margin-top: 1vw;
}

.contact__col 
{
 margin-left: 2vw;
    margin-top: 0.4vw; 
}

.contact__text-mod1 
{
     margin-top: 1vw;
    margin-bottom: 1.4vw; 
}

.contact__label33 
{
  margin-bottom: 0.8vw;
}

.contact__label221 
{
  margin-top: 1.7vw;
}

.contact__text123 
{
    margin-top: 1vw;
    margin-bottom: 2vw;  
}

.contact__text1255 
{
  margin-top: 0.98vw;
}

.contact__logo {
    width: auto;
    height: 89px;
}

.contact__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-direction: column;
}

.contact__badge {
    width: auto;
    height: 59px;
    object-fit: contain;
    margin-top: 0.5vw;
}

.contact__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1vw;
}

.contact__block125 
{
margin-top: 3.6vw;  
}

.contact__text3321 
{
     margin-top: 1vw;
    margin-bottom: 1.9vw; 
}

.maz 
{
  display: flex;
    flex-direction: column;
}

.klk 
{
 display: grid;
    grid-template-columns: 1fr 1fr; 
}

.klk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1vw;
    gap: 1.7vw;
}

.maz {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}
.contact__form-wrap {
    position: relative;
    padding-left: 3.5vw;
    border-left: 2px dashed rgba(0, 0, 0, 0.08);
    min-height: 100%;
    overflow: hidden;
    margin-left: -1vw;
    padding-top: 1vw;
}

.contact__form-title {
    position: relative;
    z-index: 1;
    margin: 0 0 2.2vw;
    color: #B5B5B5;
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    letter-spacing: -0.72px;
    color: #3F3F3F;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    letter-spacing: -0.6px;
}

.contact__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 3vw;
}


input::placeholder {
color: #000;
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

textarea::placeholder {
color: #000;
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.contact__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 3.4vw;
}

#contact-phone 
{
  margin-top: 0.3vw;
}

#contact-email 
{
  margin-top: 0.4vw;
}

#contact-subject 
{
  margin-top: 0.3vw;
}

.contact__field--message textarea {
    min-height: 174px;
    padding-top: 0.6vw;
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sse {
    position: absolute;
    right: -2vw;
    width: 28vw;
    top: 2vw;
    opacity: 1;
}
.contact__block {
    margin-bottom: 22px;
    border-left: 1px dashed #00000030;
    padding-left: 2vw;
    margin-left: -2vw;
}
.contact__block {
    margin-bottom: 22px;
    border-left: 1px dashed #00000030;
    padding-left: 2vw;
    margin-left: -1.9vw;
}
.contact__form-wrap {
    border-left: 1px dashed rgb(0 0 0 / 17%);
}

.contact__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-direction: column;
    border-left: 1px dashed #00000030;
    padding-left: 2vw;
    margin-left: -1.9vw;
}

.klk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1vw;
    gap: 1.7vw;
    width: 17vw;
}

/* ===== Page: Oferta katalog ===== */
.page-catalog .catalog {
  position: relative;
  display: grid;
  grid-template-columns: 323.821px minmax(0, 1fr);
  column-gap: 66px;
  align-items: stretch;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 4.7vw 5vw;
  padding-left: calc(4.7vw + 30px);
  min-height: 60vh;
}

.catalog__sidebar-col {
  grid-column: 1;
  position: relative;
  min-height: 100%;
}

.catalog__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  width: 323.821px;
  z-index: 2;
}

.catalog__nav {
  width: 323.821px;
  height: 476px;
  border-radius: 15px;
  background: #F2F2F2;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.catalog__menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.catalog__menu-item {
  position: relative;
}

.catalog__menu-link {
  display: block;
  transition: color 0.2s;
}

.catalog__menu-link:hover .catalog__menu-light,
.catalog__menu-link:hover .catalog__menu-bold {
  color: #80B427;
}

.catalog__menu-arrow {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  line-height: 0;
}

.catalog__menu-arrow svg {
  display: block;
  width: 19px;
  height: 10px;
}

.catalog__menu-light {
  color: #4E4E4E;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.catalog__menu-bold {
  color: #4E4E4E;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.catalog__menu-count {
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
}

.catalog__nav-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.catalog__nav-footer-link {
  display: block;
  position: relative;
  transition: color 0.2s;
}

.catalog__nav-footer-link:hover .catalog__menu-light,
.catalog__nav-footer-link:hover .catalog__menu-bold {
  color: #80B427;
}

.catalog__nav-footer-link--active .catalog__menu-light,
.catalog__nav-footer-link--active .catalog__menu-bold,
.catalog__nav-footer-link--active .catalog__menu-count {
  color: #80B427;
}

.catalog__nav-footer-link .catalog__menu-arrow {
  left: -30px;
}

.catalog__photo {
  width: 323.821px;
  height: 301.567px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.catalog__content {
  position: relative;
  grid-column: 2;
  padding-right: 2vw;
  padding-bottom: 4vw;
}

.catalog__bg {
  position: absolute;
  right: -2vw;
  top: 0;
  width: 28vw;
  max-width: 420px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.catalog__bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.catalog__title {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.72px;
}

.catalog__title-light {
  color: #3F3F3F;
  font-weight: 200;
}

.catalog__title-bold {
  color: #3F3F3F;
  font-weight: 900;
}

.catalog__divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #E0E0E0;
  margin-bottom: 32px;
}

.catalog__list {
  position: relative;
  z-index: 1;
  column-count: 3;
  column-gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalog__list li {
  position: relative;
  padding: 0 0 10px 14px;
  color: #515151;
  text-align: justify;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  break-inside: avoid;
}

.catalog__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9F9E9C;
}

.catalog-biuro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.catalog-biuro__image {
  width: 380px;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.catalog-biuro__subtitle {
  margin: 0 0 24px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
}

.catalog-biuro__subtitle-bold {
  font-weight: 600;
}

.catalog-biuro__text {
  margin: 0 0 32px;
  color: #515151;
  text-align: justify;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
}

.catalog-biuro__heading {
  margin: 0 0 20px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
}

.catalog-biuro__heading-bold {
  font-weight: 600;
}

.catalog-biuro__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-biuro__list li {
  position: relative;
  padding: 0 0 10px 14px;
  color: #515151;
  text-align: justify;
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
}

.catalog-biuro__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9F9E9C;
}

.fruit-boxes {
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.fruit-boxes__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.72px;
}

.fruit-boxes__title-light {
  color: #3F3F3F;
  font-weight: 200;
}

.fruit-boxes__title-bold {
  color: #3F3F3F;
  font-weight: 900;
}

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

.fruit-box-card {
  display: flex;
  flex-direction: column;
  background: #F2F2F2;
  border-radius: 15px;
  overflow: hidden;
  min-height: 100%;
}

.fruit-box-card__image-wrap {
  line-height: 0;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.fruit-box-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.fruit-box-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 18px 28px;
  flex: 1;
}

.fruit-box-card__name {
  margin: 0 0 8px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.fruit-box-card__name-light {
  color: #4E4E4E;
  font-weight: 300;
}

.fruit-box-card__name-bold {
  color: #4E4E4E;
  font-weight: 900;
}

.fruit-box-card__weight {
  margin: 0 0 12px;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
}

.fruit-box-card__tagline {
  margin: 0 0 16px;
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.fruit-box-card__list-title {
  margin: 0 0 10px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}

.fruit-box-card__list {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.fruit-box-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}

.fruit-box-card__check {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 2px;
}

.fruit-box-card__check svg {
  display: block;
}

.fruit-box-card__summary {
  margin: auto 0 0;
  padding-top: 8px;
  color: #80B427;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.biuro-info {
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.biuro-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.biuro-info-card {
  position: relative;
  min-height: 320px;
  padding: 28px 24px 80px;
  border-radius: 15px;
  overflow: visible;
}

.biuro-info-card--pink {
  background: #F0E3F3;
}

.biuro-info-card--green {
  background: #CDEDDA;
}

.biuro-info-card--peach {
  background: #FFE4BE;
}

.biuro-info-card__title {
  margin: 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.52px;
}

.biuro-info-card__title--center {
  text-align: center;
}

.biuro-info-card__title-light {
  color: #3F3F3F;
  font-weight: 300;
}

.biuro-info-card__title-bold {
  color: #3F3F3F;
  font-weight: 900;
}

.biuro-info-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.biuro-info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

.biuro-info-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%2380B427'/%3E%3Cpath d='M4 7.2L6.1 9.3L10 5.2' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.biuro-info-card__list--purple li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23A885C7'/%3E%3Cpath d='M4 7.2L6.1 9.3L10 5.2' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.biuro-info-card__contact {
  text-align: center;
  color: #515151;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.biuro-info-card__contact p {
  margin: 0 0 14px;
}

.biuro-info-card__contact a {
  color: inherit;
  transition: color 0.2s;
}

.biuro-info-card__contact a:hover {
  color: #80B427;
}

.biuro-info-card__contact b {
  font-weight: 700;
}

.biuro-info-card__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.biuro-info-card__deco--left {
  left: -10px;
  bottom: -40px;
  width: 180px;
  height: auto;
}

.biuro-info-card__deco--right {
  right: -30px;
  bottom: -50px;
  width: 220px;
  height: auto;
  opacity: 0.9;
}

.biuro-info__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  height: 50px;
  margin-top: 40px;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #D6D6D5;
  background: #fff;
  color: #9F9E9C;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.34px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.biuro-info__back:hover {
  border-color: #80B427;
  background: #80B427;
  color: #fff;
}

@media (max-width: 1200px) {
  .page-catalog .catalog {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .catalog__sidebar,
  .catalog__nav,
  .catalog__photo {
    width: 280px;
  }

  .catalog__sidebar {
    left: auto;
  }

  .catalog__nav {
    height: auto;
    min-height: 420px;
    max-height: 476px;
  }

  .catalog__photo {
    height: auto;
    aspect-ratio: 323.821 / 301.567;
  }

  .catalog__list {
    column-count: 2;
    column-gap: 32px;
  }

  .catalog-biuro {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
  }

  .catalog-biuro__image {
    width: 300px;
  }

  .fruit-boxes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .biuro-info__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .biuro-info-card {
    min-height: 0;
    padding-bottom: 28px;
  }

  .biuro-info-card__deco {
    display: none;
  }
}

@media (max-width: 960px) {
  body.page-catalog .catalog,
  .page-catalog .catalog {
    display: block;
    padding: 24px var(--side-padding) 48px;
  }

  .catalog__sidebar-col {
    margin-bottom: 32px;
  }

  .catalog__sidebar {
    position: relative;
    top: auto;
    width: 100%;
  }

  .catalog__nav,
  .catalog__photo {
    width: 100%;
    max-width: 323.821px;
    margin-left: auto;
    margin-right: auto;
  }

  .catalog__nav {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .catalog__photo {
    height: auto;
    aspect-ratio: 323.821 / 301.567;
  }

  .catalog__content {
    padding-right: 0;
  }

  .catalog__bg {
    width: 50vw;
    right: -10vw;
    opacity: 0.2;
  }

  .catalog__title {
    font-size: 28px;
  }

  .catalog__list {
    column-count: 1;
  }

  .catalog-biuro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-biuro__image {
    width: 100%;
    max-width: 380px;
  }

  .fruit-boxes {
    margin-top: 48px;
  }

  .fruit-boxes__title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .fruit-boxes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .biuro-info {
    margin-top: 48px;
  }

  .biuro-info__back {
    width: 100%;
    max-width: 320px;
  }

  .catalog__menu-arrow {
    left: -24px;
  }
}

/* ===== Mobile homepage (overrides desktop vw rules) ===== */
@media (max-width: 960px) {
  :root {
    --side-padding: 20px;
    --header-height: 76px;
    --hero-slider-height: 307px;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Header */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000000;
    background: #fff;
    border-bottom: none;
    height: 76px;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--side-padding);
    max-width: 100%;
    height: 76px;
    min-height: 76px;
  }

  .header__nav,
  .header__contact {
    display: none;
  }

  .header__logo {
    grid-column: 2;
    justify-self: center;
    flex: none;
    padding: 0;
    margin: 0;
  }

  .header__logo img {
    display: block !important;
    width: 179px !important;
    height: 76px !important;
    aspect-ratio: 179 / 83 !important;
    object-fit: contain !important;
  }

  .header__burger {
    display: flex;
    grid-column: 3;
    justify-self: end;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 4px;
    padding: 0;
    border: none;
    border-radius: 5px;
    background: #80B427;
    cursor: pointer;
  }

  .header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
    transform-origin: center;
  }

  .header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000001;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    overflow: hidden;
  }

  .header__mobile-menu[hidden] {
    display: none !important;
  }

  .header__mobile-top {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    min-height: 76px;
    padding: 0 var(--side-padding);
  }

  .header__mobile-top-spacer {
    grid-column: 1;
    width: 40px;
    height: 40px;
  }

  .header__mobile-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
  }

  .header__mobile-logo img {
    display: block;
    width: 179px;
    height: 76px;
    object-fit: contain;
  }

  .header__mobile-close {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 5px;
    background: #323335;
    color: #fff;
    cursor: pointer;
  }

  .header__mobile-divider {
    flex-shrink: 0;
    height: 1px;
    margin: 0 var(--side-padding);
    background: #E5E5E5;
  }

  .header__mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 24px var(--side-padding);
  }

  .header__mobile-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header__mobile-list > li {
    width: 100%;
    text-align: center;
  }

  .header__mobile-list a,
  .header__mobile-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: none;
    color: #323335;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .header__mobile-list a:hover,
  .header__mobile-list a.is-active,
  .header__mobile-dropdown-toggle:hover,
  .header__mobile-dropdown-toggle.is-active {
    color: var(--green);
  }

  .header__mobile-chevron {
    margin-top: 2px;
    opacity: 0.7;
    transition: transform 0.2s;
  }

  .header__mobile-dropdown-toggle[aria-expanded="true"] .header__mobile-chevron {
    transform: rotate(180deg);
  }

  .header__mobile-sublist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }

  .header__mobile-sublist[hidden] {
    display: none !important;
  }

  .header__mobile-sublist a {
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    color: #4E4E4E;
  }

  .header__mobile-footer {
    position: relative;
    flex-shrink: 0;
    background: #80B427;
    padding: 36px var(--side-padding) 40px;
    text-align: center;
  }

  .header__mobile-wave {
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
  }

  .header__mobile-wave svg {
    display: block;
    width: 100%;
    height: 27px;
  }

  .header__mobile-contact {
    position: relative;
    z-index: 1;
  }

  .header__mobile-label {
    margin: 0 0 10px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
  }

  .header__mobile-phone,
  .header__mobile-email {
    display: block;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
  }

  .header__mobile-phone {
    margin-bottom: 4px;
  }

  .header__mobile-phone b,
  .header__mobile-email b {
    font-weight: 700;
  }

  /* Hero */
  .hero__slider {
    height: 307px;
  }

  .hero__social {
    display: none;
  }

  .hero__wave svg {
    width: 200px;
    height: 20px;
    margin-top: 0;
  }

  .hero__bottom {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .hero__title {
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 16px var(--side-padding) 12px;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    letter-spacing: -0.48px;
    color: #3F3F3F;
    background: #FBFBFB;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
    display: block;
    text-align: center;
  }

  .hero__title-accent {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
  }

  .hero__title-light {
    color: #3F3F3F;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.48px;
  }

  .hero__controls {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
  }

  .offer--home > .offer__controls {
    display: none !important;
  }

  /* Offer carousel */
  .offer {
    padding: 28px var(--side-padding) 40px;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    padding-top: 28px;
  }

  .offer:not(.offer--home) .offer__controls {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 38px !important;
    margin-top: -9px !important;
  }

  .offer__arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    gap: 10px !important;
    border: 1.5px solid #b0b0b0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box !important;
  }

  .offer__arrow:hover {
    border-color: var(--green);
  }

  .offer__viewport {
    overflow: hidden !important;
    margin-right: calc(var(--side-padding) * -1) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .offer__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 17px !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    padding-bottom: 8px !important;
    transition: transform 0.35s ease;
    justify-content: flex-start !important;
  }

  .offer .offer__viewport .offer-card {
    flex: 0 0 232px !important;
    width: 232px !important;
    height: 305.561px !important;
    min-height: 305.561px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background: #fff !important;
    box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 20%) !important;
  }

  .offer .offer__viewport .offer-card:hover {
    border-radius: 15px !important;
    box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 20%) !important;
  }

  .offer .offer__viewport .offer-card__image-wrap {
    width: 232px !important;
    height: 225px !important;
    flex-shrink: 0 !important;
    border-radius: 15px 15px 0 0 !important;
  }

  .offer .offer__viewport .offer-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .offer .offer__viewport .offer-card__title {
    font-size: 17px !important;
    margin-top: 19px !important;
    padding: 0 8px !important;
  }

  .offer .offer__viewport .offer-card__count {
    font-size: 14px !important;
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    padding: 0 8px !important;
    opacity: 1 !important;
  }

  .offer__cta {
    display: flex !important;
    width: 214px !important;
    height: 45px !important;
    padding: 12.909px 22.592px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10.758px !important;
    aspect-ratio: 214 / 45 !important;
    border-radius: 24.205px !important;
    background: #80B427 !important;
    box-shadow: 0 8.606px 34.533px 0 rgba(0, 0, 0, 0.12) !important;
    margin-top: 45px !important;
    margin-bottom: -22px !important;
    font-family: Roboto, sans-serif !important;
    font-size: 17px !important;
    box-sizing: border-box !important;
  }

  /* About */
  .about {
    padding: 32px var(--side-padding) 40px !important;
    margin-top: 0 !important;
    padding-left: var(--side-padding) !important;
    overflow: visible !important;
    overflow-x: hidden !important;
  }

  .about__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding-left: 0 !important;
    grid-template-columns: 1fr !important;
  }

  .about__gallery {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 20px !important;
    width: 100% !important;
    justify-items: stretch !important;
  }

  .about__img {
    width: 100% !important;
    height: 237px !important;
    aspect-ratio: 328 / 420 !important;
    border-radius: 12px !important;
    object-fit: cover !important;
  }

  .about__img--2 {
    margin-top: 0 !important;
  }

  .about__content {
    width: 100% !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    min-height: auto !important;
    margin: auto !important;
    margin-top: 15px !important;
    position: relative !important;
    z-index: 99 !important;
  }

  .about__text {
    color: #515151 !important;
    font-family: Outfit, sans-serif !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 22px !important;
    text-align: left !important;
    width: 86% !important;
    padding-right: 26px !important;
    margin: auto !important;
    margin-bottom: 20px !important;
  }

  .about__text--bold {
    font-weight: 600 !important;
  }

  .about__btn {
    margin-top: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;
  }

  .about__aside {
    width: 85% !important;
    display: grid !important;
    grid-template-areas: "stack" !important;
    position: relative !important;
    margin: auto !important;
    margin-top: 11px !important;
    overflow: visible !important;
    min-height: 520px !important;
  }

  .about__fruit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-area: stack !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-top: -75px !important;
    margin-right: -44px !important;
    margin-bottom: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    min-width: 154% !important;
    min-height: 597px !important;
    overflow: hidden !important;
  }

  .about__fruit img {
    display: block !important;
    width: 506px !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: top right !important;
  }

  .about__cards {
    grid-area: stack !important;
    position: relative !important;
    gap: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    align-items: stretch !important;
    z-index: 2 !important;
  }

  .about-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 98px !important;
    padding: 6px 19px 7px 12px !important;
    gap: 14px !important;
    border-radius: 80px !important;
    box-shadow: 1px 1px 0 17px rgb(242 238 238 / 58%) !important;
    margin-bottom: 43px !important;
    margin-top: 0 !important;
    background-color: #fff !important;
    border: none !important;
  }

  .about-card.about-card--shift,
  .about-card--shift {
    margin-left: 0 !important;
    margin-bottom: 53px !important;
    margin-top: 8px !important;
  }

  .about-card__icon {
    width: 90.289px !important;
    height: 90.289px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
  }

  .about-card__text {
    color: #4E4E4E !important;
    font-family: Roboto, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: normal !important;
    text-align: center !important;
    align-items: center !important;
  }

  .about-card__text-light {
    font-weight: 300 !important;
    color: #4E4E4E !important;
  }

  .about-card__text-bold {
    font-weight: 900 !important;
    color: #4E4E4E !important;
  }

  /* Services */
  .services {
    padding: 20px var(--side-padding) 56px !important;
    padding-left: var(--side-padding) !important;
    padding-right: var(--side-padding) !important;
    margin-top: -94px !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
  }

  .services__inner {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .services__leaf,
  .services__leaf--left,
  .services__leaf--right {
    display: none !important;
  }

  .services__grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 63px !important;
    overflow: visible !important;
  }

  .services-card {
    display: grid !important;
    grid-template-areas: "stack" !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 232px !important;
    min-height: 232px !important;
    padding: 14px !important;
    box-sizing: border-box !important;
    border-radius: 15px !important;
    overflow: visible !important;
  }

  .services-card--green {
    background: #CDEDDA !important;
    z-index: 3 !important;
  }

  .services-card--peach {
    background: #FFE4BE !important;
    z-index: 2 !important;
    margin-top: 4px !important;
  }

  .services-card__frame {
    grid-area: stack !important;
    position: absolute !important;
    inset: 14px !important;
    width: auto !important;
    height: auto !important;
    min-height: 182px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 3px solid #FFF !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .services-card__title {
    display: flex !important;
    flex-direction: column !important;
    font-family: Roboto, sans-serif !important;
    font-size: 24px !important;
    font-style: normal !important;
    line-height: 1 !important;
    letter-spacing: -0.48px !important;
    width: auto !important;
    max-width: 45% !important;
    height: auto !important;
    margin: 0 !important;
    margin-left: 6px !important;
    padding: 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
    justify-content: center !important;
  }

  .services-card__title-light {
    color: #3F3F3F !important;
    font-weight: 200 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .services-card__title-bold {
    color: #3F3F3F !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .services-card__btn {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translate(-50%, 50%) !important;
    z-index: 10 !important;
    display: flex !important;
    width: 198px !important;
    height: 50px !important;
    padding: 12px 21px !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 30px !important;
    border: 1px solid #80B427 !important;
    background: #80B427 !important;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12) !important;
    color: #FFF !important;
    font-family: Roboto, sans-serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: -0.34px !important;
    margin: 0 !important;
    grid-area: unset !important;
    align-self: unset !important;
    justify-self: unset !important;
  }

  .services-card__image,
  .services-card .sok_pom {
    grid-area: stack !important;
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    max-width: 46% !important;
    max-height: 158px !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center right !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .services-card--green .services-card__image {
    top: 50% !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: 189px !important;
    height: 189px !important;
    min-width: 189px !important;
    max-height: 162px !important;
    max-width: none !important;
    z-index: 2 !important;
  }

  .services-card--peach .services-card__image,
  .services-card--peach .sok_pom {
    top: 50% !important;
    bottom: auto !important;
    right: -18px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    max-height: 235px !important;
    min-height: 230px !important;
    min-width: 186px !important;
    max-width: none !important;
    z-index: 2 !important;
  }

  /* News */
  .news {
    width: 100%;
    padding: 32px var(--side-padding) 49px;
    margin-top: 0;
    padding-top: 32px;
    padding: 20px;
    margin-top: -13px;
  }

  .news__heading {
    font-size: 28px;
    margin-bottom: 37px;
  }

  .news__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 362 / 280;
    border-radius: 12px;
  }

  .news-card__body {
    min-height: auto;
    padding-top: 0;
    width: 86%;
    margin: auto;
    margin-top: 15px;
  }

  .news-card__title {
    font-size: 20px;
    line-height: 1.3;
  }

  .news-card__divider {
    width: 42px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .news-card__desc {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .news-card__more {
    justify-content: flex-start;
    margin: auto;
    margin-top: 30px;
  }

  .news__btn {
    margin-top: 32px;
  }

  /* Gallery — 2×2 grid */
  .gallery {
    padding: 32px var(--side-padding) 40px;
    border-top: 2px dashed rgba(0, 0, 0, 0.06);
    --gallery-item-width: 100%;
    --gallery-gap: 10px;
  }

  .gallery__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding-left: 0;
    column-gap: 0;
  }

  .gallery__info {
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .gallery__heading {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }

  .gallery__marquee {
    overflow: visible;
    height: auto;
    clip-path: none;
    -webkit-clip-path: none;
  }

  .gallery__track {
    animation: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .gallery__link:nth-child(n + 5) {
    display: none;
  }

  .gallery__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  /* Footer */
  .footer {
    margin-top: 40px;
  }

  .footer__inner {
    padding: 24px var(--side-padding) 0;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    padding-top: 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__brand img {
    height: 72px;
    margin: 0 auto;
  }

  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
    border-left: none;
    margin-top: 0;
    margin-bottom: 0;
    height: auto;
    padding-top: 0;
  }

  .footer__col_1a,
  .footer__col_2a {
    margin-left: 0;
  }

  .footer__nav {
    padding: 20px 0;
  }

  .footer__menu {
    gap: 10px 20px;
  }

  .footer__menu a {
    font-size: 13px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    padding: 16px var(--side-padding);
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    margin: 0;
    width: 100%;
  }

  .footer__privacy,
  .footer__credit {
    justify-self: center;
    text-align: center;
  }

  /* Inner pages */
  body.page-about,
  body.page-catalog,
  body.page-contact {
    overflow-x: hidden;
  }

  .svg_pl {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    width: 100% !important;
    height: 27px !important;
  }

  .breadcrumbs {
    font-size: 13px;
    line-height: 1.45;
  }

  .about.about--page {
    display: block !important;
    padding: 20px var(--side-padding) 32px !important;
    grid-template-columns: 1fr !important;
    overflow: hidden;
  }

  .about.about--page > .sekcja_1:first-of-type {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
  }

  .about.about--page .about__grid {
    padding-left: 0;
  }

  .about.about--page .about__fruit {
    display: none;
  }

  .sekcja_1_png {
    font-size: 24px !important;
    text-align: left !important;
  }

  .sekcja_1_png b {
    font-size: 24px !important;
  }

  .sekcja_1_png_1 {
    font-size: 16px !important;
    line-height: 22px !important;
    text-align: left !important;
    width: 100% !important;
    font-family: Outfit, sans-serif !important;
  }

  .sekcja_1,
  .sekcja_1ss {
    flex-direction: column !important;
    margin-left: 0 !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  .t1 {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 328 / 558;
    border-radius: 12px;
  }

  .t1_ol {
    display: none !important;
  }

  .mi1 {
    display: block !important;
    position: relative !important;
    right: auto !important;
    width: calc(100% - var(--side-padding) * 2) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 16px !important;
    padding: 0 var(--side-padding) !important;
    box-sizing: content-box !important;
  }

  .grid_pages_j,
  .class_g1 {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 0 32px !important;
    padding: 0 var(--side-padding) !important;
    box-sizing: border-box !important;
  }

  .class_g1 .about-card,
  .jj77 .about-card {
    width: 100% !important;
    height: auto !important;
    min-height: 96px !important;
    margin-bottom: 0 !important;
    padding: 18px 24px !important;
    border: none !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  }

  .jj77 .about-card__text {
    font-size: 17px !important;
    line-height: 1.35 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .jj77 .about-card__icon {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0;
  }

  .class_ok {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 var(--side-padding) 32px !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  .left_class_ok1 {
    height: auto !important;
    min-height: 0 !important;
    padding: 24px 20px !important;
    border-radius: 12px !important;
  }

  .left_class_ok1 h2 {
    font-size: 22px !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 0 8px !important;
  }

  .kontent_h2 {
    width: 100% !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
  }

  .zamowi {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .offer__grid_pll {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 var(--side-padding) 40px !important;
    box-sizing: border-box !important;
  }

  .offer__grid_pll .offer-card {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background: #fff !important;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12) !important;
  }

  .offer__grid_pll .offer-card__image-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 0.95;
    border-radius: 15px 15px 0 0 !important;
  }

  .offer__grid_pll .offer-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .offer__grid_pll .offer-card__title {
    font-size: 14px !important;
    margin-top: 10px !important;
    padding: 0 8px 4px !important;
    line-height: 1.2 !important;
  }

  .offer__grid_pll .offer-card__count {
    font-size: 12px !important;
    margin-top: 4px !important;
    margin-bottom: 10px !important;
    padding: 0 8px !important;
    opacity: 1 !important;
  }

  .grid_hig_s {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 var(--side-padding) 24px !important;
    box-sizing: border-box !important;
  }

  .hig_s img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    display: block;
  }

  .news__grid_8 {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 32px !important;
    padding: 0 var(--side-padding) 32px !important;
    box-sizing: border-box !important;
  }

  .page-about .news__btn {
    display: flex !important;
    margin: 0 auto 40px !important;
  }

  .page-head__inner {
    padding: 12px var(--side-padding) 14px !important;
  }

  .news__heading22,
  .news__heading22-2 {
    font-size: 26px !important;
    margin-top: 20px !important;
    margin-bottom: 28px !important;
    padding: 0 var(--side-padding) !important;
    box-sizing: border-box !important;
  }

  .contact {
    padding: 20px var(--side-padding) 40px !important;
  }

  .contact__inner {
    grid-template-columns: 1fr !important;
    row-gap: 28px !important;
    padding: 0 !important;
  }

  .contact__photo-wrap {
    justify-content: center !important;
  }

  .contact__photo {
    width: min(100%, 280px) !important;
    height: auto !important;
    aspect-ratio: 329 / 558;
    margin: 0 auto !important;
    border-radius: 12px;
  }

  .contact__title {
    font-size: 28px !important;
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .contact__details {
    grid-template-columns: 1fr !important;
    row-gap: 8px !important;
  }

  .contact__col {
    margin-left: 0 !important;
  }

  .contact__col--right {
    margin-top: 8px !important;
  }

  .contact__text123 a {
    display: inline-block;
  }

  .contact__form-wrap {
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 2px dashed rgba(0, 0, 0, 0.08) !important;
    padding-top: 28px !important;
  }

  .contact__form-title {
    font-size: 24px !important;
    text-align: center !important;
  }

  .klk {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .sse {
    display: none !important;
  }

  .footer-k {
    margin-top: 32px !important;
  }

  .footer-k__nav {
    padding: 24px var(--side-padding) !important;
  }

  .footer-k__menu {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-k__menu a {
    font-size: 14px !important;
  }

  .biuro-info__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .biuro-info-card {
    min-height: 0 !important;
    padding-bottom: 28px !important;
  }

  .catalog-biuro__subtitle,
  .catalog-biuro__heading {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  .catalog-biuro__text,
  .catalog-biuro__list {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 961px) {
.offer__controls {
  display: none;
}

.offer--home > .offer__controls {
  display: none !important;
}

.offer:not(.offer--home) .offer__viewport {
  overflow: visible;
}

.offer--home .offer__viewport {
  overflow: hidden;
  padding-bottom: 14px;
}

  .header__mobile-menu {
    display: none !important;
  }
}

@media (max-width: 480px) {
  :root {
    --side-padding: 16px;
  }

  .about-card__text {
    font-size: 15px;
  }

  .news__heading,
  .gallery__heading {
    font-size: 24px;
  }
}

/* Mobile: about fruit — final override */
@media (max-width: 960px) {
  .about .about__grid .about__aside {
    display: grid !important;
    grid-template-areas: "stack" !important;
    position: relative !important;
    overflow: visible !important;
    min-height: 520px !important;
  }

  .about .about__grid .about__aside .about__fruit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-area: stack !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-top: -75px !important;
    margin-right: -44px !important;
    margin-bottom: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    min-width: 154% !important;
    min-height: 597px !important;
    overflow: hidden !important;
  }

  .about .about__grid .about__aside .about__fruit img {
    display: block !important;
    width: 506px !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: top right !important;
  }

  .about .about__grid .about__aside .about__cards {
    grid-area: stack !important;
    position: relative !important;
    z-index: 2 !important;
  }
}

/* Mobile: services — final override */
@media (max-width: 960px) {
  .services {
    padding: 20px var(--side-padding) 56px !important;
    padding-left: var(--side-padding) !important;
    padding-right: var(--side-padding) !important;
    margin-top: -94px !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
  }

  .services .services__grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 63px !important;
    overflow: visible !important;
  }

  .services .services__grid .services-card {
    display: grid !important;
    grid-template-areas: "stack" !important;
    position: relative !important;
    width: 100% !important;
    height: 232px !important;
    min-height: 232px !important;
    padding: 14px !important;
    box-sizing: border-box !important;
    border-radius: 15px !important;
    overflow: visible !important;
  }

  .services .services__grid .services-card__frame {
    grid-area: stack !important;
    position: absolute !important;
    inset: 14px !important;
    width: auto !important;
    height: auto !important;
    min-height: 178px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 3px solid #FFF !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .services-card__frame {
    min-height: 178px !important;
  }

  .services .services__grid .services-card__title {
    max-width: 45% !important;
    gap: 0 !important;
    row-gap: 0 !important;
    line-height: 1 !important;
    height: auto !important;
    margin: 0 !important;
    margin-left: 6px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .services .services__grid .services-card__title-light,
  .services .services__grid .services-card__title-bold {
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .services .services__grid .services-card__btn {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translate(-50%, 50%) !important;
    z-index: 10 !important;
    margin: 0 !important;
    grid-area: unset !important;
    align-self: unset !important;
    justify-self: unset !important;
  }

  .services .services__grid .services-card__image,
  .services .services__grid .services-card .sok_pom {
    top: 50% !important;
    bottom: auto !important;
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    max-height: 158px !important;
    max-width: 46% !important;
    z-index: 2 !important;
  }

  .services .services__grid .services-card--green .services-card__image {
    right: 0 !important;
    max-height: 162px !important;
    width: 189px !important;
    height: 189px !important;
    min-width: 189px !important;
    max-width: none !important;
  }

  .services .services__grid .services-card--peach .services-card__image,
  .services .services__grid .services-card--peach .sok_pom {
    max-height: 235px !important;
    min-height: 230px !important;
    min-width: 186px !important;
    right: -18px !important;
  }

  .gallery {
        padding: 32px var(--side-padding) 40px;
        border-top: 2px dashed rgba(0, 0, 0, 0.06);
        --gallery-item-width: 100%;
        --gallery-gap: 10px;
        margin-top: 22px;
    }
    .footer__wave {
    position: relative;
    top: -23px;
    margin-bottom: -59px;
    line-height: 0;
    pointer-events: none;
}

.footer__col-title {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #80B427;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    color: #80B427;
    text-align: center;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.footer__col-text {
    color: #3F3F3F;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.68;
    color: #3B3B3B;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    color: #3B3B3B;
    text-align: center;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.footer__col-title {
    color: #80B427;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #80B427;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    color: #80B427;
    text-align: center;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

    .footer__nav {
        padding: 20px 0;
        display: none;
    }

.footer__inner {
        padding: 24px var(--side-padding) 0;
        padding-left: var(--side-padding);
        padding-right: var(--side-padding);
        padding-top: 24px;
        padding: 0px;
        padding-top: 28px;
    }

.footer__copy, .footer__credit {
    color: #9F9E9C;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    color: #838383;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 237px;
    margin: auto;
    margin-top: 10px;
}

}

/* Mobile: inner pages — final override */
@media (max-width: 960px) {
  body.page-about .svg_pl,
  body.page-catalog .svg_pl,
  body.page-contact .svg_pl {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    width: 100% !important;
    height: 27px !important;
  }

  body.page-about .about.about--page {
    display: block !important;
    padding: 20px var(--side-padding) 32px !important;
    grid-template-columns: 1fr !important;
  }

  body.page-about .about.about--page > .sekcja_1:first-of-type {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 0 0 20px !important;
  }

  body.page-about .sekcja_1_png_1 {
    font-size: 16px !important;
    line-height: 22px !important;
    text-align: left !important;
    width: 100% !important;
  }

  body.page-about .mi1 {
    display: block !important;
    position: relative !important;
    right: auto !important;
    width: calc(100% - var(--side-padding) * 2) !important;
    margin: 0 auto 16px !important;
    padding: 0 var(--side-padding) !important;
  }

  body.page-about .grid_pages_j.jj77,
  body.page-about .class_g1 {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 var(--side-padding) !important;
    margin-bottom: 32px !important;
  }

  body.page-about .jj77 .about-card,
  body.page-about .class_g1 .about-card {
    width: 100% !important;
    height: auto !important;
    min-height: 96px !important;
    margin-bottom: 0 !important;
    padding: 18px 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
  }

  body.page-about .offer__grid_pll {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 var(--side-padding) 40px !important;
  }

  body.page-about .offer__grid_pll .offer-card {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.12) !important;
  }

  body.page-about .offer__grid_pll .offer-card__image-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 0.95 !important;
  }

  body.page-about .offer__grid_pll .offer-card__title {
    font-size: 14px !important;
    margin-top: 10px !important;
    padding: 0 8px 4px !important;
  }

  body.page-about .offer__grid_pll .offer-card__count {
    font-size: 12px !important;
    margin: 4px 0 10px !important;
    padding: 0 8px !important;
    opacity: 1 !important;
  }

  body.page-about .news__grid_8 {
    padding: 0 var(--side-padding) 32px !important;
  }

  body.page-about .grid_hig_s {
    padding: 0 var(--side-padding) 24px !important;
  }

  body.page-about .news__heading22,
  body.page-about .news__heading22-2 {
    padding: 0 var(--side-padding) !important;
  }

  body.page-about .class_ok {
    width: 100% !important;
    padding: 0 var(--side-padding) 32px !important;
  }

  body.page-about .left_class_ok1 {
    height: auto !important;
    min-height: 0 !important;
  }

  body.page-contact .contact {
    padding: 20px var(--side-padding) 40px !important;
  }

  body.page-contact .contact__inner {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }

  body.page-contact .contact__photo {
    width: min(100%, 280px) !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  body.page-contact .contact__col {
    margin-left: 0 !important;
  }

  body.page-contact .contact__form-wrap {
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
  }

  body.page-contact .footer-k__menu {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body.page-catalog .catalog {
    padding: 20px var(--side-padding) 48px !important;
  }

  body.page-catalog .catalog__title {
    font-size: 26px !important;
    text-align: center !important;
  }

  body.page-catalog .catalog-biuro__image {
    margin: 0 auto !important;
    display: block !important;
  }

  body.page-catalog .biuro-info__grid {
    grid-template-columns: 1fr !important;
  }

  body.page-catalog .fruit-box-card {
    max-width: 100% !important;
  }

  .page-head .breadcrumbs {
    font-size: 13px !important;
    line-height: 1.45 !important;
    word-break: break-word;
  }
}

/* Homepage offer slider — same card sizes as Oferta page */
.offer--home {
  --offer-card-radius: 24px;
  --offer-card-hover-radius: 15px;
}

.offer--home .offer-card {
  margin: 0;
  padding: 0;
  width: 328px;
  height: 432px;
  min-height: 432px;
  align-items: center;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: box-shadow 0.35s ease;
}

.offer--home .offer-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.offer--home .offer-card__image-wrap {
  width: 328px;
  height: 318px;
  flex-shrink: 0;
  border-radius: var(--offer-card-radius) var(--offer-card-radius) 0 0;
  overflow: hidden;
}

.offer--home .offer-card:hover {
  border-radius: var(--offer-card-hover-radius);
  box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 20%);
  overflow: hidden;
}

.offer--home .offer-card__image {
  transition: transform 0.35s ease;
}

.offer--home .offer-card:hover .offer-card__image {
  transform: scale(1.05);
}

@media (max-width: 960px) {
  .offer--home .offer__viewport {
    container-type: inline-size;
    container-name: offer-home;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 14px !important;
    touch-action: pan-y;
  }

  .offer--home .offer__grid,
  .offer--home [data-offer-grid] {
    --offer-gap: 17px;
    gap: var(--offer-gap) !important;
    padding: 0 0 12px !important;
  }

  .offer--home .offer__viewport .offer-card {
    flex: 0 0 232px !important;
    width: 232px !important;
    height: 305.561px !important;
    min-height: 305.561px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background: #fff !important;
    box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 20%) !important;
    box-sizing: border-box !important;
  }

  .offer--home .offer__viewport .offer-card__link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
  }

  .offer--home .offer__viewport .offer-card__image-wrap {
    width: 232px !important;
    height: 225px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    border-radius: 15px 15px 0 0 !important;
  }

  .offer--home .offer__viewport .offer-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .offer--home .offer__viewport .offer-card__title {
    font-size: 17px !important;
    margin-top: 19px !important;
    padding: 0 8px !important;
  }

  .offer--home .offer__viewport .offer-card:hover {
    border-radius: 15px !important;
    box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 20%) !important;
  }

  .offer--home .offer__viewport .offer-card:hover .offer-card__image {
    transform: none !important;
  }
}

/* Desktop: about cards on homepage */
@media (min-width: 961px) {
  .about .about__aside .about__cards {
    grid-area: stack !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3.16vw !important;
    align-items: flex-start !important;
    margin-top: 1.5vw !important;
    position: relative !important;
    z-index: 999999 !important;
  }
}

@keyframes fresh-services-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fresh-services-jitter {
  0% {
    transform: translate(0, 0);
  }

  12.5% {
    transform: translate(5px, -4px);
  }

  25% {
    transform: translate(-3px, 5px);
  }

  37.5% {
    transform: translate(-5px, -2px);
  }

  50% {
    transform: translate(4px, 5px);
  }

  62.5% {
    transform: translate(-5px, 3px);
  }

  75% {
    transform: translate(3px, -5px);
  }

  87.5% {
    transform: translate(-4px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@media (min-width: 961px) {
  .services-card--green:hover .services-card__image {
    animation: fresh-services-rotate 14s linear infinite;
    transform-origin: center center;
  }

  .services-card--peach:hover .services-card__image {
    animation: fresh-services-jitter 2.5s ease-in-out infinite;
  }

  .news-card > a:has(> .news-card__image) {
    display: block;
    width: 362px;
    height: 337px;
    overflow: hidden;
    border-radius: 15px;
  }

  .news-card > a:has(> .news-card__image) .news-card__image {
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    transform-origin: center center;
  }

  .news-card:hover > a:has(> .news-card__image) .news-card__image {
    transform: scale(1.1);
  }

  .has-dropdown__box {
    position: relative;
    display: inline-block;
    text-align: left;
  }

  .has-dropdown__box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    height: 12px;
  }

  .header__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 210px;
    height: 274px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 32.1px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000002;
    text-align: left;
  }

  .has-dropdown__box:hover .header__dropdown,
  .has-dropdown__box:focus-within .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .has-dropdown__box:hover > a,
  .has-dropdown__box:focus-within > a {
    color: var(--green);
  }

  .has-dropdown__box .chevron {
    transition: transform 0.25s ease;
  }

  .has-dropdown__box:hover .chevron,
  .has-dropdown__box:focus-within .chevron {
    transform: rotate(180deg);
  }

  .header__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
  }

  .header__dropdown-list li {
    width: 100%;
    text-align: left;
  }

  .header__dropdown-list a {
    display: block;
    width: 100%;
    color: #323335;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    text-align: left;
  }

  .header__dropdown-list a:hover {
    color: #323335;
  }

  .header__dropdown-bold {
    font-weight: 700;
  }

  .header__dropdown-light {
    font-weight: 300;
  }
}

/* ===== Scroll reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
      opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
  }

  .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .scroll-reveal-stagger .scroll-reveal-item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .scroll-reveal-stagger.is-visible .scroll-reveal-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===== Usługi page: card flip on load ===== */
@media (prefers-reduced-motion: no-preference) {
  body.page-about .grid_pages_j.jj77 {
    perspective: 1400px;
  }

  body.page-about .grid_pages_j.jj77 .about-card.uslugi-card-flip {
    opacity: 0;
    transform: rotateY(88deg) scale(0.94);
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  body.page-about .grid_pages_j.jj77 .about-card.uslugi-card-flip.is-flipped-in {
    animation: fresh-uslugi-flip-in 0.95s cubic-bezier(0.22, 1.02, 0.36, 1) forwards;
  }
}

@keyframes fresh-uslugi-flip-in {
  from {
    opacity: 0;
    transform: rotateY(88deg) scale(0.94);
  }

  to {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.page-about .news__heading22.uslugi-intro-reveal,
  body.page-about .mi1.uslugi-intro-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 0.7s ease-out,
      transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  body.page-about .news__heading22.uslugi-intro-reveal.is-intro-visible,
  body.page-about .mi1.uslugi-intro-reveal.is-intro-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.page-about .mi1.uslugi-intro-reveal {
    transition-delay: 0.08s;
  }
}

@media (max-width:991px)
{
  .mi1
{
  display:none !important;
}
body.page-about .news__heading22.uslugi-intro-reveal.is-intro-visible, body.page-about .mi1.uslugi-intro-reveal.is-intro-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        display: none !important;
    }

    body.page-about .grid_pages_j.jj77 {
        perspective: 72.917vw;
        margin-top: 60px !important;
        margin-bottom: 59px !important;
    }

        body.page-about .svg_pl, body.page-catalog .svg_pl, body.page-contact .svg_pl {
        margin-top: 33px !important;
    }

        body.page-about .about.about--page > .sekcja_1:first-of-type {
        margin-top: 12px !important;
    }

        body.page-about .news__heading22, body.page-about .news__heading22-2 {
        padding: 0 var(--side-padding) !important;
        margin-top: 53px !important;
    }

        .hig_s img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
        display: block;
        height: 200px !important;
        object-fit: cover !important;
        min-width: 100%;
    }

    .hig_s img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
        display: block;
        height: 169px !important;
        object-fit: cover !important;
        min-width: 100%;
    }

        .scroll-reveal-stagger.is-visible .scroll-reveal-item {
        width: 100%;
    }

    .fancybox__container {
    z-index: 9999999 !important;
}

    body.page-contact .contact__photo {
        width: min(100%, 280px) !important;
        height: auto !important;
        margin: 0 auto !important;
        width: 100% !important;
        height: 239px !important;
    }
    .contact__block {
    margin-bottom: 22px;
    border-left: 1px dashed #00000030;
    padding-left: 14px;
    margin-left: 0;
}
.contact__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-direction: column;
    border-left: 1px dashed #00000030;
    padding-left: 2vw;
    margin-left: 0;
}
.footer-k__wave {
    position: relative;
    top: -40px;
    margin-bottom: -47px;
    line-height: 0;
    pointer-events: none;
}
    .svg_pl {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: block !important;
        width: 100% !important;
        height: 43px !important;
        position: absolute !important;
        top: 104px !important;
    }

    .single-post .grid_fl 
    {
      width: 93%;
    margin: auto;
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    }

    .left_grid_f1 img 
    {
      border-radius: 10px;
    }

    .next_single 
    {
      display:none;
    }
    .wrc 
    {
     border: 0.05vw solid #D6D6D5;
    display: flex;
    width: 200px;
    height: 2.6vw;
    padding: 23px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 251 / 50;
    color: #9F9E9C;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    margin: auto;
    line-height: normal;
    letter-spacing: -0.01768vw;
    margin-top: 37px;
    margin-bottom: 25px;
    border-radius: 29px; 
    }

    .class_as 
    {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 8px;
    height: 34px;  
    }

    .left_sidebar_of 
    {
          margin-bottom: 24px;
    margin-top: 24px;
    }

    .left_sidebar_of {
        padding: 22px;
        margin-bottom: 24px;
        margin-top: 24px;
        border-radius: 15px;
        background: #F2F2F2;
        width: 99%;
    }

    .left_sidebar_of {
        padding: 22px;
        margin-bottom: 24px;
        margin-top: 24px;
        border-radius: 15px;
        background: #F2F2F2;
        width: 99%;
        padding-left: 0px;
        padding-right: 0px;
    }

        .class_as {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        gap: 8px;
        height: 34px;
        padding-left: 19px;
    }

    .active_left 
    {
     background-color: white; 
    }

    .class_left_img 
    {
      width:100%;
    }
    body.page-catalog .catalog__title {
        font-size: 26px !important;
        text-align: center !important;
        margin-top: 27px;
    }
        .class_left_img {
        width: 100%;
        border-radius: 10px;
    }
}

@media (min-width:991px)
{
  .class_left_img
  {
    border-radius:1vw;
  }
  .konts 
  {
    font-size:1vw;
  }

    .fruit-box-card__tagline {
        width: 10vw;
    }

    .fruit-box-card__list li {
        display: flex;
        align-items: flex-start;
        gap: 0.416vw;
        margin-bottom: 0.416vw;
        color: #515151;
        font-family: Outfit, sans-serif;
        font-size: 0.78vw;
        font-weight: 300;
        line-height: 1.4;
        color: #515151;
        font-family: Roboto;
        font-size: 0.884vw;
        font-style: normal;
        font-weight: 500;
        line-height: 0.988vw;
        justify-content: center;
        align-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 10vw;
    }

    .biuro-info-card__contact .fdd
{
 margin-bottom: 1vw; 
}


}

    .cen_li li {
        text-transform: lowercase;
    }

@media (max-width:991px)
{
  .catalog-biuro__list li {
    position: relative;
    padding: 0 0 10px 14px;
    color: #515151;
    text-align: left;
    font-family: Outfit, sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 24px;
}
    .biuro-info__back {
        width: 100%;
        max-width: 320px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin-top: 42px;
    }
    .catalog__list li {
    position: relative;
    padding: 0 0 10px 14px;
    color: #515151;
    text-align: left;
    }
        .catalog__list {
        column-count: 1;
        margin-top: 23px;
        margin-bottom: 16px;
    }
}