.single-product .product-warranty {
  margin: 18px 0 24px;
}

.single-product .product-warranty__card {
  background-color: #f6fafe;
  border: 1px solid #c1d4e6;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(10, 37, 65, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.single-product .product-warranty__card:hover {
  box-shadow: 0 10px 28px rgba(10, 37, 65, 0.12);
  transform: translateY(-2px);
}

.single-product .product-warranty__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.single-product .product-warranty__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(136deg, #0a2541 0%, #0a467e 50%, #1e7dc1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product .product-warranty__icon-svg {
  width: 21px;
  height: 25px;
  display: block;
}

.single-product .product-warranty__content {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-product .product-warranty__text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-product .product-warranty__headline {
  color: #132e47;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.single-product .product-warranty__description {
  color: #667989;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.single-product .product-warranty__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background-color: #fff7e8;
  border: 1px solid #f0d3a1;
  border-radius: 10px;
  color: #614414;
  padding: 10px 12px;
}

.single-product .product-warranty__notice-icon {
  flex: 0 0 auto;
  color: #bd7216;
  line-height: 0;
  margin-top: 1px;
}

.single-product .product-warranty__notice p {
  color: inherit;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.single-product .product-warranty__link {
  width: fit-content;
  color: #014fa0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.single-product .product-warranty__link:hover {
  color: #1279d6;
  opacity: 0.9;
}

@media (max-width: 560px) {
  .single-product .product-warranty__card {
    border-radius: 14px;
    padding: 16px;
  }

  .single-product .product-warranty__inner {
    gap: 12px;
  }

  .single-product .product-warranty__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .single-product .product-warranty__headline {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .single-product .product-warranty__inner {
    flex-direction: column;
  }

  .single-product .product-warranty__description,
  .single-product .product-warranty__link {
    font-size: 13px;
  }
}
