:root {
  --primary: #262731;
  --green: #619d18;
  --green--hover: #6bb610;
  --white: #fff;
  --dark: #494949;
  --yellow: #f3c955;
  --grey: #a8a8a8;
  --dark-grey: #4c4d52;

  --transition: 0.25s ease-in-out;
}

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

html,
body {
  margin: 0;
  font-family: "Argentum Sans", Arial, sans-serif;
  color: var(--white);
  background-color: var(--white);
  scrollbar-color: var(--green) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 0;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}

[data-href] {
  cursor: pointer;
}

/* инпуты */

input {
  appearance: none;
  display: block;
  border: none;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid transparent;
  transition: all var(--transition);
}

input:focus {
  outline: none;
}

.uppercase {
  text-transform: uppercase;
}

/* кнопки */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  outline: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn.btn-green:focus-visible {
  outline-color: var(--white);
  border-color: var(--green--hover);
}

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

.btn.btn-white:focus-visible {
  outline-color: var(--white);
  border-color: var(--green);
}

.btn.btn-outline {
  background-color: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.btn.max-w-min {
  max-width: max-content;
}

.btn.m-size {
  width: 100%;
  max-width: 380px;
}

.btn.s-size {
  max-width: 260px;
  width: 100%;
}

.btn.f-size {
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: 0 12px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 82px;
}

.page-home .header {
  padding-bottom: 0;
}

.header-wrapper {
  box-shadow: 0 12px 8px -4px #0000001a;
  background-color: var(--primary);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 12px;
}

.logo img {
  height: 28px;
  width: auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  order: 2;
}

.logo {
  order: 1;
}

.header__actions {
  order: 4;
}

.shop-btn {
  width: 100%;
  max-width: 130px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.shop-btn__icon,
.shop-btn__icon::before,
.shop-btn__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  content: "";
}

.shop-btn__icon {
  position: relative;
}

.shop-btn__icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.shop-btn__icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  order: 3;
  margin-right: auto;
}

.nav__link {
  color: var(--white);
  font-family: "MursGothic", Arial, sans-serif;
  font-size: 14px;
  transition: color var(--transition);
}

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

.header__panel {
  position: absolute;
  left: 0;
  right: 0;
  padding: 12px 0 16px;
  backdrop-filter: blur(5px);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.header__panel-inner {
  display: grid;
  row-gap: 0;
  justify-items: center;
}

.header__panel-inner .search {
  max-width: 600px;
  width: 100%;
}

.header__panel .search-form {
  width: 100%;
  background-color: var(--white);
}

.header__search-input {
  padding: 12px 16px;
  font-size: 14px;
}

.header__search-form .search-form__btn {
  min-width: 44px;
}

.header__panel.is-open {
  background-color: rgba(255, 255, 255, 0.75);
}

.header__panel.is-open .header__panel-inner {
  row-gap: 16px;
}

.header__menu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.header__mobile-nav {
  display: none;
}

.header__panel.is-open .header__menu {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding: 16px 0 24px;
}

.header__menu-columns {
  /* display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); */
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: 0 12px;
}

.header__menu-columns--services {
  display: none;
}

.header__menu-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.header__menu-title {
  font-family: "MursGothic", Arial, sans-serif;
  margin: 0;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--dark);
}

.header__menu-link {
  color: var(--dark);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}

.icon-btn.icon-btn--search {
  display: none;
}

.icon-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.icon-btn--basket {
  position: relative;
}

.icon-btn__badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d72626;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs__list {
  display: flex;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--grey);
  list-style: none;
  gap: 5px;
  margin: 70px 0 25px;
  font-size: 14px;
}
.breadcrumbs__main a {
  color: var(--green);
}

.breadcrumbs__link {
  color: var(--grey);
}

.cart {
  padding: 24px 0 88px;
  color: var(--dark);
  background-color: var(--white);
}

.page-title {
  padding: 0 0 32px;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}

.cart__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 190px 280px 1fr 280px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d9;
}

.cart-item__image {
  position: relative;
  max-width: 190px;
  width: 100%;
  max-height: 190px;
  height: 100%;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #f1f1f1;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__badge {
  position: absolute;
  top: 22px;
  right: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: url("src/assets/images/icons/badge.png") center/100% 100%
    no-repeat;
  color: #3d3d3d;
  font-size: 12px;
  font-weight: 600;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
}

.cart-item__name {
  margin: 0 0 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.cart-item__art {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--grey);
}

.qty-counter {
  font-family: "Inter", Arial, sans-serif;
}

.cart-item__counter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--green);
}

.cart-item__counter-btn {
  border: none;
  background: none;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--green);
  cursor: pointer;
}

.cart-item__count {
  min-width: 16px;
  text-align: center;
  font-size: 16px;
}

.cart-item__specs {
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
}

.cart-item__spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-item__value {
  text-align: right;
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}

.cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
}

.cart-item__remove svg {
  width: 16px;
  height: 16px;
}

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

.cart-item__price {
  font-size: 24px;
  font-weight: 600;
  color: var(--green);
}

.cart-item__old {
  font-size: 16px;
  color: #ababab;
  text-decoration: line-through;
}

.cart__summary {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 40px;
  padding-top: 24px;
}

.cart__summary-item {
  text-align: center;
  color: var(--dark);
  font-weight: 600;
}

.cart__summary-label {
  display: block;
  font-size: 18px;
  color: var(--dark);
}

.cart__summary-value {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
}

.checkout {
  padding: 20px 0;
  color: var(--dark);
  background-color: var(--white);
}

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

.checkout__back {
  display: block;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.checkout__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(520px, 100%);
}

.checkout-card .promo-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.checkout-card .promo-card__art {
  margin: 0;
}

.checkout-card__qty {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.checkout-card__mobile {
  display: none;
}

.contacts {
  background-color: var(--white);
  color: var(--dark);
}

.contacts__mobile-title {
  display: none;
}

.contacts__map {
  position: relative;
  width: 100%;
  height: 920px;
}

.contacts__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contacts__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20%;
  max-width: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contacts__panel-inner {
  height: 100%;
  padding: 10px 40px 80px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 60px;
}

.contacts__header {
  margin-bottom: 20px;
}

.contacts__item {
  display: flex;
  color: var(--dark);
  font-size: 18px;
  flex-direction: column;
  gap: 6px;
}

.contacts__label {
  font-weight: 600;
  text-transform: uppercase;
}

.contacts__text {
  margin: 0;
}

.contacts__link {
  font-weight: 400;
  color: var(--dark);
}

.contacts__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.contacts__vk {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.gallery {
  padding: 20px 0 90px;
  color: var(--dark);
  background-color: var(--white);
}

.gallery__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery__card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.gallery__image {
  display: block;
  width: 100%;
  max-height: 580px;
  height: auto;
}
.gallery__card .category__overlay {
  padding: 20px 60px;
}
.gallery__overlay {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.gallery__title {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.gallery__btn {
  max-width: 310px;
  width: 100%;
}

.about-hero {
  min-height: 975px;
  background: url("src/assets/images/about-hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero__title {
  margin: 0;
  font-size: 96px;
  font-weight: 400;
  font-family: "MursGothic", Arial, sans-serif;
}

.about-hero__tagline {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.about-intro {
  padding: 60px 0 0;
  background-color: var(--white);
}

.about-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-intro__title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
}

.about-intro__text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

.about-intro__lead .about-intro__text {
  max-width: 900px;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 40px;
  align-items: center;
}

.about-intro__content {
  max-width: 640px;
}

.about-intro__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-intro__image {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.about-intro__image--top {
  height: 220px;
}

.about-intro__image--bottom {
  height: 260px;
}

.about-intro__approach {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-intro__approach-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-intro__subtitle {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

.about-intro__list {
  margin: 0;
  padding-left: 30px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 400;
}

.about-intro__reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro__reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.about-intro__ellipses {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.about-intro__ellipse + .about-intro__ellipse {
  margin-left: -90px;
}

.about-intro__reasons-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.about-intro__reason {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.about-intro__reason-text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

.about-intro__reason-text .about-intro__subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

.about-intro__banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.about-intro__banner-image {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.about-intro__banner-text {
  text-align: center;
  padding: 20px 0;
}

.about-intro__banner-text p {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

.about-intro__banner-cta {
  background-color: var(--dark-grey);
  color: var(--white);
  text-align: center;
  padding: 50px 20px 30px;
}

.about-intro__banner-cta p {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-intro__banner-btn {
  max-width: 280px;
  margin: 0 auto;
}

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

.hero {
  min-height: 460px;
  max-height: 1080px;
  height: 100vh;
  background: url("src/assets/images/hero-banner.png") center/cover no-repeat;
  padding-top: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (hover: hover) {
  .hero {
    background: url("src/assets/images/hero-banner.png") center/cover no-repeat
      fixed;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #212121;
  opacity: 0.55;
}

.hero__content {
  text-align: center;
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}

.hero__logo {
  margin: 0 auto 18px;
}

.hero__tagline {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.hero__cta {
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  background-color: var(--green);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(97, 157, 24, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.services {
  padding: 72px 0 96px;
  background-color: var(--white);
}

.services__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}

.services__grid {
  display: grid;
  gap: 12px;
}

.services__slider {
  display: none;
}

.services__pagination {
  display: none;
}

.services-row {
  display: grid;
  gap: 12px;
}

.services-row--top {
  grid-template-columns: 60% auto;
  grid-template-rows: 412px;
}

.services-row--bottom {
  grid-template-columns: 45% auto;
  grid-template-rows: 200px 200px;
  margin-bottom: 32px;
}

.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  color: var(--white);
}

.service-card--banner {
  min-height: 200px;
  color: var(--white);
  display: block;
  aspect-ratio: 16 / 9;
}

.service-card--banner .service-card__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: none;
}

.service-card--banner .service-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 24px;
  background: rgba(38, 39, 49, 0.8);
  backdrop-filter: blur(6px);
  transition: all var(--transition)
}

.service-card--banner .service-card__content {
  justify-content: end;
  flex-direction: column;
  display: flex;
}

.service-card--banner .service-card__title {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 600;
}

.service-card--banner .service-card__price {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.service-card__toggle {
  display: none;
}

.service-card--banner .service-card__desc {
  margin: 0;
  font-size: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all var(--transition)
}

.service-card--banner .service-card__btn {
  min-width: 160px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card--item1 {
  width: 100%;
  height: 100%;
}

.service-card--item2 {
  width: 100%;
  height: 100%;
}

.service-card--item3 {
  width: 100%;
  height: 100%;
  grid-row: 1 / 3;
}

.service-card--item4,
.service-card--item5 {
  width: 100%;
  height: 100%;
}

.service-card--image .service-card__overlay {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 2;
  font-size: 24px;
}

.service-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(73, 73, 73, 0) 72.54%,
    rgba(32, 32, 32, 0.25) 85.35%,
    rgba(32, 32, 32, 0.57) 100%
  );
  z-index: 1;
}

.text-wrapper h3 {
  margin: 0 0 4px;
  font-weight: 600;
}

.text-wrapper .service-card__price {
  margin-bottom: 8px;
}

.service-card--image p {
  margin: 0;
  font-weight: 500;
}

.service-card--hover .service-card__overlay {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 2;
  font-size: 22px;
  transition: opacity var(--transition);
}

.service-card__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  padding: 20px 12px;
  border-radius: 6px;
  overflow: auto;
  z-index: 3;
  opacity: 0;
  translate: 0 100%;
  background-color: #262731b2;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.service-card__image-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.1);
  opacity: 0;
  transition: var(--transition);
}

.text-wrapper {
  margin-bottom: 24px;
}

.service-card__content {
  font-size: 18px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.4;
}

.service-card__btn {
  margin-top: auto;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
}

.services__cta {
  margin: 0 auto;
}

.works {
  background-color: var(--primary);
  padding: 70px 0 90px;
}

.works__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.works__info {
  color: var(--white);
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
  display: flex;
}

.works__title {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  color: var(--green);
}

.works__name {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
}

.works__place {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
}

.works__cta {
  text-transform: uppercase;
}

.works__gallery-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.works__pagination {
  display: none;
}

.works__gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.works__gallery .swiper-wrapper {
  width: 100%;
  min-width: 0;
}

.works__gallery-slide {
  display: grid;
  grid-template-columns: 580px 280px;
  gap: 16px;
  align-items: center;
}

.works__gallery-side {
  display: grid;
  gap: 16px;
}

.works__gallery-main {
  height: 580px;
}

.works__gallery-item {
  height: 280px;
}

.works__gallery-main img,
.works__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.works__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: var(--green);
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 #00000040;
}

.works__arrow--prev {
  left: -16px;
}

.works__arrow--next {
  right: -16px;
}

.works__arrow img {
  height: 14px;
}

.promo {
  background-color: var(--yellow);
  padding: 60px 0 80px;
}

.promo__slider {
  position: relative;
}

.promo__grid-mobile {
  display: none;
}

.promo__grid {
  width: 100%;
  overflow: hidden;
}

.promo__grid .swiper-wrapper {
  padding: 10px 0;
  display: flex;
}

.promo-card.swiper-slide {
  height: auto;
}

.promo__arrow {
  position: absolute;
}

.promo__arrow--prev {
  left: -16px;
}

.promo__arrow--next {
  right: -16px;
}

.promo-card {
  position: relative;
  background-color: var(--white);
  border-radius: 6px;
  padding: 16px 12px 8px;
  cursor: pointer;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.promo-card__status {
  font-size: 14px;
  color: var(--green);
}

.promo-card__badge {
  position: absolute;
  right: 0;
}

.promo-card__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promo-card__badge span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
}

.promo-card__image {
  object-fit: contain;
  margin: 0 auto 32px;
  max-width: 190px;
  width: 100%;
  max-height: 190px;
  height: 100%;
  border-radius: 6px;
}

@supports (aspect-ratio: 1) {
  .promo-card__image {
    aspect-ratio: 1;
    height: auto;
    max-height: unset;
  }
}

.promo-card__art {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--grey);
}

.promo-card__name {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.promo-card__prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

.promo-card__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
}

.promo-card__old {
  font-size: 16px;
  color: var(--grey);
  text-decoration: line-through;
}

.promo-card__btn {
  display: block;
  width: fit-content;
  appearance: none;
  padding: 4px 0;
  border-radius: 6px;
  font-size: 16px;
  color: var(--green);
  margin-top: 8px;
  transition: var(--transition);
}

.service-card-hero__breadcrumbs {
  padding: 20px 0;
}

.service-card-hero--mobile {
  display: none;
}

.service-card-hero__banner {
  background-color: var(--yellow);
  padding: 40px 0;
}

.service-card-hero__banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-card-hero__text h1 {
  margin: 0;
  font-size: 63px;
  font-weight: 600;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: 3px #292929;
}
.service-card-hero__text span {
  color: #292929;
  -webkit-text-stroke: 0;
  font-size: 80px;
}

.service-card-hero__image img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.service-card-info {
  padding: 40px 0 20px;
}

.service-card-info__desktop {
  display: block;
}

.service-card-info__accordion {
  display: none;
}

.service-card-info__mobile-title {
  display: none;
}

.service-card-info__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.service-card-info__heading h2 {
  margin: 20px 0;
  font-size: 32px;
  color: var(--dark);
  font-weight: 600;
}

.service-card-info__price {
  color: var(--green);
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
}

.service-card-info__body p {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 18px;
}

.service-card-order {
  width: 100%;
  background-color: var(--dark-grey);
  padding: 50px 0 60px;
}

.service-card-order__inner {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-order__title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
}

.service-card-order__form {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-card-order__form .btn {
  margin-top: 30px;
}
.service-card-order__agree {
  justify-content: center;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox__mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.personal-data .checkbox__input:checked + .checkbox__mark {
  border-color: #d9d9d9;
}

.checkbox__input:checked + .checkbox__mark {
  background-color: var(--green);
  border-color: var(--green);
  background-image: url("src/assets/images/icons/checkbox/input-active.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.checkbox__text {
  color: inherit;
}

.checkbox--footer {
  color: var(--white);
}

.checkbox--accent {
  color: var(--white);
}

.checkbox.disabled .checkbox__mark {
  background-image: url("src/assets/images/icons/checkbox/input-disabled.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.checkbox.disabled {
  pointer-events: none;
}

.work-steps {
  padding: 50px 0 60px;
}

.work-steps__title {
  margin: 0 0 30px;
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
}

.work-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 20px;
  margin-bottom: 30px;
}

.work-steps__slider {
  display: none;
}

.work-steps__card {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 40px 20px;
}
.work-steps__head {
  display: flex;
  gap: 16px;
}
.work-steps__number {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}

.work-steps__name {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.work-steps__list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 25px;
  font-size: 18px;
  font-family: "Inter", Arial, sans-serif;
}

.work-steps__cta {
  margin: 0 auto;
}

.page-services {
  padding: 48px 0 72px;
}

.page-services__breadcrumbs {
  margin-bottom: 10px;
}

.page-services__item {
  display: grid;
  gap: 15px;
}

.page-services__view-toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.page-services__view-toggle img {
  width: 36px;
  height: 30px;
}

.banner-slider {
  width: 100%;
  position: relative;
}

.banner-slider__track {
  width: 100%;
}

.banner-slider__slide {
  width: 100%;
  position: relative;
}

.banner-slider__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.banner-slider__cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 32px;
}

.banner-slider__arrow {
  position: absolute;
  top: 50%;
  opacity: 0.3;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: var(--green);
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 #00000040;
  transition: var(--transition);
}

.banner-slider__arrow:hover {
  opacity: 1;
}

.banner-slider__arrow--prev {
  left: 10%;
}

.banner-slider__arrow--next {
  right: 10%;
}

.banner-slider__arrow img {
  height: 14px;
}

.page-services__list {
  display: grid;
  gap: 60px;
}

.page-services__cards {
  display: grid;
  gap: 16px;
}

.category {
  padding: 70px 0 90px;
}

.category__inner {
  display: grid;
  gap: 16px;
}

.category__grid {
  display: flex;
  gap: 20px;
}
.reverse {
  flex-direction: row-reverse;
}

.category__image {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 580px;
  min-width: 50%;
}

.category__image img {
  transition: var(--transition);
}

.caparol {
  font-size: 32px;
}
.category__overlay.production {
  font-size: 18px;
}

.category__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 12px 32px;
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}
.category__overlay.green {
  background: #619d18b2;
}
.category__overlay.dark {
  background: #262731b2;
}

.category__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-content: start;
}

.footer__contact {
  background-color: var(--yellow);
  color: var(--white);
  padding: 32px 0;
}

.footer__contact--checkout {
  background-color: var(--dark-grey);
  padding: 56px 0 48px;
}

.footer__contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.footer__title {
  font-size: 22px;
  font-weight: 600;
}
.footer__title p {
  margin: 0;
  color: var(--dark)
}
.footer__title-sub {
  font-size: 18px;
  font-weight: 400;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: 100%;
}

.footer__submit {
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--white);
  color: var(--green);
}

.footer__agree {
  justify-content: center;
}

.personal-data {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 14px;
}

.personal-data .checkbox {
  position: static;
  display: inline-block;
  margin: 0 8px 0 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
}

.personal-data .checkbox:checked {
  background-color: var(--green);
  border-color: var(--green);
  background-image: url("src/assets/images/icons/checkbox/input-active.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.personal-data span {
  color: var(--dark);
}

.footer-checkout {
  width: min(580px, 100%);
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.footer-checkout__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--white);
}

.footer-checkout__summary-item span {
  display: block;
  font-size: 18px;
}

.footer-checkout__summary-item strong {
  display: block;
  font-size: 32px;
  font-weight: 600;
}

.footer-checkout__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-checkout__input {
  background-color: var(--white);
  color: var(--dark);
}

.footer-checkout__container {
  display: grid;
  gap: 30px;
  max-width: 380px;
  width: 100%;
  padding: 32px 0;
}

.footer-checkout__row {
  display: grid;
  gap: 10px;
  text-align: left;
}

.footer-checkout__label {
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
}

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

.footer-checkout__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
}

.footer-checkout__option input {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.footer-checkout__option input:checked {
  border-color: var(--green);
}

.footer-checkout__option input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background-color: var(--green);
}

.footer-checkout__note {
  margin: 25px 0;
  font-weight: 600;
  color: var(--white);
  font-size: 22px;
}

.footer-checkout__note span {
  color: var(--green);
}

.footer-checkout__submit {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
}

.footer-checkout__agree {
  color: var(--white);
  justify-content: center;
}

.footer__promo {
  background-color: var(--yellow);
}

.footer__promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer__promo-title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #292929;
}

.footer__promo-title span {
  color: #292929;
  -webkit-text-stroke: 0;
}

.footer__main {
  font-family: "Inter", Arial, sans-serif;
  background-color: var(--primary);
  color: var(--white);
  padding: 0;
}

.footer__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
}

.footer__brand img {
  height: 35px;
  width: auto;
}

.footer__search-wrapper {
  max-width: 445px;
  width: 100%;
}

.search {
  padding: 0;
  border-radius: 6px;
}

.search-form__input {
  padding: 17px 16px;
}

.search-form__btn {
  justify-content: center;
  display: flex;
  width: 60px;
  height: auto;
  padding: 0;
  border-radius: 6px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--white);
}

.footer__col h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer__col a {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 400;
  color: var(--white);
}

.footer__col--main h4 {
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 20px;
  font-size: 12px;
}

.footer__bottom--mobile {
  display: none;
}

.footer__socials {
  display: flex;
  align-items: end;
  gap: 16px;
}

.footer__phone {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.footer__vk {
  display: flex;
  align-items: end;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
}

.footer__email {
  font-weight: 600;
}

.footer__address {
  font-weight: 600;
  text-align: right;
}

.portfolio {
  padding: 0 0 80px;
}

.portfolio-wrapper {
  display: grid;
  gap: 60px;
}

.portfolio__inner {
  display: grid;
}

.portfolio__title {
  width: 100%;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}

.portfolio-card .portfolio__title {
  margin-bottom: 20px;
}

.portfolio__layout {
  display: flex;
  gap: 16px;
}

.portfolio__slider {
  display: none;
  width: 100%;
}

.portfolio__pagination {
  display: none;
}

.portfolio__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio__side-top {
  display: grid;
  grid-template-columns: 280px 280px;
  gap: 16px;
}

.portfolio__item {
  border-radius: 6px;
  overflow: hidden;
}

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

.portfolio__item--large {
  width: 580px;
  height: 660px;
}

.portfolio__item--small {
  width: 280px;
  height: 370px;
}

.portfolio__item--wide {
  width: 580px;
  height: 270px;
}

.portfolio__item--slide {
  width: 100%;
  height: 320px;
}

.portfolio__text {
  margin: 32px 0;
  font-size: 18px;
  max-width: 800px;
  color: var(--dark);
}

.portfolio__cta {
  margin: 0 auto;
}

.btn-elements {
  margin: 56px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin-left: auto;
}

/* shop */

.shop {
  padding: 40px 0 60px;
  color: var(--dark);
}

.shop__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.shop__mobile-tools {
  display: none;
}

.shop-filters {
  border-radius: 12px;
  display: grid;
  gap: 16px;
  font-family: "Inter", Arial, sans-serif;
}

.shop-filters__top {
  margin-bottom: 20px;
}
.shop-filters__top .shop-filters__range {
  margin-bottom: 30px;
}

.shop-filters__group {
  display: grid;
  gap: 0;
}

.shop-filters_accordions {
  border: 1px solid #ececec;
}

.shop-filters__toggle {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background-color: var(--green);
  padding: 16px 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.shop-filters__toggle::-webkit-details-marker {
  display: none;
}

.shop-filters__toggle::marker {
  content: "";
}

.shop-filters__toggle img {
  width: 22px;
  height: 10px;
  transition: transform var(--transition);
}

.shop-filters__group .shop-filters__list {
  display: none;
}

.shop-filters__group[open] {
  gap: 12px;
}

.shop-filters__group[open] .shop-filters__list {
  display: grid;
}

.shop-filters__group[open] .shop-filters__toggle img {
  transform: rotate(180deg);
}

.shop-filters__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  text-align: left;
}
.shop-filters__title.shop-filters__title--black {
  color: var(--dark);
}

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

.shop-filters__range .shop-filters__input {
  background-color: #f4f4f4;
}

.shop-filters__search {
  width: 100%;
}

.shop-filters__list {
  padding: 0 12px 16px;
  display: grid;
  gap: 12px;
  color: var(--dark);
}

.shop-filters .checkbox {
  width: 100%;
  justify-content: space-between;
}

.shop-filters .checkbox__text {
  order: 1;
}

.shop-filters .checkbox__mark {
  order: 2;
  border-radius: 0;
}

.shop-filters__actions {
  display: grid;
  gap: 10px;
}

.shop-filters__actions .btn {
  padding: 16px 12px;
}

.shop-filters__actions .btn-outline {
  color: var(--green);
  border-color: var(--green);
}
.shop-filters__actions .reset {
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid transparent;
  font-size: 16px;
}

.shop-filters__apply {
  width: 100%;
}

.shop-filters__reset {
  width: 100%;
  border-color: #d3d3d3;
  color: var(--dark);
}

.shop__content {
  display: grid;
  gap: 16px;
}

.shop-banner {
  background: url("src/assets/images/shop-banner.png") right center/cover
    no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.shop-banner__title {
  margin: 0;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  -webkit-text-stroke: 4px var(--green);
  -webkit-text-fill-color: transparent;
}

.shop-banner__subtitle {
  margin: 0 0 18px;
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
}

.shop-banner__btn {
  padding: 14px 28px;
}

.shop__controls {
  justify-content: space-between;
  display: flex;
  gap: 16px;
  align-items: end;
}
.shop-search {
  max-width: 480px;
  width: 100%;
}
.filters__search-wrapper {
  border: 1px solid #ececec;
  border-radius: 6px;
}

.shop-label {
  margin: 0 0 10px 0;
  color: var(--dark);
  font-size: 18px;
}

.shop__sort {
  max-width: 280px;
  width: 100%;
}
.search-form {
  display: flex;
  background-color: var(--white);
  border-radius: 6px;
  overflow: hidden;
}
.products__search-wrapper .bg-color {
  background-color: #f4f4f4;
}

.search-form__input {
  border: none;
  width: 100%;
  padding: 17px 16px;
}

.search-form__btn {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 60px;
  border-radius: 6px;
  padding: 0;
}

.search-form__btn img {
  width: 22px;
  height: 22px;
}

.shop__sort-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--dark-grey);
}

.custom-select {
  position: relative;
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.custom-select__trigger {
  width: 100%;
  padding: 10px 36px 10px 12px;
  font-size: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  border: none;
}

.custom-select__trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: url("src/assets/images/icons/arrow-accord.svg") no-repeat
    center / contain;
}

.custom-select__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #f4f4f4;
  padding: 6px 0 8px;
  border: 1px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 5;
}

.custom-select.is-open .custom-select__panel {
  display: grid;
}

.custom-select.is-open {
  border: 1px solid #619d18;
}

.custom-select.is-open .custom-select__trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__option {
  background: none;
  border: none;
  text-align: left;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

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

.shop__grid .promo-card {
  box-shadow: none;
  border: 1px solid #ececec;
}

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

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

.pagination__item {
  list-style: none;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  background-color: var(--white);
  border: 1px solid #ececec;
  color: var(--dark-grey);
  font-size: 14px;
  line-height: 1;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.pagination__link--prev,
.pagination__link--next {
  color: var(--green);
}

.pagination__link--active {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.pagination__icon {
  width: 16px;
  height: 16px;
}

.pagination__link--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

@media (hover: hover) {
  .pagination__link:not(.pagination__link--active):hover {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
  }

  .pagination__link:not(.pagination__link--active):hover .pagination__icon {
    color: var(--white);
  }
}

.shop-card {
  position: relative;
  border: 1px solid #ececec;
  border-radius: 6px;
  background-color: var(--white);
  overflow: visible;
}

.shop-card .promo-card {
  border: none;
  box-shadow: none;
}

.shop-card__menu {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 100%;
  border: 1px solid var(--green);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background-color: var(--white);
  gap: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-card.is-active {
  border-color: var(--green);
  z-index: 3;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.shop-card.is-active .promo-card__prices {
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}

.shop-card.is-active .shop-card__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.shop-card.is-active .promo-card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (hover: hover) {
  .shop-card:hover {
    border-color: var(--green);
    z-index: 3;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .shop-card:hover .promo-card__prices {
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
  }

  .shop-card:hover .shop-card__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .shop-card:hover .promo-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.shop-card__menu .product-details__option-label {
  font-size: 14px;
}

.shop-card__menu .product-details__actions {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 6px;
  background-color: var(--green);
  padding: 12px 8px;
}

.shop-card__menu .product-details__quantity {
  background-color: var(--white);
}

.shop-card__menu .product-details__qty-btn,
.shop-card__menu .product-details__qty-value {
  color: var(--green);
}

.shop-card__menu .qty-counter__btn rect {
  fill: var(--green);
} 

.shop-card__menu .btn {
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  width: fit-content;
}

/* product details */

.product-details {
  margin-bottom: 60px;
}

.product-details__breadcrumbs {
  margin-bottom: 24px;
}

.product-details__grid {
  display: grid;
  grid-template-columns: minmax(460px, 1.1fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.product-details__gallery {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.product-details__thumbs {
  display: block;
  height: calc(140px * 3 + 12px * 2);
}

.product-details__thumbs .swiper-wrapper {
  height: 100%;
}

.product-details__thumbs .swiper-slide {
  height: auto !important;
}

.product-details__thumbs-shell {
  position: relative;
  display: block;
  width: 100%;
}

.product-details__thumbs-arrow {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  transform: translateX(-50%) translateY(0);
  z-index: 2;
  pointer-events: auto;
}

.product-details__thumbs-arrow--prev img {
  transform: rotate(90deg);
}

.product-details__thumbs-arrow--next img {
  transform: rotate(90deg);
}

.product-details__thumbs-arrow--prev {
  top: -20px;
  left: 50%;
  right: auto;
}

.product-details__thumbs-arrow--next {
  bottom: -20px;
  left: 50%;
  right: auto;
}

.product-details__thumb {
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 8px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 140px;
  height: 140px;
}

.product-details__thumbs .swiper-slide-thumb-active .product-details__thumb {
  border: 4px solid var(--green);
  box-shadow: 0 0 0 2px rgba(97, 157, 24, 0.18);
}

.product-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details__main-swiper {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  border: 1px solid #ececec;
}

.product-details__main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details__image {
  max-width: 100%;
  height: auto;
}

.product-details__pagination {
  display: none;
}

.product-details__badge-abs {
  position: absolute;
  right: 0;
  top: 16px;
  width: 70px;
  height: 36px;
  z-index: 2;
}

.product-details__badge-abs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details__badge-abs span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
}

.product-details__meta {
  margin-bottom: 18px;
}

.product-details__content-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-details__content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.product-details__side {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.product-details__pricing {
  text-align: right;
}

.product-details__options-shell {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.product-details__options,
.product-details__actions {
  grid-column: 1 / -1;
}

.product-details__options {
  grid-column: 1 / 2;
}

.product-details__actions {
  grid-column: 2 / 3;
  justify-self: end;
  align-self: start;
}

.product-details__badge {
  align-self: start;
  background-color: var(--yellow);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.product-details__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.product-details__art {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}

.product-details__status {
  background-color: var(--green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.product-details__pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.product-details__price {
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
}

.product-details__old {
  font-size: 16px;
  color: var(--grey);
  text-decoration: line-through;
}

.product-details__options {
  height: 100%;
  display: grid;
  gap: 18px;
  padding: 0 12px;
}

.product-details__option {
  display: grid;
  gap: 8px;
}

.product-details__option-label {
  font-size: 16px;
  color: var(--grey);
}

.product-details__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-details__actions-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-details__actions {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-details__actions--mobile {
  display: none;
}

.product-details__quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  gap: 8px;
  border-radius: 20px;
  padding: 4px 10px;
}

.product-details__qty-btn {
  border: none;
  background: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.product-details__qty-value {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
  color: var(--white);
  font-weight: 600;
}

.number-plate {
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background-color: transparent;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.number-plate.is-active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.number-plate.is-disabled {
  background-color: var(--grey);
  border-color: var(--grey);
  color: var(--white);
  cursor: not-allowed;
}

.product-details__tabs {
  margin-top: 28px;
  margin-bottom: 16px;
}

.product-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.product-tabs__tab {
  border: none;
  text-align: left;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 6px;
  max-width: 280px;
  width: 100%;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.product-tabs__tab.is-active {
  background-color: var(--green);
  color: var(--white);
}

.product-details__tab-panel {
  display: none;
}

.product-details__tab-panel.is-active {
  display: block;
}

.product-details__tab-panels {
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 16px 18px 22px;
  width: 100%;
  margin: 0;
}

.product-details__table {
  display: grid;
  gap: 8px;
}

.product-details__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #e4e4e4;
  font-size: 16px;
  color: var(--dark);
}

.product-details__row:last-child {
  border-bottom: none;
}

.product-details__cell {
  color: var(--dark);
}

.product-details__placeholder {
  color: var(--dark-grey);
  font-size: 14px;
}
.search-form__btn.btn {
  border-radius: 6px;
  padding: 0;
  max-width: 60px;
  width: 100%;
}

/* --- hover --- */
@media (hover: hover) {
  .btn.btn-white:hover {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--white);
  }
  .btn.btn-green:hover {
    background-color: var(--green--hover);
  }
  .shop-btn:hover {
    background-color: var(--green--hover);
  }
  .search.form-input:hover {
    background-color: var(--green);
  }
  .form-input:hover {
    border-color: var(--green);
  }
  .nav__link:hover {
    color: var(--green);
  }
  .header__menu-link:hover {
    color: var(--green);
  }
  .icon-btn:hover {
    opacity: 0.8;
  }
  .breadcrumbs__link:hover {
    color: var(--green);
  }
  .hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(97, 157, 24, 0.4);
  }
  .service-card:hover img {
    filter: grayscale(50%);
  }
  .service-card:hover .service-card__overlay {
    opacity: 0;
  }
  .service-card:hover .service-card__image-blur {
    opacity: 1;
    transform: scale(1.1);
  }
  .service-card:hover .service-card__hover {
    translate: 0 0;
    opacity: 1;
  }
  .service-card.is-active img {
    filter: grayscale(50%);
  }
  .service-card.is-active .service-card__overlay {
    opacity: 0;
  }
  .service-card.is-active .service-card__image-blur {
    opacity: 1;
    transform: scale(1.1);
  }
  .service-card--banner:hover img {
    filter: none;
  }
  .service-card--banner:hover .service-card__overlay {
    opacity: 1;
    max-height: 360px;
  }
  .service-card--banner:hover .service-card__desc {
    max-height: 150px;
    margin-top: 25px;
    opacity: 1;
    overflow: auto;
  }
  .promo-card {
    transition: var(--transition);
  }
  .promo-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }
  .promo-card:hover .promo-card__btn {
    text-decoration: underline;
    color: var(--green--hover);
  }
  .checkbox__mark:hover {
    border-color: var(--green);
  }
  .category__image:hover img {
    transform: scale(1.03);
  }
  .footer__col a:hover {
    color: var(--green);
    transition: color var(--transition);
  }
  .custom-select__option:hover,
  .custom-select__option.is-active {
    background: #f4f4f4;
  }
  .number-plate:hover {
    background-color: var(--green);
    color: var(--white);
  }
  .number-plate.is-disabled:hover {
    background-color: var(--grey);
    color: var(--white);
  }
}
