.hp-section__title {
  font-weight: 400;
  font-size: 2.5rem;
  padding-top: 24px;
  color: #526b8d;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e6e8ee;
  background: #000;
}

.hero-carousel__track {
  display: flex;
  transition: transform 380ms ease;
}

.hero-carousel__slide {
  min-width: 100%;
  position: relative;
}

.hero-carousel__img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

.hero-carousel__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  padding: 14px 16px;
  border-radius: 1rem;
  max-width: 520px;
}

.hero-carousel__title {
  margin: 0 0 6px 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.hero-carousel__text {
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.hero-carousel__cta {
  background: #526b8d;
  color: #fff;
  border-radius: 1rem;
  padding: 10px 16px;
  text-decoration: none;
  border: 0;
}

.hero-carousel__cta:hover {
  content: "";
  color: white;
  background: #3c5374;
}

.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  z-index: 10;
}

.hero-carousel__btn--prev {
  left: 12px;
}

.hero-carousel__btn--next {
  right: 12px;
}

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  cursor: pointer;
}

.hero-carousel__dot--active {
  opacity: 1;
}

.intro-panel {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 40px;
  border: 1px solid #e6e8ee;
}

.intro-panel__title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: #526b8d;
}

.intro-panel__text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 350px;
  cursor: pointer;
  border: 1px solid #e6e8ee;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card:hover .category-card__overlay {
  background: rgba(0, 0, 0, 0.6);
}

.category-card__title {
  color: #fff;
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.category-card__cta {
  display: inline-block;
  background: #526b8d;
  color: #fff;
  padding: 10px 16px;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.category-card__cta:hover {
  background: #3c5374;
}

@media (max-width: 991.98px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.reviews__panel {
  border: 1px solid #e6e8ee;
  border-radius: 1rem;
  background: #fff;
  padding: 22px;
}

.reviews__title {
  font-weight: 400;
  margin: 0 0 6px 0;
  color: #526b8d;
  font-size: 2.5rem;
}

.reviews__meta {
  margin: 0 0 16px 0;
  opacity: 0.8;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  border: 1px solid #eef0f4;
  border-radius: 1rem;
  padding: 14px;
  background: #fafbfc;
}

.review-card__text {
  margin: 0 0 10px 0;
  font-weight: 600;
}

.review-card__author {
  margin: 0;
  opacity: 0.8;
  color: #3c5374;
}

@media (max-width: 991.98px) {
  .reviews_-grid {
    grid-template-columns: 1fr;
  }
}

.rebates-banner {
  background-image: url("images/rebate-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  object-fit: cover;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rebates-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.rebates-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 40px;
  max-width: 700px;
}

.rebates-banner__title {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 16px 0;
  color: #fff;
}

.rebates-banner__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
  color: rgba(255, 255, 255, 0.95);
}

.rebates-banner__cta {
  display: inline-block;
  background: #526b8d;
  color: #fff;
  padding: 14px 32px;
  border-radius: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.rebates-banner__cta:hover {
  background: #3c5374;
}

.product-slider__header {
  font-size: 2.5rem;
  color: #526b8d;
  margin: 0;
  font-weight: 400;
}


.product-slider__title {
  font-weight: 400;
  font-size: 2rem;
}

.product-slider__controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 16px;
}

.product-slider__btn {
  border-radius: 1rem;
  padding: 8px 14px;
  margin: 0;
  background: #526b8d;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.product-slider__btn:hover:not(:disabled) {
  background: #3c5374;
  color: white;
}

.product-slider__btn:disabled {
  background: #526b8d;
  opacity: 1;
  cursor: not-allowed;
  color: white;
}

.product-slider__viewport {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e6e8ee;
  border-radius: 1rem;
  background: #fff;
}

.product-slider__track {
  display: flex;
  gap: 16px;
  padding: 16px;
  transition: transform 0.3s ease-out;
  flex-wrap: nowrap;
}

.product-card {
  flex: 0 0 calc((100% - (16px * (var(--visible-count, 5) - 1))) / var(--visible-count, 5));
  border: 1px solid #eef0f4;
  border-radius: 1rem;
  padding: 12px;
}

.product-card__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 6px 0;
  color: #3c5374;
}

.product-card__price {
  margin: 0;
  font-weight: 400;
}

.about-us {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 18px;
  overflow: hidden;
  padding: 2rem;
}


.about-us__img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 1rem;
}

.about-us:hover .about-us__img {
  transform: scale(1.05);
}

.about-us__content {
  padding: 1rem;
}

.about-us__title {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #526b8d;
}

.about-us__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px 0;
}

.about-us__cta {
  display: inline-block;
  background: #526b8d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
  margin-top: 8px;
}

.about-us__cta:hover {
  background: #3c5374;
}

@media (max-width: 991.98px) {
  .about-us {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-us__content {
    padding: 24px;
  }

  .about-us__title {
    font-size: 1.5rem;
  }
}