@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;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
  background-color: #ffffff;
}

.footer {
  padding: 32px 16px;
  background: #e7e7e7;
}
@media (min-width: 768px) {
  .footer {
    padding: 48px 24px;
  }
}

.footer__content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 8px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.footer__links a {
  color: #2c5e0d;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: #204409;
}

.footer__text {
  font-size: 14px;
  line-height: 1.4;
}

.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 {
  padding: 16px;
  background: #132806;
}
@media (min-width: 768px) {
  .header {
    padding: 24px 32px;
  }
}

.header__container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .header__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}
.header__logo img {
  width: 40px;
  height: 41px;
  min-width: 40px;
  min-height: 41px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header__logo p {
  font-family: "Georgia", "Times New Roman", serif;
  color: #fff;
  font-size: clamp(24px, 3.3854166667vw, 28px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}
.header__logo p span {
  color: #c6eeae;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.header__content p {
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 1.953125vw, 16px);
  line-height: 1.1;
  letter-spacing: 0.28px;
}
.header__content img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.mobile-only {
  display: block;
}
@media (min-width: 650px) {
  .mobile-only {
    display: none;
  }
}

.notice {
  padding: 16px 16px 0;
}

.notice__container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ffe2c2;
  background: #fff9f3;
}
.notice__container b {
  color: #d73316;
}

.main-container {
  padding: 16px;
}
@media (min-width: 768px) {
  .main-container {
    padding: 24px 32px;
  }
}

.main-content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 880px) {
  .main-content {
    display: grid;
    grid-template-columns: 1fr 296px;
    gap: 24px;
    align-items: start;
  }
}

.main-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #d1d1d1;
  border-radius: 100vmax;
}
@media (min-width: 880px) {
  .main-divider {
    display: none;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px;
  width: 100%;
}

.banner {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
}

.shipping-badge {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.shipping-badge-text {
  padding: 4px 8px;
  background: #d73316;
  min-width: 168px;
  text-align: right;
}
.shipping-badge-text p {
  color: #fff;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.shipping-badge-icon {
  background: #ffd426;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 100vmax;
  border-bottom-right-radius: 100vmax;
}
.shipping-badge-icon img {
  width: 28px;
  height: 18px;
  min-width: 28px;
  min-height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.banner-text {
  padding: 8px 16px 0px;
  font-size: 18px;
  line-height: 1.4;
}

.banner-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.banner-button {
  padding: 0 16px;
}

@property --btn-gradient-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #ffd45c;
}
@property --btn-gradient-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #f49600;
}
@property --btn-shadow {
  syntax: "<color>";
  inherits: false;
  initial-value: #ffb412;
}
@property --btn-border {
  syntax: "<color>";
  inherits: false;
  initial-value: #f49600;
}
.btn {
  --btn-gradient-1: #ffd45c;
  --btn-gradient-2: #f49600;
  --btn-shadow: #ffb412;
  --btn-border: #f49600;
  padding: 16px 8px;
  border-radius: 4px;
  border: 1px solid var(--btn-border);
  background: linear-gradient(180deg, var(--btn-gradient-1) 0%, var(--btn-gradient-2) 100%);
  box-shadow: 0 3px 10px 0 var(--btn-shadow);
  width: 100%;
  transform-origin: center;
  transform: scale(1);
  transition: --btn-gradient-1 0.3s ease-in-out, --btn-gradient-2 0.3s ease-in-out, --btn-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  will-change: --btn-gradient-1, --btn-gradient-2, --btn-shadow, transform;
}
@media (min-width: 768px) {
  .btn {
    padding: 16px;
  }
}
.btn p {
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}
.btn span.text-red {
  color: #fb2c36;
}
.btn:hover {
  --btn-shadow: transparent;
  --btn-gradient-1: #ffb412;
  --btn-gradient-2: #ffb412;
  --btn-border: transparent;
}
.btn:active {
  transform: scale(0.98);
}

.btn.btn--with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.0833333333vw, 16px);
}
.btn.btn--with-icon img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.reviews {
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating {
  display: flex;
  align-items: flex-end;
}
.rating span:first-child {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}
.rating span:last-child {
  color: #d1d1d1;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars img {
  width: 16px;
  height: 15px;
  min-width: 16px;
  min-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.reviews-details {
  display: flex;
  flex-direction: column;
}

.reviews-details-item {
  display: grid;
  grid-template-columns: 11px 1fr 31px;
  gap: 8px;
  align-items: center;
}
.reviews-details-item span,
.reviews-details-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.reviews-details-item-bar {
  width: 100%;
  height: 7px;
  border-radius: 100vmax;
  background: #f6f6f6;
  overflow: hidden;
}

.reviews-details-item-bar-fill {
  height: 100%;
  border-radius: 100vmax;
  background: #ffd426;
}
.reviews-details-item-bar-fill.bar-93 {
  width: 93%;
}
.reviews-details-item-bar-fill.bar-4 {
  width: 4%;
}
.reviews-details-item-bar-fill.bar-3 {
  width: 3%;
}
.reviews-details-item-bar-fill.bar-0 {
  width: 0%;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-title__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
  padding: 0px 0px 8px 0px;
}
@media (min-width: 768px) {
  .post-title__top {
    padding: 8px 0px;
  }
}

.post-category {
  color: #888;
  font-size: 12px;
  line-height: 1.3;
}

.post-rating {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.post-rating__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.post-rating__stars img {
  width: 16px;
  height: 15px;
  min-width: 16px;
  min-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.post-rating__count {
  color: #262626;
  font-size: 12px;
  line-height: 1.3;
}

.post-title__heading {
  color: #262626;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4270833333vw, 40px);
  line-height: 1.2;
}

.post-title__heading-accent {
  color: #469912;
}

.media-frame {
  overflow: hidden;
  border-radius: 4px;
}
.media-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.media-frame--5-3 {
  aspect-ratio: 700/420;
}
.media-frame--14-9 {
  aspect-ratio: 700/450;
}
.media-frame--video {
  width: 100%;
}
.media-frame--video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-caption {
  background: #c6eeae;
  border-radius: 8px;
  padding: clamp(8px, 1.5625vw, 16px);
  text-align: center;
}
.post-caption p {
  color: #262626;
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.5;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.25);
}

.post-caption__highlight {
  color: #d73316;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
}

.post-meta__author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
}

.post-meta__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.post-meta__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-meta__author-text {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
  white-space: nowrap;
}
.post-meta__author-text p:first-child {
  color: #262626;
  font-weight: 700;
  font-size: 14px;
}
.post-meta__author-text p:last-child {
  color: #888;
  font-size: 14px;
}

.post-meta__date {
  flex: 1 0 0;
  color: #888;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.0833333333vw, 16px);
  padding-bottom: 48px;
  color: #262626;
}
.post-content p {
  font-size: 16px;
  line-height: 1.5;
}

.post-content__bold {
  font-weight: 700;
}

.post-content__h2 {
  color: #262626;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(26px, 3.7760416667vw, 32px);
  line-height: 1.2;
}

.post-content__h4 {
  color: #262626;
  font-weight: 700;
  font-size: clamp(20px, 2.8645833333vw, 24px);
  line-height: 1.3;
}

.post-content__h5 {
  color: #262626;
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.3;
}

.post-content__list {
  list-style: disc;
  padding-left: 24px;
}
.post-content__list li {
  font-size: 16px;
  line-height: 1.5;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checklist__item p {
  flex: 1 0 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.checklist__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.quote {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(16px, 2.6041666667vw, 24px);
  padding: clamp(16px, 2.6041666667vw, 24px);
  background: #e9f9e0;
  border: 1px solid #c6eeae;
  border-radius: 8px;
}

.quote__media {
  width: 240px;
  min-width: 240px;
  aspect-ratio: 240/427;
  border-radius: 4px;
  overflow: hidden;
}
.quote__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.quote__text {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.0833333333vw, 16px);
  flex: 1 0 0;
  min-width: 240px;
}
.quote__text p {
  font-size: 16px;
  line-height: 1.5;
}

.expert {
  display: flex;
  flex-direction: column;
  background: #132806;
  border-radius: 8px;
  overflow: hidden;
}

.expert__header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8229166667vw, 16px);
  padding: clamp(8px, 1.5625vw, 16px);
  background: #2c5e0d;
}

.expert__avatar {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
  border: 1px solid #e9f9e0;
  overflow: hidden;
}
.expert__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.expert__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 0 0;
  color: #fff;
}

.expert__name {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.3;
}

.expert__name-accent {
  color: #c6eeae;
  font-weight: 700;
}

.expert__desc {
  font-size: 14px;
  line-height: 1.4;
}

.expert__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(8px, 1.5625vw, 16px);
  color: #fff;
}
.expert__body p {
  font-size: 16px;
  line-height: 1.5;
}

.problems {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 24px;
}
@media (min-width: 600px) {
  .problems {
    gap: 16px;
  }
}

.problems__item {
  min-width: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: #132806;
}
@media (min-width: 600px) {
  .problems__item {
    max-width: calc(50% - 8px);
  }
}
.problems__item:nth-child(even) {
  background: #2c5e0d;
}

.problems__media {
  width: 100%;
  aspect-ratio: 346/276;
}
.problems__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.problems__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: clamp(8px, 1.5625vw, 16px);
}
.problems__text p {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.4;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 0;
  border-radius: 16px;
  overflow: hidden;
}

.trust-badges__item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.trust-badges__item p {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.trust-badges__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.trust-badges__icon img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.expert-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(16px, 2.6041666667vw, 24px);
  background: #f6f6f6;
  border-radius: 8px;
  color: #262626;
}
.expert-quote p {
  font-size: 16px;
  line-height: 1.5;
}

.expert-quote__author-accent {
  color: #469912;
  font-weight: 700;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.6041666667vw, 24px);
  background: #f8fef4;
  border: 2px solid #c6eeae;
  border-radius: 8px;
}

.cta-box__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.cta-box__title {
  color: #262626;
  font-weight: 700;
  font-size: clamp(20px, 2.8645833333vw, 24px) !important;
  line-height: 1.3;
}

.cta-box__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #c6eeae;
  border-radius: 8px;
}

.cta-box__badge-title {
  color: #262626;
  font-weight: 700;
  font-size: clamp(20px, 2.8645833333vw, 22px) !important;
  line-height: 1.5;
}

.cta-box__badge-note {
  color: #d73316;
  font-weight: 700;
  font-size: clamp(18px, 2.6041666667vw, 20px) !important;
  line-height: 1.5;
}

.cta-box__note {
  color: #262626;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .cta-box__note {
    font-size: 18px !important;
  }
}

.icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.icons-row__item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 240px;
}
.icons-row__item p {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.icons-row__media {
  width: 100px;
  height: 100px;
}
.icons-row__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.notice-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff6f7;
  border: 1px solid #fb2c36;
  border-radius: 8px;
}

.notice-box__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
}

.notice-box__title-accent {
  color: #fb2c36;
}

.notice-box__text {
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
}

.notice-box__text-strike {
  text-decoration: line-through;
}

.product-spec {
  container-type: inline-size;
}

.product-spec__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@container (width >= 600px) {
  .product-spec__container {
    display: grid;
    grid-template-columns: 166px 1fr 166px;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1000px) {
  .product-spec__container {
    display: grid;
    grid-template-columns: 166px 1fr 166px;
    align-items: center;
    gap: 24px;
  }
}

.product-spec__product {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1000px) {
  .product-spec__product {
    order: 2;
  }
}
@container (width >= 600px) {
  .product-spec__product {
    order: 2;
  }
}
.product-spec__product img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.product-spec__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1000px) {
  .product-spec__text {
    text-align: center;
  }
}
@container (width >= 600px) {
  .product-spec__text {
    text-align: center;
  }
}
.product-spec__text h3 {
  color: #888;
  font-size: clamp(20px, 2.8645833333vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.product-spec__part {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1000px) {
  .product-spec__part.product-spec__part-1 {
    order: 1;
  }
}
@container (width >= 600px) {
  .product-spec__part.product-spec__part-1 {
    order: 1;
  }
}
@media (min-width: 1000px) {
  .product-spec__part.product-spec__part-2 {
    order: 3;
  }
}
@container (width >= 600px) {
  .product-spec__part.product-spec__part-2 {
    order: 3;
  }
}
@media (min-width: 1000px) {
  .product-spec__part {
    gap: 24px;
    padding: 24px 0;
  }
}
@container (width >= 600px) {
  .product-spec__part {
    gap: 24px;
    padding: 24px 0;
  }
}

.product-spec__item {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e7e7e7;
  background: #f6f6f6;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 1000px) {
  .product-spec__item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}
@container (width >= 600px) {
  .product-spec__item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}
.product-spec__item > p {
  font-size: 12px;
  line-height: 1.3;
}

.product-spec__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@container (width >= 600px) {
  .product-spec__list {
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1000px) {
  .product-spec__list {
    align-items: center;
    justify-content: center;
  }
}
.product-spec__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-spec__list li span.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #262626;
}

.product-spec__number {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f49600;
  color: var(--Color-base-white, #fff);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.comments {
  container-type: inline-size;
}

.comments__content {
  width: 100%;
  display: column;
  -moz-columns: 1;
       columns: 1;
  gap: 16px;
}
@container (width >= 550px) {
  .comments__content {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 800px) {
  .comments__content {
    -moz-columns: 2;
         columns: 2;
  }
}

.comment {
  padding: 16px;
  border-radius: 8px;
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.comment__text {
  font-size: 14px !important;
  line-height: 1.4;
  margin-top: 16px;
}

.comment__header {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.comment__header h3 {
  font-size: clamp(13px, 1.8229166667vw, 14px) !important;
  font-weight: 600;
  line-height: 1.3;
}
.comment__header p {
  color: #10934b;
  font-size: clamp(10px, 1.5625vw, 12px) !important;
  font-weight: 400;
  line-height: 1.3;
}

.stars-component {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars-component img {
  width: 16px;
  height: 15px;
  min-width: 16px;
  min-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=style.css.map */