/* Category Page */

/* Category Hero */

.category-hero {
  position: relative;
  padding: 0;
  background: var(--color-page);
}

.category-hero__container {
  width: 100%;
  max-width: none;
  min-height: 560px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-page);
}

.category-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-section);
  box-shadow: none;
}

.category-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(245, 246, 247, 1) 0%,
      rgba(245, 246, 247, 0.98) 22%,
      rgba(245, 246, 247, 0.88) 35%,
      rgba(245, 246, 247, 0.56) 50%,
      rgba(245, 246, 247, 0.18) 68%,
      rgba(245, 246, 247, 0) 88%
    );
  pointer-events: none;
}

.category-hero__image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.category-hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--container));
  min-height: 560px;
  margin: 0 auto;
  padding: 74px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.category-hero__breadcrumbs {
  margin-bottom: 34px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.category-hero__breadcrumbs a {
  color: rgba(32, 36, 42, 0.68);
  transition: color 0.2s ease;
}

.category-hero__breadcrumbs a:hover {
  color: var(--color-text);
}

.category-hero__breadcrumbs span:last-child {
  color: var(--color-text);
  font-weight: 700;
}

.category-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-hero__label::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-hero__title {
  max-width: 620px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.category-hero__text {
  max-width: 610px;
  margin-top: 26px;
  color: #4F565D;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
}

.category-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.category-hero__button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.category-hero__button:hover {
  transform: translateY(-1px);
}

.category-hero__button span:last-child {
  font-size: 20px;
  line-height: 1;
}

.category-hero__button--dark {
  min-width: 220px;
  background: var(--color-anthracite);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(32, 36, 42, 0.16);
}

.category-hero__button--dark:hover {
  background: var(--color-anthracite-dark);
  box-shadow: 0 20px 46px rgba(32, 36, 42, 0.22);
}

.category-hero__button--light {
  min-width: 210px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  border-color: rgba(32, 36, 42, 0.24);
  backdrop-filter: blur(10px);
}

.category-hero__button--light:hover {
  background: #ffffff;
  border-color: var(--color-anthracite);
}

/* Category Hero Responsive */

@media (max-width: 1180px) {
  .category-hero__container {
    min-height: 520px;
  }

  .category-hero__visual {
    min-height: 520px;
  }

  .category-hero__image {
    min-height: 520px;
  }

  .category-hero__content {
    min-height: 520px;
  }

  .category-hero__title {
    max-width: 560px;
    font-size: clamp(38px, 5vw, 56px);
  }

  .category-hero__text {
    max-width: 540px;
  }
}

@media (max-width: 960px) {
  .category-hero {
    background: #ffffff;
  }

  .category-hero__container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
  }

  .category-hero__visual {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    min-height: 250px;
    height: 250px;
    border-radius: 0;
  }

  .category-hero__visual::before {
    display: none;
  }

  .category-hero__image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
  }

  .category-hero__content {
    order: 2;
    width: calc(100% - 32px);
    min-height: auto;
    padding: 28px 0 64px;
    display: block;
  }

  .category-hero__breadcrumbs {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .category-hero__label {
    margin-bottom: 14px;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .category-hero__label::after {
    width: 32px;
    height: 1px;
  }

  .category-hero__title {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.06;
  }

  .category-hero__text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .category-hero__actions {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-hero__button {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
  }

  .category-hero__button--light {
    background: #ffffff;
  }
}

@media (max-width: 520px) {
  .category-hero__visual {
    height: 220px;
    min-height: 220px;
  }

  .category-hero__image {
    min-height: 220px;
  }

  .category-hero__content {
    width: calc(100% - 32px);
    padding: 24px 0 56px;
  }

  .category-hero__title {
    font-size: 32px;
  }

  .category-hero__text {
    font-size: 14px;
  }
}





/* Category Technology */

.category-technology {
  position: relative;
  padding: 96px 0 104px;
  background: var(--color-page);
}

.category-technology__container {
  display: grid;
  gap: 44px;
}

.category-technology__head {
  max-width: 920px;
}

.category-technology__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-technology__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-technology__title {
  max-width: 880px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.category-technology__text {
  max-width: 760px;
  margin-top: 24px;
  color: #4F565D;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.category-technology__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-technology__card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.05);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.category-technology__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 62px rgba(32, 36, 42, 0.09);
}

.category-technology__card--accent {
  background:
    linear-gradient(135deg, rgba(58, 63, 68, 0.96), rgba(47, 52, 58, 0.98));
  border-color: rgba(58, 63, 68, 0.28);
  color: #ffffff;
}

.category-technology__card--accent:hover {
  background:
    linear-gradient(135deg, rgba(58, 63, 68, 1), rgba(47, 52, 58, 1));
}

.category-technology__number {
  margin-bottom: 34px;
  color: rgba(58, 63, 68, 0.18);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.category-technology__card--accent .category-technology__number {
  color: rgba(184, 160, 106, 0.42);
}

.category-technology__card-title {
  position: relative;
  margin: 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.category-technology__card--accent .category-technology__card-title {
  color: #ffffff;
}

.category-technology__card-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 15px;
  border-radius: 20px;
  background: var(--color-accent);
}

.category-technology__card-text {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.66;
  font-weight: 500;
}

.category-technology__card--accent .category-technology__card-text {
  color: rgba(255, 255, 255, 0.72);
}

/* Category Technology Responsive */

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

  .category-technology__card {
    min-height: 280px;
  }
}

@media (max-width: 960px) {
  .category-technology {
    padding: 64px 0 76px;
  }

  .category-technology__container {
    gap: 32px;
  }

  .category-technology__eyebrow {
    margin-bottom: 16px;
    gap: 10px;
    font-size: 10px;
  }

  .category-technology__eyebrow::before {
    width: 32px;
    height: 1px;
  }

  .category-technology__title {
    font-size: 36px;
    line-height: 1.06;
  }

  .category-technology__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .category-technology__card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .category-technology__number {
    margin-bottom: 22px;
    font-size: 44px;
  }

  .category-technology__card-title {
    font-size: 20px;
  }

  .category-technology__card-text {
    margin-top: 16px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .category-technology {
    padding: 54px 0 66px;
  }

  .category-technology__title {
    font-size: 31px;
  }

  .category-technology__card {
    padding: 20px;
  }

  .category-technology__card-title {
    font-size: 19px;
  }

  .category-technology__card-text {
    font-size: 13px;
  }
}








/* Category Products */

.category-products {
  position: relative;
  padding: 96px 0 110px;
  background: #ffffff;
}

.category-products__container {
  display: grid;
  gap: 38px;
}

.category-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.category-products__head-content {
  max-width: 820px;
}

.category-products__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-products__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-products__title {
  max-width: 860px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.category-products__text {
  max-width: 660px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.category-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-product-card {
  min-height: 100%;
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.category-product-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(32, 36, 42, 0.11);
}

.category-product-card__image-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: var(--color-section);
}

.category-product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.category-product-card:hover .category-product-card__image {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.04);
}

.category-product-card__content {
  min-height: 245px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.category-product-card__label {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.category-product-card__title {
  margin: 0;
  color: var(--color-text);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.category-product-card__text {
  margin-top: 15px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.category-product-card__more {
  margin-top: auto;
  padding-top: 26px;
  color: var(--color-anthracite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.category-product-card__more span:last-child {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.category-product-card:hover .category-product-card__more span:last-child {
  transform: translateX(4px);
}

/* Category Products Responsive */

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

  .category-product-card__image-wrap {
    height: 230px;
  }
}

@media (max-width: 960px) {
  .category-products {
    padding: 64px 0 76px;
  }

  .category-products__head {
    display: grid;
    gap: 24px;
  }

  .category-products__eyebrow {
    margin-bottom: 16px;
    gap: 10px;
    font-size: 10px;
  }

  .category-products__eyebrow::before {
    width: 32px;
    height: 1px;
  }

  .category-products__title {
    font-size: 36px;
    line-height: 1.06;
  }

  .category-products__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .category-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-product-card {
    border-radius: 20px;
  }

  .category-product-card__image-wrap {
    height: 230px;
  }

  .category-product-card__content {
    min-height: auto;
    padding: 22px;
  }

  .category-product-card__title {
    font-size: 24px;
  }

  .category-product-card__text {
    font-size: 14px;
  }

  .category-product-card__more {
    padding-top: 24px;
  }
}

@media (max-width: 520px) {
  .category-products {
    padding: 54px 0 66px;
  }

  .category-products__title {
    font-size: 32px;
  }

  .category-product-card__image-wrap {
    height: 210px;
  }

  .category-product-card__content {
    padding: 20px;
  }

  .category-product-card__title {
    font-size: 22px;
  }

  .category-product-card__text {
    font-size: 13px;
  }
}



/* Category Products Width Fix */

.category-products__head {
  max-width: 920px;
}

.category-products__grid {
  max-width: 1120px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-product-card {
  max-width: none;
}

@media (max-width: 1180px) {
  .category-products__grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .category-products__grid {
    grid-template-columns: 1fr;
  }
}





/* Category Products Desktop Grid Fix */

@media (min-width: 1181px) {
  .category-products__grid {
    max-width: none;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-product-card__image-wrap {
    height: 230px;
  }

  .category-product-card__content {
    min-height: 250px;
    padding: 24px;
  }

  .category-product-card__title {
    font-size: 23px;
  }

  .category-product-card__text {
    font-size: 13px;
    line-height: 1.6;
  }
}




/* Category Benefits */

.category-benefits {
  position: relative;
  padding: 96px 0 110px;
  background: var(--color-page);
}

.category-benefits__container {
  display: grid;
  gap: 38px;
}

.category-benefits__head {
  max-width: 900px;
}

.category-benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-benefits__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-benefits__title {
  max-width: 900px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.category-benefits__text {
  max-width: 700px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.category-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-benefits__card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.05);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.category-benefits__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 62px rgba(32, 36, 42, 0.09);
}

.category-benefits__card-top {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.category-benefits__number {
  color: rgba(58, 63, 68, 0.18);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.category-benefits__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(184, 160, 106, 0.10);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.category-benefits__card-title {
  position: relative;
  margin: 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.category-benefits__card-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 15px;
  border-radius: 20px;
  background: var(--color-accent);
}

.category-benefits__card-text {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.66;
  font-weight: 500;
}

.category-benefits__banner {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-anthracite);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(32, 36, 42, 0.12);
}

.category-benefits__banner-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.category-benefits__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(18, 22, 26, 0.92) 0%,
      rgba(18, 22, 26, 0.74) 34%,
      rgba(18, 22, 26, 0.22) 68%,
      rgba(18, 22, 26, 0.04) 100%
    );
  pointer-events: none;
}

.category-benefits__banner-content {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 430px;
}

.category-benefits__banner-content::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--color-accent);
}

.category-benefits__banner-title {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.category-benefits__banner-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

/* Category Benefits Responsive */

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

  .category-benefits__card {
    min-height: 260px;
  }
}

@media (max-width: 960px) {
  .category-benefits {
    padding: 64px 0 76px;
  }

  .category-benefits__container {
    gap: 32px;
  }

  .category-benefits__eyebrow {
    margin-bottom: 16px;
    gap: 10px;
    font-size: 10px;
  }

  .category-benefits__eyebrow::before {
    width: 32px;
    height: 1px;
  }

  .category-benefits__title {
    font-size: 36px;
    line-height: 1.06;
  }

  .category-benefits__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .category-benefits__card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .category-benefits__card-top {
    margin-bottom: 22px;
  }

  .category-benefits__number {
    font-size: 44px;
  }

  .category-benefits__icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .category-benefits__card-title {
    font-size: 20px;
  }

  .category-benefits__card-text {
    margin-top: 16px;
    font-size: 14px;
  }

  .category-benefits__banner {
    min-height: 300px;
    border-radius: 20px;
  }

  .category-benefits__banner-image {
    min-height: 300px;
  }

  .category-benefits__banner-content {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: none;
  }

  .category-benefits__banner-title {
    font-size: 26px;
  }

  .category-benefits__banner-text {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .category-benefits {
    padding: 54px 0 66px;
  }

  .category-benefits__title {
    font-size: 31px;
  }

  .category-benefits__card {
    padding: 20px;
  }

  .category-benefits__card-title {
    font-size: 19px;
  }

  .category-benefits__card-text {
    font-size: 13px;
  }

  .category-benefits__banner {
    min-height: 280px;
  }

  .category-benefits__banner-image {
    min-height: 280px;
  }

  .category-benefits__banner-title {
    font-size: 24px;
  }
}



/* Category Benefits Compact Fix */

.category-benefits {
  padding: 82px 0 92px;
}

.category-benefits__container {
  gap: 28px;
}

.category-benefits__head {
  max-width: 820px;
}

.category-benefits__title {
  max-width: 820px;
  font-size: clamp(34px, 3.4vw, 52px);
}

.category-benefits__text {
  max-width: 680px;
  margin-top: 18px;
}

.category-benefits__grid {
  gap: 16px;
}

.category-benefits__card {
  min-height: 260px;
  padding: 26px;
  border-radius: 20px;
}

.category-benefits__card-top {
  margin-bottom: 26px;
}

.category-benefits__number {
  font-size: 46px;
}

.category-benefits__icon {
  width: 54px;
  height: 54px;
  font-size: 21px;
}

.category-benefits__card-title {
  font-size: 20px;
}

.category-benefits__card-text {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.62;
}

.category-benefits__banner {
  min-height: 280px;
  height: 280px;
  border-radius: 20px;
}

.category-benefits__banner-image {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.category-benefits__banner-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(18, 22, 26, 0.92) 0%,
      rgba(18, 22, 26, 0.72) 30%,
      rgba(18, 22, 26, 0.24) 62%,
      rgba(18, 22, 26, 0.04) 100%
    );
}

.category-benefits__banner-content {
  left: 28px;
  bottom: 28px;
  max-width: 410px;
}

.category-benefits__banner-content::before {
  margin-bottom: 20px;
}

.category-benefits__banner-title {
  font-size: 29px;
}

.category-benefits__banner-text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 960px) {
  .category-benefits {
    padding: 64px 0 76px;
  }

  .category-benefits__banner {
    height: auto;
    min-height: 300px;
  }

  .category-benefits__banner-image {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .category-benefits {
    padding: 54px 0 66px;
  }

  .category-benefits__banner {
    min-height: 280px;
  }

  .category-benefits__banner-image {
    min-height: 280px;
  }
}







/* Category FAQ */

.category-faq {
  position: relative;
  padding: 96px 0 110px;
  background: var(--color-page);
}

.category-faq__container {
  display: grid;
  gap: 38px;
}

.category-faq__head {
  max-width: 900px;
}

.category-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-faq__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-faq__title {
  max-width: 900px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.category-faq__text {
  max-width: 720px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

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

.category-faq__item {
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.045);
  overflow: hidden;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-faq__item.is-open {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(211, 214, 218, 0.96);
  box-shadow: 0 24px 62px rgba(32, 36, 42, 0.08);
}

.category-faq__question {
  width: 100%;
  min-height: 82px;
  padding: 0 28px;
  border: none;
  background: transparent;
  color: var(--color-text);
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  gap: 24px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.category-faq__number {
  color: var(--color-accent);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.category-faq__question-text {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.category-faq__toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(58, 63, 68, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.category-faq__toggle span {
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 20px;
  background: var(--color-anthracite);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.category-faq__toggle span:last-child {
  transform: rotate(90deg);
}

.category-faq__item.is-open .category-faq__toggle {
  background: rgba(184, 160, 106, 0.12);
  transform: rotate(180deg);
}

.category-faq__item.is-open .category-faq__toggle span:last-child {
  opacity: 0;
}

.category-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.category-faq__answer-inner {
  padding: 0 28px 30px 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: start;
}

.category-faq__answer-text {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.category-faq__answer-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-section);
}

.category-faq__answer-image {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.category-faq__bottom {
  min-height: 118px;
  padding: 26px 28px;
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.category-faq__bottom-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.category-faq__bottom-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(184, 160, 106, 0.46);
  border-radius: 50%;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.category-faq__bottom-title {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.category-faq__bottom-text {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.category-faq__button {
  min-height: 56px;
  min-width: 220px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--color-anthracite);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(32, 36, 42, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.category-faq__button:hover {
  transform: translateY(-1px);
  background: var(--color-anthracite-dark);
  box-shadow: 0 20px 46px rgba(32, 36, 42, 0.22);
}

/* Category FAQ Responsive */

@media (max-width: 960px) {
  .category-faq {
    padding: 64px 0 76px;
  }

  .category-faq__container {
    gap: 32px;
  }

  .category-faq__eyebrow {
    margin-bottom: 16px;
    gap: 10px;
    font-size: 10px;
  }

  .category-faq__eyebrow::before {
    width: 32px;
    height: 1px;
  }

  .category-faq__title {
    font-size: 36px;
    line-height: 1.06;
  }

  .category-faq__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .category-faq__question {
    min-height: 74px;
    padding: 0 18px;
    grid-template-columns: 38px 1fr 38px;
    gap: 14px;
  }

  .category-faq__number {
    font-size: 17px;
  }

  .category-faq__question-text {
    font-size: 16px;
  }

  .category-faq__toggle {
    width: 38px;
    height: 38px;
  }

  .category-faq__answer-inner {
    padding: 0 18px 22px 70px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-faq__answer-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .category-faq__answer-image {
    height: 190px;
  }

  .category-faq__bottom {
    padding: 22px;
    border-radius: 20px;
    display: grid;
    gap: 22px;
  }

  .category-faq__bottom-left {
    align-items: flex-start;
  }

  .category-faq__button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .category-faq {
    padding: 54px 0 66px;
  }

  .category-faq__title {
    font-size: 31px;
  }

  .category-faq__question {
    min-height: 70px;
    padding: 0 16px;
    grid-template-columns: 34px 1fr 34px;
    gap: 12px;
  }

  .category-faq__number {
    font-size: 15px;
  }

  .category-faq__question-text {
    font-size: 15px;
  }

  .category-faq__toggle {
    width: 34px;
    height: 34px;
  }

  .category-faq__answer-inner {
    padding: 0 16px 20px;
  }

  .category-faq__bottom-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .category-faq__bottom-title {
    font-size: 16px;
  }
}




/* FAQ Bottom Mobile Fix */

@media (max-width: 520px) {
  .category-faq__bottom {
    padding: 20px;
    gap: 18px;
  }

  .category-faq__bottom-left {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
  }

  .category-faq__bottom-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    flex: 0 0 42px;
  }

  .category-faq__bottom-title {
    font-size: 17px;
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .category-faq__bottom-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .category-faq__button {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
  }
}




/* Category CTA */

.category-cta {
  position: relative;
  padding: 0 0 110px;
  background: var(--color-page);
}

.category-cta__card {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-anthracite);
  color: #ffffff;
  box-shadow: 0 26px 80px rgba(32, 36, 42, 0.16);
  isolation: isolate;
}

.category-cta__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.category-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 160, 106, 0.12), rgba(184, 160, 106, 0) 34%),
    linear-gradient(
      90deg,
      rgba(18, 22, 26, 0.96) 0%,
      rgba(18, 22, 26, 0.88) 34%,
      rgba(18, 22, 26, 0.58) 58%,
      rgba(18, 22, 26, 0.20) 84%,
      rgba(18, 22, 26, 0.08) 100%
    );
  pointer-events: none;
}

.category-cta__content {
  max-width: 720px;
  min-height: 520px;
  padding: 70px 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-cta__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.category-cta__title {
  max-width: 660px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.category-cta__title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 28px;
  border-radius: 20px;
  background: var(--color-accent);
}

.category-cta__text {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.category-cta__bottom {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.category-cta__button {
  min-height: 64px;
  min-width: 260px;
  padding: 0 28px;
  border-radius: 13px;
  background: #ffffff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.category-cta__button:hover {
  transform: translateY(-1px);
  background: #f5f6f7;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.category-cta__button span:last-child {
  font-size: 24px;
  line-height: 1;
}

.category-cta__note {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.category-cta__note-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-cta__note-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category CTA Responsive */

@media (max-width: 960px) {
  .category-cta {
    padding: 0 0 76px;
  }

  .category-cta__card {
    min-height: 460px;
    border-radius: 22px;
  }

  .category-cta__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 22, 26, 0.88) 0%,
        rgba(18, 22, 26, 0.78) 44%,
        rgba(18, 22, 26, 0.52) 100%
      );
  }

  .category-cta__image {
    object-position: center;
  }

  .category-cta__content {
    max-width: none;
    min-height: 460px;
    padding: 42px 28px;
  }

  .category-cta__eyebrow {
    margin-bottom: 20px;
    gap: 10px;
    font-size: 10px;
  }

  .category-cta__eyebrow::before {
    width: 32px;
    height: 1px;
  }

  .category-cta__title {
    font-size: 40px;
    line-height: 1.06;
  }

  .category-cta__title::after {
    margin-top: 22px;
  }

  .category-cta__text {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .category-cta__bottom {
    margin-top: 32px;
    display: grid;
    gap: 22px;
  }

  .category-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border-radius: 14px;
  }

  .category-cta__note {
    max-width: none;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .category-cta {
    padding: 0 0 66px;
  }

  .category-cta__card {
    min-height: 430px;
    border-radius: 20px;
  }

  .category-cta__content {
    min-height: 430px;
    padding: 34px 22px;
  }

  .category-cta__title {
    font-size: 33px;
  }

  .category-cta__text {
    font-size: 14px;
  }

  .category-cta__note {
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
  }

  .category-cta__note-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .category-cta__note-icon svg {
    width: 30px;
    height: 30px;
  }
}



/* Category Products Background Fix */

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





/* Product Card Tech Specs */

.category-product-card__specs {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(211, 214, 218, 0.82);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.category-product-card__spec {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
}

.category-product-card__spec-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(58, 63, 68, 0.06);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.category-product-card__spec-label {
  display: block;
  color: rgba(111, 115, 119, 0.86);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.category-product-card__spec-value {
  display: block;
  margin-top: 3px;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.category-product-card__content {
  min-height: 340px;
}

@media (min-width: 1181px) {
  .category-product-card__content {
    min-height: 350px;
  }

  .category-product-card__specs {
    gap: 13px 10px;
  }

  .category-product-card__spec-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .category-product-card__spec-label {
    font-size: 9px;
  }

  .category-product-card__spec-value {
    font-size: 11px;
  }
}

@media (max-width: 960px) {
  .category-product-card__content {
    min-height: auto;
  }

  .category-product-card__specs {
    margin-top: 20px;
    padding-top: 18px;
  }
}

@media (max-width: 520px) {
  .category-product-card__specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-product-card__spec {
    grid-template-columns: 32px 1fr;
  }

  .category-product-card__spec-icon {
    width: 32px;
    height: 32px;
  }

  .category-product-card__spec-label {
    font-size: 10px;
  }

  .category-product-card__spec-value {
    font-size: 12px;
  }
}



/* Category Product Card Tech Premium */

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

.category-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(208, 212, 217, 0.92);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(30, 36, 42, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 160, 106, 0.34);
  box-shadow: 0 24px 58px rgba(30, 36, 42, 0.09);
}

.category-product-card__image-wrap {
  padding: 34px 34px 18px;
  background: transparent;
}

.category-product-card__image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.category-product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0 22px 20px;
  min-height: auto;
}

.category-product-card__label {
  color: var(--color-accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.category-product-card__title {
  margin: 12px 0 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.category-product-card__specs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-product-card__spec {
  min-height: 78px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(220, 223, 227, 0.95);
  border-radius: 16px;
  background: rgba(246, 247, 248, 0.92);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.category-product-card__spec-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(184, 160, 106, 0.12);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.category-product-card__spec-text {
  display: block;
  min-width: 0;
}

.category-product-card__spec-label {
  display: block;
  color: rgba(113, 118, 124, 0.92);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.category-product-card__spec-value {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.category-product-card__more {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 220, 224, 0.9);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.category-product-card__more span:last-child {
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 1180px) {
  .category-product-card__image-wrap {
    padding: 28px 26px 16px;
  }

  .category-product-card__image {
    height: 180px;
  }

  .category-product-card__title {
    font-size: 20px;
  }

  .category-product-card__spec {
    min-height: 74px;
    padding: 11px;
  }

  .category-product-card__spec-value {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .category-product-card__content {
    padding: 0 18px 18px;
  }

  .category-product-card__image-wrap {
    padding: 24px 20px 14px;
  }

  .category-product-card__image {
    height: 170px;
  }

  .category-product-card__title {
    font-size: 19px;
  }

  .category-product-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .category-product-card__spec {
    min-height: 72px;
    padding: 10px;
    border-radius: 14px;
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .category-product-card__spec-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .category-product-card__spec-label {
    font-size: 9px;
  }

  .category-product-card__spec-value {
    margin-top: 5px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .category-product-card {
    border-radius: 22px;
  }

  .category-product-card__image-wrap {
    padding: 20px 18px 12px;
  }

  .category-product-card__image {
    height: 156px;
  }

  .category-product-card__content {
    padding: 0 16px 16px;
  }

  .category-product-card__title {
    font-size: 18px;
  }

  .category-product-card__specs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .category-product-card__spec {
    min-height: auto;
  }

  .category-product-card__more {
    margin-top: 16px;
    padding-top: 14px;
  }
}



/* Product Card Rollback */

.category-product-card {
  min-height: 100%;
  border: 1px solid rgba(211, 214, 218, 0.86);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(32, 36, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.category-product-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(32, 36, 42, 0.11);
}

.category-product-card__image-wrap {
  position: relative;
  height: 230px;
  padding: 0;
  overflow: hidden;
  background: var(--color-section);
}

.category-product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.category-product-card:hover .category-product-card__image {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.04);
}

.category-product-card__content {
  min-height: 350px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.category-product-card__label {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.category-product-card__title {
  margin: 0;
  color: var(--color-text);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.category-product-card__text {
  margin-top: 15px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.category-product-card__specs {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(211, 214, 218, 0.82);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 10px;
}

.category-product-card__spec {
  min-width: 0;
  padding: 0;
  min-height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
}

.category-product-card__spec-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(58, 63, 68, 0.06);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.category-product-card__spec-label {
  display: block;
  color: rgba(111, 115, 119, 0.86);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.category-product-card__spec-value {
  display: block;
  margin-top: 3px;
  color: var(--color-text);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.category-product-card__more {
  margin-top: auto;
  padding-top: 26px;
  border-top: none;
  color: var(--color-anthracite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.category-product-card__more span:last-child {
  color: var(--color-anthracite);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.category-product-card:hover .category-product-card__more span:last-child {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .category-product-card {
    border-radius: 20px;
  }

  .category-product-card__image-wrap {
    height: 230px;
  }

  .category-product-card__content {
    min-height: auto;
    padding: 22px;
  }

  .category-product-card__title {
    font-size: 24px;
  }

  .category-product-card__text {
    font-size: 14px;
  }

  .category-product-card__specs {
    margin-top: 20px;
    padding-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-product-card__more {
    padding-top: 24px;
  }
}

@media (max-width: 520px) {
  .category-product-card__image-wrap {
    height: 210px;
  }

  .category-product-card__content {
    padding: 20px;
  }

  .category-product-card__title {
    font-size: 22px;
  }

  .category-product-card__text {
    font-size: 13px;
  }

  .category-product-card__specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-product-card__spec {
    grid-template-columns: 32px 1fr;
  }

  .category-product-card__spec-icon {
    width: 32px;
    height: 32px;
  }

  .category-product-card__spec-label {
    font-size: 10px;
  }

  .category-product-card__spec-value {
    font-size: 12px;
  }
}


/* Category Product Card Price */

.category-product-card__price {
  width: fit-content;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 13px;
  background: rgba(184, 160, 106, 0.09);
  border: 1px solid rgba(184, 160, 106, 0.2);
}

.category-product-card__price-label {
  display: block;
  color: rgba(111, 115, 119, 0.86);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
}

.category-product-card__price-value {
  display: block;
  margin-top: 3px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (max-width: 520px) {
  .category-product-card__price {
    margin-top: 14px;
    padding: 10px 13px;
  }

  .category-product-card__price-value {
    font-size: 13px;
  }
}


/* =========================================================
   Category Product Cards — 2 columns wide compact layout
   ========================================================= */

@media (min-width: 961px) {
  .category-products__grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .category-product-card {
    min-height: 360px !important;
    display: grid !important;
    grid-template-columns: 42% 58% !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .category-product-card__image-wrap {
    height: 100% !important;
    min-height: 360px !important;
    padding: 22px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .category-product-card__image {
    width: 100% !important;
    height: 100% !important;
    max-height: 300px !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  .category-product-card:hover .category-product-card__image {
    transform: scale(1.03) !important;
  }

  .category-product-card__content {
    min-height: 360px !important;
    padding: 28px 28px 24px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card__label {
    margin-bottom: 12px !important;
    font-size: 10px !important;
  }

  .category-product-card__title {
    font-size: 26px !important;
    line-height: 1.08 !important;
  }

  .category-product-card__text {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .category-product-card__price {
    margin-top: 14px !important;
    padding: 9px 13px !important;
  }

  .category-product-card__specs {
    margin-top: 18px !important;
    padding-top: 18px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 14px !important;
  }

  .category-product-card__spec {
    grid-template-columns: 28px 1fr !important;
    gap: 9px !important;
  }

  .category-product-card__spec-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .category-product-card__spec-label {
    font-size: 9px !important;
  }

  .category-product-card__spec-value {
    font-size: 12px !important;
    line-height: 1.22 !important;
  }

  .category-product-card__more {
    margin-top: auto !important;
    padding-top: 20px !important;
  }
}

/* Tablet */
@media (max-width: 1180px) and (min-width: 961px) {
  .category-product-card {
    grid-template-columns: 40% 60% !important;
    min-height: 350px !important;
  }

  .category-product-card__image-wrap {
    min-height: 350px !important;
    padding: 18px !important;
  }

  .category-product-card__content {
    min-height: 350px !important;
    padding: 24px !important;
  }

  .category-product-card__title {
    font-size: 24px !important;
  }

  .category-product-card__text {
    font-size: 13px !important;
  }
}

/* Mobile keeps vertical cards */
@media (max-width: 960px) {
  .category-products__grid {
    grid-template-columns: 1fr !important;
  }

  .category-product-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card__image-wrap {
    height: 230px !important;
    min-height: 230px !important;
    padding: 18px !important;
    background: #ffffff !important;
  }

  .category-product-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .category-product-card__content {
    min-height: auto !important;
  }
}

@media (max-width: 520px) {
  .category-product-card__image-wrap {
    height: 210px !important;
    min-height: 210px !important;
  }
}


/* =========================================================
   Category Product Cards — final wide compact layout
   ========================================================= */

@media (min-width: 961px) {
  .category-products__grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .category-product-card {
    min-height: 430px !important;
    display: grid !important;
    grid-template-columns: 44% 56% !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }

  .category-product-card__image-wrap {
    height: 100% !important;
    min-height: 430px !important;
    padding: 30px 28px 26px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .category-product-card__image {
    width: 100% !important;
    height: auto !important;
    max-height: 285px !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
  }

  .category-product-card:hover .category-product-card__image {
    transform: scale(1.035) !important;
  }

  .category-product-card__content {
    min-height: 430px !important;
    padding: 28px 30px 24px 26px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card__label {
    margin-bottom: 12px !important;
    font-size: 10px !important;
  }

  .category-product-card__title {
    font-size: 27px !important;
    line-height: 1.08 !important;
  }

  .category-product-card__text {
    margin-top: 13px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .category-product-card__price {
    margin-top: 15px !important;
    padding: 10px 14px !important;
  }

  .category-product-card__price-label {
    font-size: 9px !important;
  }

  .category-product-card__price-value {
    font-size: 15px !important;
  }

  .category-product-card__specs {
    margin-top: auto !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(211, 214, 218, 0.82) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 18px !important;
  }

  .category-product-card__spec {
    grid-template-columns: 34px 1fr !important;
    gap: 11px !important;
    align-items: center !important;
  }

  .category-product-card__spec-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }

  .category-product-card__spec-label {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  .category-product-card__spec-value {
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  .category-product-card__more {
    margin-top: 24px !important;
    padding-top: 0 !important;
    border-top: none !important;
    font-size: 15px !important;
  }
}

/* Планшет */
@media (max-width: 1180px) and (min-width: 961px) {
  .category-product-card {
    min-height: 420px !important;
    grid-template-columns: 42% 58% !important;
  }

  .category-product-card__image-wrap {
    min-height: 420px !important;
    padding: 28px 22px !important;
  }

  .category-product-card__image {
    max-height: 260px !important;
  }

  .category-product-card__content {
    min-height: 420px !important;
    padding: 26px 24px 22px !important;
  }

  .category-product-card__title {
    font-size: 25px !important;
  }

  .category-product-card__text {
    font-size: 13px !important;
  }

  .category-product-card__specs {
    gap: 14px 14px !important;
  }

  .category-product-card__spec-value {
    font-size: 12px !important;
  }
}

/* Мобильная версия — обычная вертикальная карточка */
@media (max-width: 960px) {
  .category-products__grid {
    grid-template-columns: 1fr !important;
  }

  .category-product-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card__image-wrap {
    height: 240px !important;
    min-height: 240px !important;
    padding: 20px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .category-product-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .category-product-card__content {
    min-height: auto !important;
  }
}

@media (max-width: 520px) {
  .category-product-card__image-wrap {
    height: 220px !important;
    min-height: 220px !important;
  }
}


/* =========================================================
   Category Product Cards — wide layout with bottom specs
   ========================================================= */

@media (min-width: 961px) {
  .category-products__grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .category-product-card--wide {
    min-height: 390px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 43% 57% !important;
    grid-template-rows: auto auto auto !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .category-product-card--wide .category-product-card__image-wrap {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    height: 250px !important;
    min-height: 250px !important;
    padding: 22px 20px 8px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }

  .category-product-card--wide .category-product-card__image {
    width: 118% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    transform: scale(1.12) !important;
  }

  .category-product-card--wide:hover .category-product-card__image {
    transform: scale(1.17) !important;
  }

  .category-product-card--wide .category-product-card__content {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    min-height: 250px !important;
    padding: 28px 30px 18px 24px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card--wide .category-product-card__label {
    margin-bottom: 12px !important;
    font-size: 10px !important;
  }

  .category-product-card--wide .category-product-card__title {
    font-size: 27px !important;
    line-height: 1.08 !important;
  }

  .category-product-card--wide .category-product-card__text {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .category-product-card--wide .category-product-card__price {
    margin-top: 15px !important;
  }

  .category-product-card--wide .category-product-card__specs {
    grid-column: 1 / -1 !important;
    grid-row: 2 / 3 !important;
    margin: 0 !important;
    padding: 20px 28px 18px !important;
    border-top: 1px solid rgba(211, 214, 218, 0.82) !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    background: rgba(255, 255, 255, 0.48) !important;
  }

  .category-product-card--wide .category-product-card__spec {
    min-height: 58px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 11px !important;
    align-items: center !important;
  }

  .category-product-card--wide .category-product-card__spec-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    background: rgba(58, 63, 68, 0.06) !important;
  }

  .category-product-card--wide .category-product-card__spec-label {
    font-size: 10px !important;
    line-height: 1.2 !important;
    color: rgba(111, 115, 119, 0.86) !important;
  }

  .category-product-card--wide .category-product-card__spec-value {
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  .category-product-card--wide .category-product-card__more {
    grid-column: 1 / -1 !important;
    grid-row: 3 / 4 !important;
    margin: 0 !important;
    padding: 18px 28px 24px !important;
    border-top: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 15px !important;
  }
}

/* Планшет */
@media (max-width: 1180px) and (min-width: 961px) {
  .category-product-card--wide {
    grid-template-columns: 40% 60% !important;
  }

  .category-product-card--wide .category-product-card__image-wrap {
    height: 240px !important;
    min-height: 240px !important;
  }

  .category-product-card--wide .category-product-card__content {
    min-height: 240px !important;
    padding: 26px 24px 16px !important;
  }

  .category-product-card--wide .category-product-card__title {
    font-size: 25px !important;
  }

  .category-product-card--wide .category-product-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
  }
}

/* Мобильная версия */
@media (max-width: 960px) {
  .category-products__grid {
    grid-template-columns: 1fr !important;
  }

  .category-product-card--wide {
    display: flex !important;
    flex-direction: column !important;
  }

  .category-product-card--wide .category-product-card__image-wrap {
    height: 240px !important;
    min-height: 240px !important;
    padding: 20px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .category-product-card--wide .category-product-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .category-product-card--wide .category-product-card__content {
    min-height: auto !important;
    padding: 22px !important;
  }

  .category-product-card--wide .category-product-card__specs {
    margin: 0 !important;
    padding: 20px 22px 0 !important;
    border-top: 1px solid rgba(211, 214, 218, 0.82) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .category-product-card--wide .category-product-card__more {
    padding: 24px 22px 22px !important;
  }
}

@media (max-width: 520px) {
  .category-product-card--wide .category-product-card__image-wrap {
    height: 220px !important;
    min-height: 220px !important;
  }

  .category-product-card--wide .category-product-card__specs {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}


/* =========================================================
   Category Product Cards — bottom price + more link
   ========================================================= */

@media (min-width: 961px) {
  .category-product-card--wide .category-product-card__content {
    padding-bottom: 12px !important;
  }

  .category-product-card--wide .category-product-card__price {
    margin-top: 0 !important;
  }

  .category-product-card--wide .category-product-card__bottom {
    grid-column: 1 / -1 !important;
    grid-row: 3 / 4 !important;
    padding: 0 28px 24px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 24px !important;
  }

  .category-product-card--wide .category-product-card__more {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    color: var(--color-text) !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  .category-product-card--wide .category-product-card__more span:last-child {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(58, 63, 68, 0.06) !important;
    color: var(--color-anthracite) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .category-product-card--wide:hover .category-product-card__more span:last-child {
    transform: translateX(3px) !important;
    background: rgba(184, 160, 106, 0.13) !important;
    color: var(--color-accent) !important;
  }
}

@media (max-width: 960px) {
  .category-product-card--wide .category-product-card__bottom {
    padding: 22px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
  }

  .category-product-card--wide .category-product-card__price {
    margin-top: 0 !important;
  }

  .category-product-card--wide .category-product-card__more {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
  }
}

@media (max-width: 520px) {
  .category-product-card--wide .category-product-card__bottom {
    display: grid !important;
    gap: 18px !important;
  }

  .category-product-card--wide .category-product-card__more {
    width: 100% !important;
    justify-content: space-between !important;
  }
}


/* =========================================================
   Category Product Cards — specs no overlap + bottom swap
   ========================================================= */

@media (min-width: 961px) {
  .category-product-card--wide .category-product-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 28px !important;
    padding: 22px 28px 18px !important;
  }

  .category-product-card--wide .category-product-card__spec {
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .category-product-card--wide .category-product-card__spec-icon {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  .category-product-card--wide .category-product-card__spec-label,
  .category-product-card--wide .category-product-card__spec-value {
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .category-product-card--wide .category-product-card__spec-label {
    font-size: 10px !important;
  }

  .category-product-card--wide .category-product-card__spec-value {
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  .category-product-card--wide .category-product-card__bottom {
    padding: 0 28px 24px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 24px !important;
  }

  .category-product-card--wide .category-product-card__more {
    order: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .category-product-card--wide .category-product-card__price {
    order: 2 !important;
    margin: 0 !important;
  }
}

@media (max-width: 960px) {
  .category-product-card--wide .category-product-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
  }

  .category-product-card--wide .category-product-card__spec {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 11px !important;
  }

  .category-product-card--wide .category-product-card__bottom {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
  }

  .category-product-card--wide .category-product-card__more {
    order: 1 !important;
  }

  .category-product-card--wide .category-product-card__price {
    order: 2 !important;
  }
}

@media (max-width: 520px) {
  .category-product-card--wide .category-product-card__specs {
    grid-template-columns: 1fr !important;
  }

  .category-product-card--wide .category-product-card__bottom {
    display: grid !important;
    gap: 18px !important;
  }

  .category-product-card--wide .category-product-card__more {
    order: 1 !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  .category-product-card--wide .category-product-card__price {
    order: 2 !important;
  }
}

/* =========================================================
   Category Product Cards — align image and content top
   ========================================================= */

@media (min-width: 961px) {
  .category-product-card--wide .category-product-card__image-wrap {
    padding: 30px 28px 18px !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .category-product-card--wide .category-product-card__image {
    object-position: center top !important;
    transform: scale(1.08) !important;
    transform-origin: center top !important;
  }

  .category-product-card--wide:hover .category-product-card__image {
    transform: scale(1.12) !important;
  }

  .category-product-card--wide .category-product-card__content {
    padding-top: 30px !important;
  }
}

/* Category Product Cards — reduce top empty space */

@media (min-width: 961px) {
  .category-product-card--wide .category-product-card__image-wrap {
    height: 220px !important;
    min-height: 220px !important;
    padding: 26px 26px 10px !important;
  }

  .category-product-card--wide .category-product-card__content {
    min-height: 220px !important;
    padding-top: 28px !important;
    padding-bottom: 10px !important;
  }

  .category-product-card--wide .category-product-card__image {
    transform: scale(1.12) !important;
  }

  .category-product-card--wide:hover .category-product-card__image {
    transform: scale(1.16) !important;
  }
}


/* Category Product Cards — price left, more right */

@media (min-width: 961px) {
  .category-product-card--wide .category-product-card__bottom {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 24px !important;
  }

  .category-product-card--wide .category-product-card__price {
    order: 1 !important;
    margin: 0 !important;
  }

  .category-product-card--wide .category-product-card__more {
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
  }
}

@media (max-width: 960px) {
  .category-product-card--wide .category-product-card__price {
    order: 1 !important;
  }

  .category-product-card--wide .category-product-card__more {
    order: 2 !important;
  }
}

@media (max-width: 520px) {
  .category-product-card--wide .category-product-card__bottom {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }

  .category-product-card--wide .category-product-card__more {
    width: auto !important;
    justify-content: flex-end !important;
  }
}