:root {
  --color-ink: #333333;
  --color-black: #000000;
  --color-muted: #747375;
  --color-soft: #8d8f8b;
  --color-line: #ecece9;
  --color-page: #f8f8f4;
  --color-card: #ecece9;
  --color-white: #ffffff;
  --color-gold: #b69664;
  --color-button: #d9d4ca;
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Roboto Serif", Georgia, serif;
  --font-accent: "Apercu Pro", "Inter", Arial, sans-serif;
  --font-review: "Roobert", "Inter", Arial, sans-serif;
  --font-copy: "Rubik", "Inter", Arial, sans-serif;
  --container: 1344px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.nav-is-open {
  overflow: hidden;
}

body.modal-is-open {
  overflow: hidden;
}

body.category-menu-is-open {
  overflow: hidden;
}

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

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

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

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

.container {
  width: min(100% - 96px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(248, 248, 244, 0.92);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--color-black);
  line-height: 1;
}

.site-brand img {
  width: 70px;
  height: 24px;
}

.primary-nav {
  justify-self: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--color-soft);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.primary-nav a:hover {
  color: var(--color-gold);
}

.home .primary-nav .nav-home a,
.page-template-page-poslugy .primary-nav .nav-services a,
.page-slug-poslugy .primary-nav .nav-services a,
.page-template-page-kategoriyi-vyrobiv .primary-nav .nav-categories a,
.page-slug-kategoriyi-vyrobiv .primary-nav .nav-categories a,
.page-template-page-karnyzy-ta-moldynhy .primary-nav .nav-categories a,
.page-slug-karnyzy-ta-moldynhy .primary-nav .nav-categories a,
.page-template-page-portfolio .primary-nav .nav-portfolio a,
.page-template-page-portfolio-maksym-shevchenko .primary-nav .nav-portfolio a,
.page-slug-portfolio .primary-nav .nav-portfolio a,
.page-slug-portfolio-maksym-shevchenko .primary-nav .nav-portfolio a,
.page-template-page-pro-nas .primary-nav .nav-about a,
.page-slug-pro-nas .primary-nav .nav-about a {
  color: var(--color-gold);
}

.header-contact {
  justify-self: end;
  min-width: 139px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle i {
  position: absolute;
  left: 9px;
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--color-black);
  transition: top 0.2s ease, transform 0.2s ease;
}

.nav-toggle i:nth-of-type(1) {
  top: 15px;
}

.nav-toggle i:nth-of-type(2) {
  top: 23px;
}

.nav-toggle[aria-expanded="true"] i:nth-of-type(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:nth-of-type(2) {
  top: 20px;
  transform: rotate(-45deg);
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  height: 720px;
  overflow: hidden;
  background: var(--color-line);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: -86px;
}

.stat-card,
.service-card,
.category-card,
.review-card {
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 20px 60px rgba(51, 51, 51, 0.08);
  overflow: hidden;
}

.stat-card img {
  width: 100%;
  aspect-ratio: 318 / 214;
  object-fit: cover;
}

.stat-card__body {
  padding: 18px 20px 22px;
  text-align: center;
}

.stat-card h2 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.stat-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.section {
  padding-block: 104px;
}

.section--about {
  text-align: center;
}

.section--about h1,
.section-heading h2 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.section--about h1 {
  max-width: 700px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 570px 1fr;
  gap: 77px;
  align-items: center;
  margin-top: 86px;
  text-align: left;
}

.about-grid > img {
  width: 100%;
  border-radius: 16px;
  filter: grayscale(100%);
}

.benefit-list {
  display: grid;
  gap: 34px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 20px;
}

.benefit-item span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--color-line);
}

.benefit-item h2 {
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.49;
}

.benefit-item p {
  margin-top: 8px;
  color: var(--color-muted);
  font-family: var(--font-accent);
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 48px;
  margin-top: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.home-page .button {
  font-family: var(--font-accent);
}

.button--muted {
  background: var(--color-button);
  color: var(--color-ink);
}

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

.section-heading {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h1 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

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

.section--services .section-heading p,
.section--reviews .section-heading p,
.services-intro .section-heading p {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.5;
}

.section--services {
  padding-top: 84px;
}

.section--services > .container > .button {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

.service-list {
  display: grid;
  gap: 24px;
  margin-top: 92px;
}

.service-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  min-height: 262px;
  background: var(--color-card);
  box-shadow: none;
}

.service-card img {
  width: 340px;
  height: 242px;
  margin-left: 20px;
  border-radius: 14px;
  object-fit: cover;
  filter: grayscale(100%);
}

.service-card__content {
  display: grid;
  gap: 20px;
  padding: 34px 56px;
}

.service-card h2,
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.39;
}

.service-card p {
  color: var(--color-muted);
  font-family: var(--font-accent);
  font-size: 18px;
}

.service-card a,
.service-card button {
  justify-self: start;
  min-width: 154px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--color-button);
  color: var(--color-ink);
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.service-card--featured {
  background: var(--color-white);
}

.service-card--featured a,
.service-card--featured button {
  background: var(--color-black);
  color: var(--color-white);
}

.services-page {
  position: relative;
  overflow: hidden;
  background: var(--color-page);
}

.categories-page {
  position: relative;
  overflow: hidden;
  background: var(--color-page);
}

.products-page {
  background: var(--color-page);
}

.products-intro {
  padding-block: 31px 36px;
}

.products-intro h1 {
  margin-top: 50px;
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 318px));
  gap: 24px;
  margin-top: 80px;
}

.product-tabs button,
.product-tabs a {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-line);
  color: var(--color-ink);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
}

.product-tabs button.is-active,
.product-tabs a.is-active {
  border-color: var(--color-gold);
  background: var(--color-white);
  color: var(--color-gold);
}

.product-tabs-mobile-trigger {
  display: none;
}

.category-type-menu[hidden] {
  display: none;
}

.category-type-menu {
  display: none;
}

.products-catalog {
  border-top: 1px solid var(--color-line);
  padding-block: 60px 96px;
}

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

.product-tile {
  display: grid;
  gap: 14px;
}

.product-tile__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: var(--color-card);
}

.product-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

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

.product-tile h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.product-tile p,
.product-tile strong {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
}

.product-tile button {
  justify-self: start;
  min-width: 154px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--color-button);
  color: var(--color-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.product-tile button.is-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 15px;
}

.catalog-pagination a.is-active {
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
}

.catalog-pagination__arrow {
  background: #f2f1ed;
  color: var(--color-ink);
  font-size: 28px;
  line-height: 1;
}

.catalog-copy {
  display: grid;
  gap: 24px;
  margin-top: 72px;
}

.catalog-copy h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.39;
}

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

.product-detail-page {
  background: var(--color-page);
}

.product-detail-intro {
  padding-block: 31px 96px;
}

.product-detail {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 58px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
}

.product-gallery__thumbs {
  display: grid;
  gap: 12px;
}

.product-gallery__thumbs button {
  width: 90px;
  height: 90px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--color-card);
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--color-gold);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-card);
}

.product-gallery__dots {
  display: none;
}

.product-summary {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-left: 0;
}

.product-summary h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.product-summary__article {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 18px;
}

.product-summary__article strong {
  color: var(--color-ink);
  font-weight: 400;
}

.product-summary__status {
  color: var(--color-muted);
  font-size: 16px;
}

.product-summary__price {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.product-summary > .button {
  justify-self: start;
  min-width: 204px;
  margin-top: 10px;
}

.product-specs {
  margin-top: 10px;
  padding: 16px;
  background: var(--color-card);
}

.product-summary.no-price .product-specs {
  margin-top: 10px;
}

.product-specs h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.product-specs dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.65fr);
  gap: 24px;
  color: var(--color-muted);
  font-size: 15px;
}

.product-specs dt,
.product-specs dd {
  margin: 0;
}

.product-specs dd {
  color: var(--color-ink);
}

.product-detail__mobile-only {
  display: none;
}

.portfolio-page,
.portfolio-detail-page {
  background: var(--color-page);
}

.portfolio-intro,
.portfolio-detail-intro {
  padding-block: 31px 56px;
}

.portfolio-title {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-top: 52px;
  text-align: center;
}

.portfolio-title h1 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.portfolio-title::after {
  content: "";
  width: 400px;
  max-width: 100%;
  border-bottom: 2px dashed #bdb7ae;
}

.portfolio-catalog {
  padding-bottom: 96px;
}

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

.portfolio-card {
  display: grid;
  gap: 14px;
  padding: 11px 11px 23px;
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  background: var(--color-card);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 432 / 250;
  border-radius: 12px;
  object-fit: cover;
}

.portfolio-card div {
  padding-inline: 6px;
}

.portfolio-card h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.39;
}

.portfolio-card p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
}

.portfolio-detail-media {
  padding-bottom: 84px;
}

.portfolio-detail-slider {
  position: relative;
}

.portfolio-detail-slider img {
  width: 100%;
  aspect-ratio: 1344 / 606;
  border-radius: 20px;
  object-fit: cover;
}

.portfolio-detail-slider__arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: rgba(217, 212, 202, 0.86);
  color: var(--color-ink);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.portfolio-detail-slider__arrow--prev {
  left: 24px;
}

.portfolio-detail-slider__arrow--next {
  right: 24px;
  background: var(--color-gold);
}

.portfolio-detail-caption {
  margin-top: 24px;
}

.portfolio-detail-caption h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.39;
}

.portfolio-detail-caption p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
}

.categories-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 238px;
  background:
    linear-gradient(180deg, rgba(248, 248, 244, 0.18), var(--color-page) 84%),
    url("../images/figma/13-4385.png") center 24% / cover;
  filter: grayscale(100%);
  opacity: 0.16;
  pointer-events: none;
}

.categories-intro {
  position: relative;
  padding-block: 31px 50px;
}

.categories-title {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.categories-title h1 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.categories-title::after {
  content: "";
  width: 400px;
  max-width: 100%;
  border-bottom: 2px dashed #bdb7ae;
}

.categories-catalog {
  position: relative;
  padding-bottom: 100px;
}

.services-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  background:
    linear-gradient(180deg, rgba(248, 248, 244, 0.3), var(--color-page) 82%),
    url("../images/figma/13-4385.png") center 20% / cover;
  filter: grayscale(100%);
  opacity: 0.12;
  pointer-events: none;
}

.services-intro {
  position: relative;
  padding-block: 31px 54px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  color: var(--color-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.breadcrumbs strong {
  color: var(--color-ink);
  font-weight: 600;
}

.services-catalog {
  position: relative;
  padding-bottom: 120px;
}

.service-list--page {
  margin-top: 0;
}

.service-list--page .service-card {
  min-height: 272px;
}

.service-list--page .service-card img {
  height: 242px;
}

.info-page {
  position: relative;
  overflow: hidden;
}

.info-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  background:
    linear-gradient(180deg, rgba(248, 248, 244, 0.3), var(--color-page) 82%),
    url("../images/figma/13-4385.png") center 20% / cover;
  filter: grayscale(100%);
  opacity: 0.12;
  pointer-events: none;
}

.info-intro,
.delivery-content {
  position: relative;
  padding-block: 31px 0;
}

.info-title {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.info-title h1,
.delivery-article h1 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.39;
}

.info-title::after {
  content: "";
  width: 404px;
  max-width: 100%;
  border-bottom: 2px dashed #bdb7ae;
}

.about-content {
  position: relative;
  padding-block: 51px 84px;
}

.about-content__grid {
  display: grid;
  grid-template-columns: 508px 1fr;
  gap: 66px;
  align-items: start;
}

.about-content__image {
  width: 100%;
  min-height: 568px;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-content__body {
  display: grid;
  gap: 48px;
}

.about-bullets {
  display: grid;
  gap: 24px;
}

.about-bullets p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 24px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.about-bullets span {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 999px;
  background: #dedede;
}

.about-contacts {
  padding: 22px 16px 18px;
  border-radius: 12px;
  background: var(--color-white);
}

.about-contacts h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.about-contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px 26px;
  border-radius: 10px;
  background: var(--color-page);
}

.about-contacts h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.about-contacts p {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
}

.about-contact-section {
  position: relative;
  padding-block: 32px 112px;
  background:
    radial-gradient(620px 320px at 0% 78%, #ecece9 0%, rgba(236, 236, 233, 0) 70%),
    var(--color-page);
}

.contact-panel--page {
  max-width: 792px;
  text-align: center;
}

.about-contact-section .contact-panel {
  max-width: 792px;
}

.contact-form--page {
  gap: 12px;
  margin-top: 24px;
}

.contact-form--page input,
.contact-form--page textarea,
.contact-form--page .multi-select__trigger {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.contact-form--page textarea {
  min-height: 101px;
}

.contact-form--page .button {
  min-width: 184px;
  min-height: 44px;
  margin: 26px auto 0;
}

.delivery-content {
  min-height: 861px;
  padding-bottom: 120px;
}

.delivery-article {
  max-width: 1320px;
}

.delivery-article h1 {
  margin-bottom: 14px;
}

.delivery-article p {
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.55;
}

.delivery-article p + p {
  margin-top: 16px;
}

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

.category-grid--page {
  margin-top: 0;
}

.category-card {
  background: var(--color-card);
  box-shadow: none;
}

.category-card--page {
  display: block;
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card--page:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(51, 51, 51, 0.09);
}

.category-card img {
  width: 100%;
  aspect-ratio: 408 / 241;
  object-fit: cover;
  filter: grayscale(100%);
}

.category-card h3 {
  padding: 24px 16px 30px;
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.39;
  text-align: center;
}

.category-card--page h2 {
  padding: 35px 16px 38px;
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.section--categories,
.section--portfolio,
.section--reviews {
  text-align: center;
}

.portfolio-slider {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-card);
}

.portfolio-slider img {
  width: 100%;
  aspect-ratio: 1344 / 574;
  object-fit: cover;
}

.portfolio-slider button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(182, 150, 100, 0.74);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
}

.portfolio-slider button:first-child {
  left: 18px;
}

.portfolio-slider button:last-child {
  right: 18px;
}

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

.slider-dots span {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-gold);
  opacity: 0.35;
}

.slider-dots span:first-child {
  opacity: 1;
}

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

.review-card {
  padding: 34px;
  text-align: left;
}

.review-card h3 {
  font-family: var(--font-review);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.stars {
  margin-block: 18px;
  color: #ffc300;
  letter-spacing: 3px;
}

.review-card p {
  color: var(--color-muted);
  font-family: var(--font-review);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-section .section-heading h2,
.contact-modal .section-heading h2 {
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-section {
  padding-block: 96px 120px;
  background:
    radial-gradient(1200px 420px at -10% 70%, #ecece9 0%, rgba(236, 236, 233, 0) 60%),
    var(--color-page);
}

.contact-panel {
  max-width: 840px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
}

.multi-select {
  position: relative;
  z-index: 3;
}

.multi-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 61px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 18px 48px 18px 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.multi-select__trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  transform: translateY(-65%) rotate(45deg);
}

.multi-select__trigger span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-select__menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto;
  display: none;
  max-height: 240px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 18px 46px rgba(17, 17, 20, 0.12);
}

.multi-select.is-open .multi-select__menu {
  display: grid;
  gap: 4px;
}

.multi-select__menu label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-ink);
  font-size: 15px;
  cursor: pointer;
}

.multi-select__menu label:hover {
  background: var(--color-page);
}

.multi-select__menu input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-black);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: center;
}

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

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 32px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 20, 0.46);
  backdrop-filter: blur(12px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(900px, calc(100vh - 64px));
  overflow: auto;
  border-radius: 24px;
  background:
    radial-gradient(800px 320px at -10% 110%, #ecece9 0%, rgba(236, 236, 233, 0) 60%),
    var(--color-page);
  box-shadow: 0 28px 90px rgba(17, 17, 20, 0.22);
}

.contact-modal.is-success .contact-modal__panel {
  width: min(100%, 656px);
  min-height: 626px;
}

.contact-modal.is-success .contact-modal__content {
  display: grid;
  align-items: center;
  min-height: 626px;
  padding: 0 72px;
}

.contact-modal__content {
  padding: 64px 72px 56px;
}

.contact-modal.is-success .contact-modal__content > .section-heading {
  display: none;
}

.contact-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-modal__close::before,
.contact-modal__close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--color-black);
}

.contact-modal__close::before {
  transform: rotate(45deg);
}

.contact-modal__close::after {
  transform: rotate(-45deg);
}

.contact-form--modal {
  margin-top: 34px;
}

.contact-modal__form-view[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-success {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 20px;
  padding-block: 0;
  text-align: center;
}

.contact-success__icon {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 8px solid var(--color-gold);
}

.contact-success__icon::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 38px;
  width: 28px;
  height: 48px;
  border-right: 8px solid var(--color-gold);
  border-bottom: 8px solid var(--color-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.contact-success h2 {
  max-width: 520px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-success p {
  max-width: 460px;
  color: var(--color-ink);
  font-size: 18px;
}

.contact-success .button {
  min-width: 309px;
  margin-top: 44px;
}

.site-main {
  min-height: 60vh;
}

.content-stack {
  display: grid;
  gap: 36px;
}

.content-stack--narrow {
  max-width: 820px;
}

.entry {
  display: grid;
  gap: 24px;
}

.entry__title {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
}

.entry__content {
  color: var(--color-muted);
}

.site-footer {
  padding-block: 48px 28px;
  background: var(--color-page);
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 220px 260px;
  gap: 64px;
  align-items: start;
}

.site-brand--footer {
  color: var(--color-black);
}

.site-footer__brand {
  display: grid;
  gap: 88px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-contact-icons {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 0 0 auto;
}

.footer-contact-icons svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: var(--color-ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-phone {
  margin: 0;
  color: var(--color-ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-column {
  display: grid;
  gap: 18px;
}

.footer-column h2 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

.footer-column p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__copy {
  margin-top: 34px;
  color: var(--color-muted);
  font-family: var(--font-copy);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .site-header {
    background: var(--color-page);
    backdrop-filter: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .header-contact {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    z-index: 100;
    width: 100vw;
    padding: 58px 36px;
    margin: 0;
    background: var(--color-page);
    border-top: 1px solid #d9d9d9;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 31px;
    align-content: start;
  }

  .primary-nav a {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.39;
  }

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

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

  .about-grid,
  .about-content__grid,
  .service-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .about-content__image {
    min-height: 420px;
  }

  .service-card img {
    width: calc(100% - 40px);
    height: auto;
    margin: 20px 20px 0;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal__panel {
    max-height: calc(100vh - 32px);
    border-radius: 20px;
  }

  .contact-modal__content {
    padding: 50px 18px 24px;
  }

  .contact-modal.is-success {
    padding: 0;
  }

  .contact-modal.is-success .contact-modal__backdrop {
    background: var(--color-white);
    backdrop-filter: none;
  }

  .contact-modal.is-success .contact-modal__panel {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    background: var(--color-white);
    box-shadow: none;
  }

  .contact-modal.is-success .contact-modal__content {
    display: grid;
    align-items: center;
    min-height: 100vh;
    padding: 72px 18px 40px;
  }

  .contact-modal .section-heading {
    gap: 12px;
  }

  .contact-form--modal {
    gap: 10px;
    margin-top: 22px;
  }

  .contact-form--modal input,
  .contact-form--modal select,
  .contact-form--modal .multi-select__trigger,
  .contact-form--modal textarea {
    padding: 13px 20px;
    font-family: var(--font-review);
    font-size: 14px;
    font-weight: 500;
  }

  .contact-form--modal .multi-select__trigger {
    min-height: 48px;
    padding-right: 44px;
  }

  .contact-form--modal .multi-select__menu {
    max-height: 188px;
  }

  .contact-form--modal textarea {
    min-height: 108px;
  }

  .contact-form--modal .button {
    min-height: 46px;
    margin-top: 8px;
  }

  .contact-success {
    min-height: auto;
    padding-block: 0;
  }

  .contact-success__icon {
    width: 106px;
    height: 106px;
    border-width: 7px;
  }

  .contact-success__icon::after {
    top: 24px;
    left: 36px;
    width: 27px;
    height: 45px;
    border-width: 7px;
  }

  .contact-success h2 {
    max-width: 320px;
    font-size: 27px;
    line-height: 1.5;
  }

  .contact-success p {
    font-size: 19px;
  }

  .contact-success .button {
    width: 100%;
    min-width: 0;
    min-height: 49px;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-brand {
    margin-left: 2px;
  }

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

  .primary-nav {
    padding: 30px 18px;
  }

  .primary-nav a {
    font-size: 27px;
  }

  .hero {
    height: 620px;
  }

  .stats,
  .category-grid,
  .review-grid,
  .products-grid,
  .product-tabs {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -54px;
  }

  .section {
    padding-block: 72px;
  }

  .section--about h1,
  .section-heading h1,
  .section-heading h2 {
    font-size: 30px;
  }

  .services-intro {
    padding-block: 28px 48px;
  }

  .info-intro,
  .delivery-content {
    padding-block-start: 28px;
  }

  .info-title {
    gap: 20px;
  }

  .info-title h1,
  .delivery-article h1 {
    font-size: 30px;
  }

  .info-title::after {
    width: 260px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .products-intro .breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow: visible;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .products-intro .breadcrumbs a,
  .products-intro .breadcrumbs strong,
  .products-intro .breadcrumbs span {
    flex: 0 0 auto;
  }

  .products-intro .breadcrumbs a:nth-of-type(2) {
    max-width: none;
  }

  .products-intro .breadcrumbs strong {
    max-width: none;
  }

  .services-catalog {
    padding-bottom: 72px;
  }

  .about-content {
    padding-block: 34px 56px;
  }

  .about-content__grid {
    gap: 34px;
  }

  .about-content__image {
    min-height: 340px;
    border-radius: 10px;
  }

  .about-content__body {
    gap: 32px;
  }

  .about-bullets {
    gap: 18px;
  }

  .about-bullets p {
    grid-template-columns: 16px 1fr;
    gap: 16px;
    font-size: 16px;
  }

  .about-bullets span {
    width: 16px;
    height: 16px;
  }

  .about-contacts {
    padding: 18px 12px 14px;
  }

  .about-contacts__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .about-contacts h2,
  .about-contacts h3 {
    font-size: 20px;
  }

  .about-contacts p {
    font-size: 16px;
  }

  .about-contact-section {
    padding-block: 24px 72px;
  }

  .contact-panel--page {
    text-align: center;
  }

  .delivery-content {
    min-height: auto;
    padding-bottom: 72px;
  }

  .delivery-article p {
    font-size: 15px;
    line-height: 1.55;
  }

  .categories-intro {
    padding-block: 28px 48px;
  }

  .categories-title {
    gap: 20px;
  }

  .categories-title h1 {
    font-size: 30px;
  }

  .categories-title::after {
    width: 260px;
  }

  .categories-catalog {
    padding-bottom: 72px;
  }

  .products-intro {
    padding-block: 28px 32px;
  }

  .products-intro h1 {
    margin-top: 24px;
    font-size: 30px;
  }

  .product-tabs {
    display: none;
  }

  .product-tabs-mobile-trigger {
    position: relative;
    display: block;
    width: 100%;
    min-height: 72px;
    margin-top: 36px;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-gold);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    text-align: center;
  }

  .product-tabs-mobile-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: translateY(-65%) rotate(45deg);
  }

  .category-type-menu {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: block;
    background: var(--color-page);
  }

  .category-type-menu__bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 109px;
    padding: 44px 18px 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .category-type-menu__bar h2 {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
  }

  .category-type-menu__bar button {
    position: relative;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .category-type-menu__bar button::before,
  .category-type-menu__bar button::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 8px;
    width: 24px;
    height: 2px;
    background: var(--color-black);
  }

  .category-type-menu__bar button::before {
    transform: rotate(45deg);
  }

  .category-type-menu__bar button::after {
    transform: rotate(-45deg);
  }

  .category-type-menu__content {
    padding: 20px 18px 0;
  }

  .category-type-menu__content h3 {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
  }

  .category-type-menu__options {
    display: grid;
    gap: 12px;
  }

  .category-type-menu__options button,
  .category-type-menu__options a {
    display: grid;
    place-items: center;
    min-height: 72px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--color-line);
    color: var(--color-ink);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
  }

  .category-type-menu__options button.is-active,
  .category-type-menu__options a.is-active {
    border-color: var(--color-gold);
    background: var(--color-white);
    color: var(--color-gold);
  }

  .products-catalog {
    padding-block: 52px 72px;
  }

  .products-catalog .container {
    width: min(100% - 24px, var(--container));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 15px;
  }

  .product-tile {
    gap: 9px;
  }

  .product-tile__media {
    border-radius: 4px;
  }

  .product-tile__meta {
    gap: 8px;
    font-size: 11px;
  }

  .product-tile h2 {
    font-size: 17px;
  }

  .product-tile p,
  .product-tile strong {
    font-size: 11px;
  }

  .product-tile button {
    min-width: 129px;
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .catalog-copy h2 {
    font-size: 30px;
  }

  .catalog-copy p {
    font-size: 15px;
  }

  .product-detail-intro {
    padding-block: 28px 72px;
  }

  .product-detail__mobile-only {
    display: inline;
  }

  .product-detail-intro .breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    overflow: hidden;
    font-size: 9.8px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .product-detail-intro .breadcrumbs > * {
    flex: 0 0 auto;
  }

  .product-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .product-detail .breadcrumbs {
    order: 0;
  }

  .product-gallery {
    display: block;
    width: calc(100% + 32px);
    margin-inline: -16px;
    order: 1;
  }

  .product-gallery__thumbs {
    display: none;
  }

  .product-gallery__main {
    width: 100%;
    border-radius: 0;
  }

  .product-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -28px;
    position: relative;
    z-index: 1;
  }

  .product-gallery__dots span {
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: var(--color-white);
    opacity: 0.55;
  }

  .product-gallery__dots span.is-active {
    background: var(--color-gold);
    opacity: 1;
  }

  .product-summary {
    order: 2;
    gap: 10px;
    padding-top: 32px;
  }

  .product-summary h1 {
    font-size: 27px;
  }

  .product-summary__article,
  .product-summary__status {
    font-size: 15px;
  }

  .product-summary__price {
    font-size: 24px;
  }

  .product-summary > .button {
    width: 100%;
    margin-top: 16px;
  }

  .product-specs {
    margin-top: 24px;
    padding: 16px;
  }

  .product-specs div {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-size: 15px;
  }

  .portfolio-intro,
  .portfolio-detail-intro {
    padding-block: 28px 32px;
  }

  .portfolio-title {
    gap: 20px;
    margin-top: 24px;
  }

  .portfolio-title h1 {
    font-size: 30px;
  }

  .portfolio-title::after {
    width: 260px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-card {
    gap: 13px;
    padding: 10px 10px 20px;
  }

  .portfolio-card img {
    aspect-ratio: 339 / 197;
  }

  .portfolio-catalog {
    padding-bottom: 72px;
  }

  .catalog-pagination {
    gap: 8px;
    margin-top: 42px;
  }

  .catalog-pagination a,
  .catalog-pagination span {
    min-width: 26px;
    min-height: 30px;
    font-size: 14px;
  }

  .portfolio-detail-media {
    padding-bottom: 0;
  }

  .portfolio-detail-media .container {
    width: 100%;
  }

  .portfolio-detail-slider img {
    aspect-ratio: 375 / 254;
    border-radius: 0;
  }

  .portfolio-detail-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .portfolio-detail-slider__arrow--prev {
    left: 18px;
  }

  .portfolio-detail-slider__arrow--next {
    right: 18px;
  }

  .portfolio-detail-caption {
    width: min(100% - 36px, var(--container));
    margin: 42px auto 0;
  }

  .portfolio-detail-intro .breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: hidden;
    font-size: 10.5px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .portfolio-detail-intro .breadcrumbs > * {
    flex: 0 0 auto;
  }

  .about-grid,
  .service-list,
  .category-grid,
  .portfolio-slider {
    margin-top: 48px;
  }

  .service-card__content {
    padding: 26px 24px 30px;
  }

  .service-card h2,
  .service-card h3 {
    font-size: 28px;
  }

  .service-card p,
  .section-heading p,
  .benefit-item p {
    font-size: 16px;
  }

  .category-card--page h2 {
    padding-block: 22px 26px;
    font-size: 24px;
  }

  .site-footer__brand {
    gap: 32px;
  }
}
