:root {
  color-scheme: light;
  font-family: "Inter", Arial, sans-serif;
  color: #1f1f1f;
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#main-content {
  min-height: calc(100vh - 152px);
}

.qasra-content {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.qasra-woocommerce-content .woocommerce {
  width: 100%;
}

.trending-panel[hidden] {
  display: none !important;
}

.home-hero {
  width: 100%;
  overflow: hidden;
  background: #e5aa05;
}

.home-hero__link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #111;
  outline-offset: -6px;
}

.home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.category-showcase {
  --category-size: 190px;
  --category-gap: 12px;
  overflow: hidden;
  padding: 112px 0 78px;
  background: #fff;
}

.category-showcase__title {
  margin: 0 24px 34px;
  color: #060606;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.category-marquee {
  width: 100%;
  overflow: hidden;
}

.category-marquee__track,
.category-marquee__group {
  display: flex;
  width: max-content;
  gap: var(--category-gap);
}

.category-marquee__track {
  will-change: transform;
}

.category-marquee.is-ready .category-marquee__track {
  animation: category-marquee-scroll var(--category-duration, 30s) linear infinite;
}

.category-marquee:hover .category-marquee__track,
.category-marquee:focus-within .category-marquee__track {
  animation-play-state: paused;
}

.category-marquee__group {
  flex: none;
}

.category-card {
  display: flex;
  width: var(--category-size);
  flex: 0 0 var(--category-size);
  flex-direction: column;
  align-items: center;
  color: #3b3b3b;
  text-decoration: none;
}

.category-card__ring {
  position: relative;
  display: grid;
  width: var(--category-size);
  height: var(--category-size);
  flex: none;
  place-items: center;
  color: #111;
  background: #fff;
  border: 2px solid #e4a300;
  border-radius: 50%;
}

.category-card__ring::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 2px solid #e4a300;
  border-radius: inherit;
  pointer-events: none;
}

.category-card__ring img {
  display: block;
  width: 96px;
  height: 96px;
  transition: transform .22s ease;
}

.category-card__label {
  display: block;
  min-height: 50px;
  margin-top: 14px;
  padding: 0 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.category-card:hover .category-card__ring img,
.category-card:focus-visible .category-card__ring img {
  transform: scale(1.08);
}

.category-card:focus-visible {
  border-radius: 4px;
  outline: 3px solid #111;
  outline-offset: 5px;
}

@keyframes category-marquee-scroll {
  to {
    transform: translate3d(calc(var(--category-distance) * -1), 0, 0);
  }
}

.trending-section {
  padding: 8px 64px 100px;
  background: #fff;
}

.trending-section__title {
  margin: 0;
  color: #050505;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.trending-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 32px 0 49px;
}

.trending-tab {
  min-height: 58px;
  padding: 12px 31px;
  color: #050505;
  background: #fff;
  border: 2px solid #dedede;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.trending-tab:hover,
.trending-tab:focus-visible {
  border-color: #d9aa17;
}

.trending-tab:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.trending-tab.is-active {
  color: #fff;
  background: #dcad19;
  border-color: #dcad19;
}

.trending-panel.is-changing {
  opacity: .4;
}

.trending-panel {
  transition: opacity .16s ease;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1750px;
  margin: 0 auto;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f5f5f5;
}

.product-card__media > a,
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media img {
  object-fit: cover;
  transition: transform .3s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__discount {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  min-width: 68px;
  min-height: 40px;
  padding: 6px 12px;
  place-items: center;
  color: #fff;
  background: #dfaf13;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 10px;
  place-items: center;
  color: #d8a400;
  background: #fff;
  border: 2px solid #d8a400;
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.product-card__wishlist svg {
  width: 26px;
  height: 26px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-card__wishlist:hover,
.product-card__wishlist:focus-visible {
  transform: scale(1.06);
}

.product-card__wishlist:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.product-card__wishlist.is-saved {
  color: #fff;
  background: #d8a400;
}

.product-card__wishlist.is-saved svg {
  fill: currentColor;
}

.product-card__content {
  min-height: 162px;
  padding: 14px 12px 24px;
}

.product-card__content h3 {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #050505;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__content h3 a {
  text-decoration: none;
}

.product-card__content h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
}

.product-card__price span {
  color: #d9a500;
  font-size: 19px;
  font-weight: 700;
}

.product-card__price del {
  color: #8c8c8c;
  font-size: 15px;
  font-weight: 400;
}

.best-selling-section {
  padding: 25px 64px 100px;
  background: #fff;
}

.best-selling-section__title {
  margin: 0 0 80px;
  color: #050505;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 76px;
  padding: 8px 70px 72px;
  background: #fff;
}

.featured-product__gallery {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
  outline: 0;
}

.featured-product__gallery:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.featured-product__slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s;
}

.featured-product__slide.is-active {
  visibility: visible;
  opacity: 1;
}

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

.featured-product__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 8px;
  place-items: center;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.featured-product__arrow--previous {
  left: 0;
}

.featured-product__arrow--next {
  right: 0;
}

.featured-product__arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.featured-product__arrow:hover,
.featured-product__arrow:focus-visible {
  background: rgb(255 255 255 / 78%);
}

.featured-product__arrow:focus-visible {
  outline: 3px solid #111;
  outline-offset: 2px;
}

.featured-product__details h2 {
  margin: 0;
  color: #050505;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.featured-product__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 8px 0 0;
  white-space: nowrap;
}

.featured-product__price span {
  color: #8254f5;
  font-size: 31px;
  font-weight: 700;
}

.featured-product__price del {
  color: #626b75;
  font-size: 29px;
  font-weight: 700;
}

.featured-product__description {
  margin-top: 32px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.featured-product__description > button {
  display: flex;
  width: 100%;
  min-height: 56px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  color: #111;
  background: transparent;
  border: 0;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.featured-product__description > button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.featured-product__description > button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.featured-product__description > button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.featured-product__description > div {
  padding: 0 0 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.featured-product__description p {
  margin: 0;
}

.featured-product__purchase {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 48px 60px 48px;
  min-height: 64px;
  overflow: hidden;
  color: #2c2c2c;
  background: #dbad20;
  border-radius: 999px;
}

.quantity-stepper button,
.quantity-stepper output {
  display: grid;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 18px;
}

.quantity-stepper button {
  cursor: pointer;
}

.quantity-stepper button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.quantity-stepper button:hover,
.quantity-stepper button:focus-visible {
  background: rgb(255 255 255 / 20%);
}

.quantity-stepper button:focus-visible {
  outline: 2px solid #111;
  outline-offset: -4px;
}

.featured-product__add {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #dbad20;
  border: 0;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.featured-product__add:hover {
  background: #c99b11;
}

.featured-product__add:active {
  transform: scale(.99);
}

.featured-product__add:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.featured-product__add svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.featured-product__details-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 38px;
  color: #d19e00;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.featured-product__details-link span {
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}

.featured-product__details-link:hover span,
.featured-product__details-link:focus-visible span {
  transform: translateX(4px);
}

.featured-product__details-link:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.store-statistics {
  width: min(1490px, 100%);
  margin: 0 auto;
  padding: 50px 90px 100px;
  background: #f6f6f6;
}

.store-statistics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px 50px;
  align-items: center;
}

.statistic-card {
  padding: 24px 50px 28px;
  color: #111;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 15px;
  box-shadow: 0 8px 10px rgb(0 0 0 / 10%);
  text-align: center;
}

.statistic-card--wide {
  grid-column: 1 / -1;
  padding-top: 23px;
  padding-bottom: 28px;
}

.statistic-card__number {
  margin: 0;
  color: #363636;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
}

.statistic-card h2 {
  margin: 8px 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.statistic-card > p:last-child {
  max-width: 405px;
  margin: 0 auto;
  color: #666;
  font-size: 20px;
  line-height: 1.55;
}

.statistic-card--wide > p:last-child {
  max-width: 390px;
}

.customer-reviews {
  width: min(1490px, 100%);
  margin: 0 auto;
  padding: 50px 90px 100px;
  background: #fff;
}

.customer-reviews__title {
  margin: 0 0 90px;
  color: #dbad20;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 5px 4px rgb(0 0 0 / 18%);
}

.customer-reviews__grid {
  display: grid;
  width: min(1498px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 25px;
}

.customer-review {
  min-height: 292px;
  padding: 34px 28px 30px;
  color: #080808;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  text-align: center;
}

.customer-review h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.customer-review p {
  max-width: 430px;
  margin: 52px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

.customer-review strong {
  font-weight: 700;
}

.faq-section {
  width: min(1490px, 100%);
  margin: 0 auto;
  padding: 50px 90px 100px;
  color: #303030;
  background: #fff;
}

.faq-section__title {
  margin: 0 0 28px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.faq-list {
  border-top: 1px solid #e8e8e8;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #303030;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .28s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-question:hover {
  color: #b78600;
}

.faq-question:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .3s ease, visibility 0s linear .3s;
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  max-width: 540px;
  margin: 4px 58px 38px;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .3s ease, visibility 0s;
}

.service-benefits {
  width: min(1490px, 100%);
  margin: 0 auto;
  padding: 38px 90px 78px;
  color: #111;
  background: #fff;
}

.service-benefits__grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.service-benefit {
  text-align: center;
}

.service-benefit__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-benefit h2 {
  margin: 13px 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.service-benefit p {
  max-width: 350px;
  margin: 0 auto;
  color: #5f5f5f;
  font-size: 18px;
  line-height: 1.55;
}

.service-benefit:nth-child(n+2) p {
  max-width: 386px;
}

@media (max-width: 1200px) {
  .trending-section,
  .best-selling-section {
    padding-right: 32px;
    padding-left: 32px;
  }

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

  .featured-product {
    gap: 40px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .featured-product__purchase {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .store-statistics {
    padding-right: 48px;
    padding-left: 48px;
  }

  .customer-reviews {
    padding-right: 48px;
    padding-left: 48px;
  }

  .faq-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .service-benefits {
    padding-right: 48px;
    padding-left: 48px;
  }

  .store-statistics__grid {
    gap: 48px 34px;
  }

  .customer-reviews__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .category-showcase {
    --category-size: 160px;
    --category-gap: 16px;
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .category-showcase__title {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .category-card__ring img {
    width: 82px;
    height: 82px;
  }

  .category-card__label {
    font-size: 16px;
  }

  .trending-section {
    padding-top: 20px;
    padding-bottom: 72px;
  }

  .trending-section__title {
    font-size: 38px;
  }

  .trending-tabs {
    justify-content: flex-start;
    margin-bottom: 36px;
    padding: 3px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trending-tabs::-webkit-scrollbar {
    display: none;
  }

  .trending-tab {
    min-height: 50px;
    padding: 10px 24px;
    font-size: 16px;
  }

  .best-selling-section {
    padding-top: 20px;
    padding-bottom: 72px;
  }

  .best-selling-section__title {
    margin-bottom: 52px;
    font-size: 38px;
  }

  .featured-product {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .featured-product__details h2 {
    font-size: 30px;
  }

  .store-statistics {
    padding: 48px 32px 64px;
  }

  .store-statistics__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .statistic-card--wide {
    grid-column: auto;
  }

  .customer-reviews {
    padding: 48px 32px 64px;
  }

  .customer-reviews__title {
    margin-bottom: 58px;
    font-size: 39px;
  }

  .customer-review {
    min-height: 270px;
  }

  .customer-review p {
    margin-top: 40px;
  }

  .faq-section {
    padding: 48px 32px 64px;
  }

  .service-benefits {
    padding: 48px 32px 64px;
  }

  .service-benefits__grid {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 640px) {
  #main-content {
    min-height: 0;
  }

  .home-hero {
    height: auto;
    min-height: 0;
  }

  .home-hero__link,
  .home-hero__image {
    height: auto;
  }

  .home-hero__image {
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .category-showcase {
    --category-size: 140px;
    --category-gap: 16px;
    padding: 48px 0 42px;
  }

  .category-showcase__title {
    margin-bottom: 26px;
    font-size: 24px;
  }

  .category-card__ring img {
    width: 70px;
    height: 70px;
  }

  .category-card__label {
    min-height: 44px;
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.45;
  }

  .trending-section {
    padding: 12px 16px 56px;
  }

  .trending-section__title {
    font-size: 32px;
  }

  .trending-tabs {
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .trending-tab {
    min-height: 46px;
    padding: 9px 19px;
    font-size: 15px;
  }

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

  .product-card__content {
    min-height: 140px;
  }

  .best-selling-section {
    padding: 12px 16px 56px;
  }

  .best-selling-section__title {
    margin-bottom: 36px;
    font-size: 32px;
  }

  .featured-product {
    gap: 28px;
    padding: 12px 16px 52px;
  }

  .featured-product__details h2 {
    font-size: 27px;
  }

  .featured-product__price span {
    font-size: 28px;
  }

  .featured-product__price del {
    font-size: 22px;
  }

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

  .quantity-stepper {
    width: 156px;
    margin: 0 auto;
  }

  .store-statistics {
    padding: 36px 16px 48px;
  }

  .store-statistics__grid {
    gap: 20px;
  }

  .statistic-card,
  .statistic-card--wide {
    padding: 25px 24px 28px;
    border-radius: 13px;
  }

  .statistic-card__number {
    font-size: 58px;
  }

  .statistic-card h2 {
    margin-top: 5px;
    margin-bottom: 12px;
    font-size: 21px;
  }

  .statistic-card > p:last-child {
    font-size: 17px;
    line-height: 1.55;
  }

  .customer-reviews {
    padding: 36px 16px 48px;
  }

  .customer-reviews__title {
    margin-bottom: 38px;
    font-size: 33px;
  }

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

  .customer-review {
    min-height: 238px;
    padding: 28px 22px;
    border-radius: 13px;
  }

  .customer-review h3 {
    font-size: 22px;
  }

  .customer-review p {
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-section {
    padding: 36px 16px 48px;
  }

  .faq-section__title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .faq-question {
    min-height: 62px;
    padding: 15px 0;
    font-size: 16px;
  }

  .faq-answer p {
    margin: 4px 14px 28px;
    font-size: 16px;
    text-align: left;
  }

  .service-benefits {
    padding: 36px 16px 48px;
  }

  .service-benefits__grid {
    gap: 38px;
  }

  .service-benefit__icon {
    width: 36px;
    height: 36px;
  }

  .service-benefit h2 {
    margin-top: 11px;
    font-size: 22px;
  }

  .service-benefit p,
  .service-benefit:nth-child(n+2) p {
    max-width: 330px;
    font-size: 16px;
  }
}

.home-reviews {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 52px 50px 68px;
  color: #080808;
  background: #fff;
}

.home-reviews__title {
  margin: 0 0 92px;
  color: #e0ad12;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 5px 4px rgb(0 0 0 / 18%);
}

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

.home-review-card {
  display: flex;
  min-height: 292px;
  padding: 34px 28px 30px;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  text-align: center;
}

.home-review-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.home-review-card p {
  max-width: 430px;
  margin: 52px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .home-reviews {
    padding: 50px 28px 64px;
  }

  .home-reviews__title {
    margin-bottom: 62px;
  }

  .home-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-reviews {
    padding: 44px 16px 54px;
  }

  .home-reviews__title {
    margin-bottom: 42px;
    font-size: 34px;
  }

  .home-reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-review-card {
    min-height: 240px;
    padding: 30px 22px;
  }

  .home-review-card h3 {
    font-size: 22px;
  }

  .home-review-card p {
    margin-top: 38px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .category-marquee.is-ready .category-marquee__track {
    animation: none;
  }

  .category-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .category-card__ring img {
    transition: none;
  }

  .trending-panel,
  .product-card__media img,
  .product-card__wishlist,
  .trending-tab {
    transition: none;
  }

  .featured-product__slide,
  .featured-product__description > button svg,
  .featured-product__add,
  .featured-product__details-link span {
    transition: none;
  }

  .faq-answer,
  .faq-item.is-open .faq-answer,
  .faq-question svg {
    transition: none;
  }

}
