@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 360px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.stars-component {
  display: flex;
  align-items: center;
  gap: 1px;
}
.stars-component img {
  width: 12px;
  height: 11px;
  min-width: 12px;
  min-height: 11px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
}

.header {
  background-color: #262a31;
  padding: 16px;
}
@media (min-width: 768px) {
  .header {
    padding: 16px 32px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1020px;
  margin: 0 auto;
}
.header__inner p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  font-weight: 400;
}
.header__inner p strong {
  font-weight: 700;
}
.header__logo {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}

.page {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .page {
    padding: 24px;
  }
}
.page__inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .page__inner {
    display: grid;
    grid-template-columns: 1fr 296px;
    align-items: stretch;
    gap: 24px;
  }
}

.article {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #262626;
}
.article__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .article__head {
    gap: 16px;
  }
}
.article__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #262626;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .article__title {
    padding-bottom: 0;
    font-size: 40px;
  }
}
.article__title-highlight {
  background-color: #e60023;
  color: #ffffff;
}
.article__lead {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #454545;
}
@media (min-width: 768px) {
  .article__lead {
    font-size: 22px;
  }
}
.article__author {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #262626;
  text-align: left;
}
.article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 8px;
}
.article__share-icons {
  display: flex;
  gap: 8px;
}
.article__share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.article__share-icon img {
  width: 20px;
  height: 20px;
}
.article__share-icon--fb {
  background-color: #1877f2;
}
.article__share-icon--twitter {
  background-color: #000000;
}
.article__share-icon--whatsapp {
  background-color: #25d366;
}
.article__share-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #888888;
}
.article__share-btn img {
  width: 16px;
  height: 16px;
}
.article__media {
  width: 100%;
  aspect-ratio: 700/450;
  border-radius: 8px;
  overflow: hidden;
}
.article__media img,
.article__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article__media--video {
  background-color: #000000;
}
.article__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .article__body {
    gap: 16px;
  }
}
.article__body p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
}
.article__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  line-height: 1.2;
  color: #262626;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f3f8ff;
  border-left: 3px solid #4368e0;
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 768px) {
  .bullets {
    padding: 24px;
  }
}
.bullets__item {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
}

.attention {
  background-color: #f3f8ff;
  border-left: 3px solid #e60023;
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 768px) {
  .attention {
    padding: 24px;
  }
}
.attention__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
}
.attention__label {
  font-weight: 700;
  color: #e60023;
}

.article__body .cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #f3f8ff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .article__body .cta-box {
    padding: 24px;
    gap: 24px;
  }
}
.article__body .cta-box__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  line-height: 1.2;
  color: #262626;
}
.article__body .cta-box__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
}
.article__body .cta-box__price--old {
  color: #b40e27;
}
.article__body .cta-box__price--new {
  color: #1d8749;
}
.article__body .cta-box__note {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
}

.article__body .safe-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #f3f8ff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
}
@media (min-width: 768px) {
  .article__body .safe-box {
    gap: 24px;
  }
}
.article__body .safe-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 192px;
  padding: 16px;
}
.article__body .safe-box__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.article__body .safe-box__content {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .article__body .safe-box__content {
    gap: 16px;
    text-align: left;
  }
}
.article__body .safe-box__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  line-height: 1.2;
  color: #262626;
}
.article__body .safe-box__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
}

@property --btn-primary-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #2563eb;
}
@property --btn-primary-border-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #3590c9;
}
@property --btn-secondary-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #4eca81;
}
@property --btn-secondary-border-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #4eca81;
}
.btn {
  --btn-primary-gradient-from: #2563eb;
  --btn-primary-border-color: #3590c9;
  --btn-secondary-gradient-from: #4eca81;
  --btn-secondary-border-color: #4eca81;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.18px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  transition: --btn-primary-gradient-from 0.3s ease, --btn-primary-border-color 0.3s ease, transform 0.3s ease, --btn-secondary-gradient-from 0.3s ease, --btn-secondary-border-color 0.3s ease;
  will-change: --btn-primary-gradient-from, --btn-primary-border-color, --btn-secondary-gradient-from, --btn-secondary-border-color, transform;
  transform: scale(1);
  transform-origin: center;
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background: linear-gradient(to bottom, var(--btn-primary-gradient-from), #1e40af);
  border: 1px solid var(--btn-primary-border-color);
}
.btn--primary:hover {
  --btn-primary-gradient-from: #1e40af;
  --btn-primary-border-color: #1e40af;
}
.btn--secondary {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid var(--btn-secondary-border-color);
  background: linear-gradient(180deg, var(--btn-secondary-gradient-from) 0%, #1d8749 100%);
}
.btn--secondary img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  min-width: 20px;
  min-height: 20px;
}
.btn--secondary:hover {
  --btn-secondary-gradient-from: #1d8749;
  --btn-secondary-border-color: #1d8749;
}

.fb-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .fb-posts {
    gap: 24px;
  }
}
.fb-posts__column {
  flex: 1 1 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .fb-posts__column {
    gap: 24px;
  }
}

.fb-posts .fb-posts__column .fb-post {
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  overflow: hidden;
}
.fb-posts .fb-posts__column .fb-post__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}
@media (min-width: 768px) {
  .fb-posts .fb-posts__column .fb-post__header {
    gap: 16px;
  }
}
.fb-posts .fb-posts__column .fb-post__profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fb-posts .fb-posts__column .fb-post__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.fb-posts .fb-posts__column .fb-post__name-time {
  flex: 1;
  min-width: 0;
}
.fb-posts .fb-posts__column .fb-post__name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #365899;
}
.fb-posts .fb-posts__column .fb-post__time {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #888888;
}
.fb-posts .fb-posts__column .fb-post__more {
  width: 21px;
  height: 14px;
  min-width: 21px;
  min-height: 14px;
  flex-shrink: 0;
}
.fb-posts .fb-posts__column .fb-post__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #454545;
}
.fb-posts .fb-posts__column .fb-post__image {
  width: 100%;
  aspect-ratio: 1/1;
}
.fb-posts .fb-posts__column .fb-post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.fb-posts .fb-posts__column .fb-post__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
}
.fb-posts .fb-posts__column .fb-post__reactions, .fb-posts .fb-posts__column .fb-post__engagement {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #888888;
}
.fb-posts .fb-posts__column .fb-post__reactions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fb-posts .fb-posts__column .fb-post__reactions img {
  width: 38px;
  height: auto;
  min-width: 38px;
}
.fb-posts .fb-posts__column .fb-post__comments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 12px;
}

.fb-posts .fb-comment {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fb-posts .fb-comment__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.fb-posts .fb-comment__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fb-posts .fb-comment__bubble {
  background-color: #f6f6f6;
  border-radius: 16px;
  padding: 8px 12px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #454545;
  position: relative;
}
.fb-posts .fb-comment__name {
  color: #365899;
  font-weight: 700;
  margin-right: 1px;
}
.fb-posts .fb-comment__reaction-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  font-size: 11px;
  color: #888888;
  letter-spacing: -1px;
  border-radius: 16px;
  background: #ffffff;
  padding-right: 4px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
}
.fb-posts .fb-comment__reaction-badge span {
  font-size: 10px;
  letter-spacing: -2px;
  margin-right: 2px;
}
.fb-posts .fb-comment__actions {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #888888;
}
.fb-posts .fb-comment__actions b {
  color: #365899;
}

.article__body .reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .article__body .reviews {
    gap: 16px;
  }
}

.article__body .reviews .review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f3f8ff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
}
@media (min-width: 768px) {
  .article__body .reviews .review {
    gap: 16px;
  }
}
.article__body .reviews .review__avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.article__body .reviews .review__content {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__body .reviews .review__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
}
.article__body .reviews .review__name {
  font-weight: 700;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #454545;
}
.article__body .reviews .review__verified {
  font-size: 14px;
  line-height: 1.3;
  color: #1d8749;
}
.article__body .reviews .review__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.3;
  color: #454545;
}
.article__body .reviews .review__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #454545;
}

.article__body .comments {
  padding-bottom: 24px;
}
.article__body .comments__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article__body .comments .comment {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.article__body .comments .comment--reply {
  padding-left: 48px;
}
.article__body .comments .comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.article__body .comments .comment__bubble {
  flex: 1;
  min-width: 0;
  background-color: #f6f6f6;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article__body .comments .comment__name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #365899;
}
.article__body .comments .comment__text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #5d5d5d;
}
.article__body .comments .comment__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.article__body .comments .comment__actions {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #5d5d5d;
}
.article__body .comments .comment__actions b {
  color: #365899;
}
.article__body .comments .comment__reactions {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: #5d5d5d;
  white-space: nowrap;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}
.faq__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  line-height: 1.2;
  color: #262626;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .faq__list {
    gap: 16px;
  }
}
.faq__item {
  display: block;
  width: 100%;
  background-color: #ffffff;
  text-align: left;
  cursor: pointer;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f3f8ff;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 8px;
}
.faq__question-text {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.3;
  color: #262626;
}
.faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq__item[aria-expanded=true] .faq__icon {
  transform: rotate(0deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__item[aria-expanded=true] .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__answer-text {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
  padding: 8px;
}

.sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
    width: 296px;
    min-width: 296px;
    flex-shrink: 0;
    height: 100%;
  }
}
.sidebar__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 1024px) and (min-height: 600px) {
  .sidebar__banner {
    top: 16px;
    position: sticky;
  }
}
.sidebar__promo {
  width: 100%;
  padding: 12px;
}
.sidebar__promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: #f3f8ff;
  text-align: center;
  padding: 8px;
}
.sidebar__promo-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #262626;
}
.sidebar__promo-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #262626;
}
.sidebar__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 8px 2px;
}
.sidebar__rating-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: #262626;
}
.sidebar__image {
  width: 100%;
  height: 296px;
}
.sidebar__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}
.sidebar__cta {
  width: 100%;
  padding: 12px;
}

.order-form-wrapper {
  border-radius: 16px;
  background: #f6f6f6;
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .order-form-wrapper {
    padding: 16px 24px;
  }
}

.order-form-heading {
  padding: 8px 0;
  color: #262626;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .order-form-heading {
    padding: 16px 0;
  }
}

.product-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.product-box__header {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1d3f72;
}
@media (min-width: 768px) {
  .product-box__header {
    padding: 8px 24px;
  }
}
.product-box__header > p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}

.product-box__discount {
  padding: 2px 4px;
  border-radius: 8px;
  background: #1d8749;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.product-box__container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 576px) {
  .product-box__container {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .product-box__container {
    padding: 24px;
  }
}
.product-box__container > img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  min-width: 100px;
  min-height: 100px;
}

.product-box__content {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-box__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-box__left-column {
  max-width: 294px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-box__left-column .product-box__title {
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}

.product-box__left-column .prices {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.product-box__left-column .prices--new {
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5.2083333333vw, 40px);
  font-weight: 600;
  line-height: 1;
}

.product-box__left-column .prices--old {
  color: #888888;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
}

.product-box__right-column {
  padding: 8px;
  border-radius: 100vmax;
  background: #e8f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .product-box__right-column {
    padding: 16px;
  }
}
.product-box__right-column p {
  color: #1d8749;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.product-box__right-column span.product-box__save {
  color: #1d8749;
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3.125vw, 22px);
  font-weight: 600;
  line-height: 1;
}

.product-box__bottom {
  padding: 8px 0px;
}
.product-box__bottom p {
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.order-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-form-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-form-progress > * {
  width: 100%;
}

.order-form-progress__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-form-progress__left-column,
.order-form-progress__right-column {
  text-align: center;
}
.order-form-progress__left-column p,
.order-form-progress__right-column p {
  color: #888888;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.order-form-progress__left-column h4,
.order-form-progress__right-column h4 {
  color: #888888;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.order-form-progress__bottom {
  padding: 0px 32px;
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
}

.order-form-progress-circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #b0b0b0;
}
.order-form-progress-circle--active {
  border-color: #27ae60;
}

.order-form-progress-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #b0b0b0 4px, transparent 4px);
  background-size: 8px 1px;
  background-repeat: repeat;
}

.form-wrapper__form {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.orderForm__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 769px) {
  .orderForm__fields {
    gap: 16px;
  }
}
.orderForm__fieldRow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

@media (min-width: 769px) {
  .orderForm__fieldRow {
    flex-direction: row;
    gap: 16px;
  }
}
.orderForm__fieldRow > .orderForm__field:not(.orderForm__field--prefix) {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.orderForm__row {
  display: flex;
  width: 100%;
}

.orderForm__field--prefix {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
}

@media (min-width: 769px) {
  .orderForm__field--prefix {
    flex: 0 0 180px;
    width: 180px;
    max-width: 180px;
  }
}
.orderForm__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  width: 100%;
  min-height: 60px;
  height: auto;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: text;
  overflow: visible;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.orderForm__field:hover:not(.orderForm__field--error):not(:focus-within) {
  border-color: #262626;
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.orderForm__field:focus-within:not(.orderForm__field--error) {
  background-color: #fff;
  border-color: #262626;
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.orderForm__field:has(.orderForm__select) {
  position: relative;
  cursor: pointer;
  min-height: 60px;
}

.orderForm__field:has(.orderForm__select) .orderForm__fieldLabel {
  cursor: pointer;
}

.orderForm__field:has(.orderForm__select) .orderForm__selectIcon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.orderForm__field--textarea {
  min-height: 80px;
  height: auto;
  justify-content: flex-start;
  align-items: stretch;
}

.orderForm__field--error {
  position: relative;
  border: 2px solid #e74c3c;
  padding: 10px 12px;
  box-shadow: none;
}

.orderForm__field--error:not(:focus-within):has([data-error-empty]:not([hidden])) .orderForm__input,
.orderForm__field--error:not(:focus-within):has([data-error-empty]:not([hidden])) .orderForm__textarea {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.orderForm__field--error:not(:focus-within) .orderForm__fieldError[data-error-empty]:not([hidden]) {
  display: block;
}

.orderForm__field--error:focus-within .orderForm__fieldError[data-error-empty] {
  display: none !important;
}

.orderForm__fieldLabel {
  display: block;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #262626;
  cursor: text;
}

.orderForm__fieldLabel--dark {
  color: #3d3d3d;
  font-weight: 600;
}

.orderForm__input,
.orderForm__select,
.orderForm__textarea {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  height: auto;
  min-height: 20px;
  border: none;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #262626;
  background: transparent;
  outline: none;
  box-shadow: none;
  overflow: visible;
}

.orderForm__input {
  cursor: text;
}

.orderForm__textarea {
  flex: 1 1 auto;
  min-height: 40px;
  resize: none;
  overflow: hidden;
  line-height: 1.5;
  cursor: text;
}

.orderForm__selectWrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  min-height: 20px;
}

.orderForm__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  min-height: 20px;
  padding-right: 28px;
  cursor: pointer;
}

.orderForm__selectIcon {
  width: 20px;
  height: 20px;
  max-width: 20px;
  flex-shrink: 0;
  pointer-events: none;
}

.orderForm__fieldError {
  display: none;
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.orderForm__consents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 8px;
}

.orderForm__checkboxRow {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}

.orderForm__checkboxRow--error .orderForm__checkbox {
  accent-color: #e74c3c;
  outline: 2px solid #e74c3c;
  outline-offset: 0;
  border-radius: 4px;
}

.orderForm__checkboxRow--error .orderForm__fieldError:not([hidden]) {
  display: block;
}

.orderForm__checkboxBody {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.orderForm__checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
  accent-color: #262626;
  cursor: pointer;
  border: 2px solid #888888;
  border-radius: 4px;
  background-color: #fff;
}

.orderForm__checkbox--checked {
  border-color: green;
}

.orderForm__checkboxIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  max-width: 24px;
  padding: 3px;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
}

.orderForm__checkboxIcon[hidden] {
  display: none;
}

.orderForm__checkboxText {
  flex: 1 1 0;
  margin: 0;
  font-size: 14px !important;
  line-height: 1.5 !important;
  letter-spacing: -0.14px;
}

.orderForm__checkboxText a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}

.orderForm__checkboxText a:hover {
  opacity: 0.8;
}

.orderForm__checkboxText label {
  cursor: pointer;
}

.orderForm__checkboxText--expand {
  cursor: pointer;
}

.orderForm__consentToggle {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.orderForm__consentDetails {
  margin: 0;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.14px;
  color: #262626;
}

.orderForm__consentDetails[hidden] {
  display: none;
}

.orderForm__legalNotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 532px;
}

.orderForm__legalNote {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.12px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}

.orderForm__legalNote a {
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
}

.orderForm__optionalConsents {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-left: 34px;
  width: 100%;
}

.orderForm__optionalConsents--visible {
  display: flex;
}

.callpage-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #262626;
}
@media (min-width: 769px) {
  .callpage-header {
    padding: 16px 32px;
  }
}
.callpage-header__container {
  display: flex;
  align-items: center;
  max-width: 1020px;
  width: 100%;
}
.callpage-header__tagline {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.callpage-header__label {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .callpage-header__label {
    font-size: 22px;
    line-height: 1.5;
  }
}
.callpage-header__review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.callpage-header__rating {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .callpage-header__rating {
    font-size: 16px;
  }
}
.callpage-header__stars {
  width: 85px;
  height: 16px;
}

.thank-you {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}
@media (min-width: 769px) {
  .thank-you {
    padding: 32px;
  }
}
.thank-you__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
}
.thank-you__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.thank-you__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thank-you__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-align: center;
  color: #262626;
}
.thank-you__title {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .thank-you__title {
    font-size: 42px;
    line-height: 1.2;
  }
}
.thank-you__subtitle {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__subtitle {
    font-size: 24px;
  }
}
.thank-you__hours {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__hours {
    font-size: 24px;
  }
}
.thank-you__text {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}
.thank-you__note {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__note {
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */