.products-hero-banner {
  position: relative;
  min-height: 819px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.products-hero-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://placehold.co/1280x819");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.products-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.products-hero-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}
.products-hero-banner__inner {
  width: 100%;
}
.products-hero-banner__heading {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}
.products-hero-banner__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}
.products-hero-banner__buttons {
  margin-top: 1rem;
}
.products-hero-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.products-hero-banner__btn--solid {
  background-color: #b70100;
  color: #ffffff;
  border: 1px solid #b70100;
}
.products-hero-banner__btn--solid:hover {
  background-color: #8f0000;
  border-color: #8f0000;
  color: #ffffff;
}
.products-hero-banner__btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.products-hero-banner__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .products-hero-banner {
    min-height: auto;
  }
  .products-hero-banner__btn {
    width: 100%;
  }
}

.product-catalog {
  padding: 80px 24px;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767.98px) {
  .product-catalog {
    padding: 48px 16px;
  }
}
@media (max-width: 991.98px) {
  .product-catalog__header {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.product-catalog__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
  color: #2A1613;
  margin-bottom: 8px;
}
@media (max-width: 575.98px) {
  .product-catalog__title {
    font-size: 32px;
    line-height: 44px;
  }
}
.product-catalog__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .product-catalog__filters {
    flex-wrap: wrap;
  }
}
.product-catalog__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #FCF8F6;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2A1613;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.product-catalog__filter:hover {
  border-color: #B70100;
}
.product-catalog__filter.is-active {
  background-color: #B70100;
  border-color: #B70100;
  color: #FFFFFF;
}
.product-catalog__grid {
  margin-bottom: 24px;
}
.product-catalog__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.product-catalog__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: #B70100;
  border-radius: 4px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.product-catalog__cta-btn:hover {
  background-color: #950100;
  color: #FFFFFF;
}
.product-catalog__cta-note {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 0;
}

.product-card {
  height: 100%;
}
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background-color: #F9FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #2A1613;
  margin-bottom: 0;
}
.product-card__meta {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-top: 4px;
  margin-bottom: 0;
}
.product-card:hover .product-card__image {
  transform: scale(1.02);
}

.feature-section {
  background-color: #F9FAFB;
  padding: 80px 24px;
}
@media (max-width: 767.98px) {
  .feature-section {
    padding: 48px 16px;
  }
}
.feature-section .feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.feature-section .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.feature-section .feature-card--intro {
  padding: 48px;
}
@media (max-width: 575.98px) {
  .feature-section .feature-card--intro {
    padding: 32px 24px;
  }
}
.feature-section .feature-card--highlight {
  background-color: #B70100;
  border: none;
  padding: 32px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-section .feature-card--highlight .feature-card__subtitle {
  color: #FFFFFF;
}
.feature-section .feature-card--highlight .feature-card__text {
  color: #FFFFFF;
  opacity: 0.9;
}
.feature-section .feature-card--secondary {
  background-color: #E3E2E2;
  border: 1px solid #E2E8F0;
  padding: 32px;
  padding-bottom: 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-section .feature-card__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B70100;
  margin-bottom: 16px;
}
.feature-section .feature-card__title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  color: #2A1613;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .feature-section .feature-card__title {
    font-size: 26px;
    line-height: 38px;
  }
}
.feature-section .feature-card__description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 24px;
}
.feature-section .feature-card__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2A1613;
  margin-bottom: 0;
}
.feature-section .feature-card__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 0;
}
.feature-section .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-section .feature-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-section .feature-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #B70100;
  display: block;
}
.feature-section .feature-list__label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #2A1613;
}

.categories-section {
  background-color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 80px;
}
.categories-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
}
.categories-section__eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #B70100;
}
.categories-section__heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.96px;
  color: #2A1613;
  margin: 0;
}
.categories-section__card {
  position: relative;
  height: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.categories-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.categories-section__card:hover .categories-section__link .categories-section__icon {
  transform: translateX(4px);
}
.categories-section__media {
  overflow: hidden;
}
.categories-section__image {
  display: block;
  width: 100%;
  height: 332px;
  object-fit: cover;
}
.categories-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 32px;
  position: relative;
  min-height: 166px;
}
.categories-section__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2A1613;
  margin: 0;
}
.categories-section__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
  margin: 0;
}
.categories-section__link {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #B70100;
  text-decoration: none;
}
.categories-section__icon {
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .categories-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .categories-section__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .categories-section__content {
    padding: 24px;
    min-height: auto;
  }
  .categories-section__link {
    right: 24px;
    bottom: 24px;
  }
  .categories-section__image {
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .categories-section .categories-section__card-col:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-section {
  position: relative;
  background-color: #333333;
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.cta-section__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}
.cta-section__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}
.cta-section__button {
  display: inline-block;
  background-color: #ffffff;
  color: #b70100;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-section__button:hover {
  background-color: #b70100;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .cta-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .cta-section__content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cta-section__title {
    font-size: 28px;
  }
  .cta-section__button {
    padding: 14px 32px;
  }
}
