.prosenco-breadcrumb {
  padding: 16px 0;
}
.prosenco-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.prosenco-breadcrumb__item {
  display: flex;
  align-items: center;
}
.prosenco-breadcrumb__item + .prosenco-breadcrumb__item::before {
  content: "/";
  color: #5E5E5E;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 8px;
}
.prosenco-breadcrumb__link {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5E5E5E;
  text-decoration: none;
  transition: color 0.3s ease;
}
.prosenco-breadcrumb__link:hover {
  color: #2A1613;
  text-decoration: underline;
}
.prosenco-breadcrumb__active {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2A1613;
}
@media (min-width: 992px) {
  .prosenco-breadcrumb__list {
    flex-wrap: nowrap;
  }
}

.prosenco-product {
  padding-bottom: 48px;
  font-family: "Inter", sans-serif;
}
.prosenco-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prosenco-product__gallery-main {
  background-color: #FFE9E6;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.prosenco-product__gallery-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.prosenco-product__gallery-thumbs {
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.prosenco-product__thumb {
  flex: 0 0 auto;
  width: 162px;
  height: 162px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  background: #FFE9E6;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.prosenco-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prosenco-product__thumb:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.prosenco-product__thumb.is-active {
  opacity: 1;
  border-color: #B70100;
}
.prosenco-product__info {
  display: flex;
  flex-direction: column;
}
.prosenco-product__title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prosenco-product__title {
  color: #B70100;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.96px;
  line-height: 56px;
  margin: 0;
}
.prosenco-product__subtitle {
  color: #5E5E5E;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 32px;
  margin: 0;
}
.prosenco-product__desc p {
  color: #5F3F3A;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  margin: 0;
}
.prosenco-product__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prosenco-product__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5E5E5E;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.prosenco-product__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #B70100;
}
.prosenco-product__specs {
  background-color: #F9FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}
.prosenco-product__specs-header {
  background-color: #FFF0EE;
  color: #B70100;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 16px;
  border-bottom: 1px solid #E2E8F0;
}
.prosenco-product__specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #E2E8F0;
}
.prosenco-product__specs-row:last-child {
  border-bottom: 0;
}
.prosenco-product__specs-label {
  color: #5E5E5E;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  flex: 1;
}
.prosenco-product__specs-value {
  color: #2A1613;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
  flex: 1;
}
.prosenco-product__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.prosenco-product__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 32px;
  background-color: #B70100;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.prosenco-product__button:hover {
  background-color: #940100;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.prosenco-product__button-icon {
  width: 20px;
  height: 16px;
  flex-shrink: 0;
  fill: #FFFFFF;
}
.prosenco-product__note {
  color: #5E5E5E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 16px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .prosenco-product__thumb {
    width: 120px;
    height: 120px;
  }
}

.product-logistic {
  border-top: 1px solid #E2E8F0;
  padding-top: 48px;
}
.product-logistic__item {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .product-logistic__item {
    margin-bottom: 0;
  }
}
.product-logistic__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #B70100;
  margin-bottom: 16px;
}
.product-logistic__desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #5F3F3A;
  margin-bottom: 0;
}

.product-related {
  padding-top: 48px;
}
.product-related__title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.6px;
  color: #B70100;
  margin-bottom: 32px;
  text-align: left;
}
.product-related__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-related__card:hover {
  box-shadow: 0 12px 30px rgba(42, 22, 19, 0.12);
  transform: translateY(-4px);
}
.product-related__media {
  overflow: hidden;
  aspect-ratio: 394/256;
}
.product-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-related__card:hover .product-related__image {
  transform: scale(1.03);
}
.product-related__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 8px;
  flex-grow: 1;
}
.product-related__category {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B70100;
}
.product-related__name {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  color: #2A1613;
  margin: 0;
}
.product-related__description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-related__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #B70100;
  text-decoration: none;
  padding-top: 8px;
  transition: color 0.25s ease;
}
.product-related__link:hover {
  color: #B70100;
}
.product-related__link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.product-related__link:hover .product-related__link-icon {
  transform: translateX(4px);
}
