@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto", sans-serif;
  color: #212529;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

ul {
  padding: 0;
}

img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
}

a:hover {
  filter: brightness(105%);
}

.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;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.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%;
}

.clause {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms p {
  font-size: 14px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}

.terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

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

.container {
  max-width: 985px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.flex-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-red {
  color: #ff0000;
}

.text-green {
  color: #0C9E11;
}

.text-bold {
  font-weight: 700;
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 2px solid #f6f6f6;
}
.header__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px;
  background-color: #6366f1;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  padding: 16px 0;
  flex-shrink: 0;
}
.header__logo img {
  width: 160px;
  height: 55px;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
  padding: 0 24px;
}
.header__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #6366f1;
}
.header__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  flex-shrink: 0;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.header__cart img {
  width: 24px;
  height: 24px;
  max-width: 24px;
}
@media (max-width: 992px) {
  .header__links {
    display: none;
  }
}

.productSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 48px;
}
.productSection__container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
  flex-wrap: wrap;
}
.productSection__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.productSection__mainImage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}
.productSection__mainImage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.productSection__thumbnails {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.productSection__thumbNav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
}
.productSection__thumbNav img {
  width: 24px;
  height: 24px;
  max-width: 24px;
}
.productSection__thumbNav--next img {
  transform: scaleX(-1);
}
.productSection__thumbNav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.productSection__thumbList {
  display: flex;
  flex: 1;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.productSection__thumbList::-webkit-scrollbar {
  display: none;
}
.productSection__thumb {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.productSection__thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.productSection__thumb--active {
  border-color: #5d5d5d;
}
.productSection__expert {
  display: flex;
  width: 100%;
  border: 1px solid #b0b0b0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}
.productSection__expertImage {
  flex-shrink: 0;
  width: 200px;
  overflow: hidden;
}
.productSection__expertImage img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.productSection__expertContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 16px;
}
.productSection__expertName {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #262626;
}
.productSection__verifiedIcon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  max-width: 20px;
  min-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productSection__expertRole {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #5d5d5d;
}
.productSection__expertQuote {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.productSection__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 16px 0;
}
.productSection__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #ef4444;
  border-radius: 999px;
  color: #ef4444;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.productSection__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.productSection__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.productSection__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.productSection__stars img {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  min-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productSection__ratingValue {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #6366f1;
}
.productSection__ratingLabel {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
}
.productSection__ratingCount {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #262626;
}
.productSection__recommendation {
  display: flex;
  align-items: center;
  gap: 8px;
}
.productSection__recommendationPhoto {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.productSection__recommendationImg {
  width: 48px;
  height: 48px;
  max-width: 48px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
}
.productSection__recommendationBadge {
  display: flex;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
}
.productSection__description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
  margin-top: 15px;
}
.productSection__description strong {
  font-weight: 700;
}
.productSection__colors {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
}
.productSection__colorItem {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.productSection__colorItem img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  min-width: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productSection__colorItem--available {
  cursor: pointer;
}
.productSection__colorItem--unavailable {
  cursor: not-allowed;
}
.productSection__colorDot {
  width: 20px;
  height: 20px;
  background-color: #C6E6EB;
  border: 1px solid #B7DDE3;
  border-radius: 50%;
}
.productSection__alert {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #f6f6f6;
  border-radius: 999px;
  background-color: #fffaf2;
}
.productSection__alert img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  flex-shrink: 0;
}
.productSection__alert p {
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.productSection__divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #e7e7e7;
  margin: 0;
}
.productSection__promoTitle {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  margin: 15px 0;
}
.productSection__offer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #f6f6f6;
  border-radius: 8px;
}
.productSection__offerRow {
  display: flex;
  align-items: center;
  gap: 16px;
}
.productSection__offerThumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.productSection__offerThumb img {
  width: 64px;
  height: 64px;
  max-width: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
.productSection__offerName {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.productSection__offerPrice {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.productSection__priceCurrent {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #6366f1;
}
.productSection__priceOld {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #888888;
  text-decoration: line-through;
}
.productSection__offerColor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.productSection__offerColor span:last-child {
  font-size: 12px;
  line-height: 1.4;
}
.productSection__delivery {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background-color: #f6f6f6;
}
.productSection__deliveryItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
  white-space: nowrap;
}
.productSection__deliveryItem img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  max-width: 24px;
  min-width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productSection__deliveryItem strong {
  font-weight: 700;
}
.productSection__deliveryDivider {
  width: 1px;
  height: 22px;
  background-color: #d1d1d1;
}
.productSection__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 64px;
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background-color: #121040;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.productSection__cta img {
  width: 24px;
  height: 24px;
  max-width: 24px;
}
.productSection__cta:hover {
  filter: brightness(110%);
}
.productSection__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-top: 16px;
}
.productSection__accordionItem {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 8px;
}
.productSection__accordionTrigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
  text-align: left;
  cursor: pointer;
}
.productSection__accordionTrigger img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  transition: transform 0.25s ease;
}
.productSection__accordionItem--open .productSection__accordionTrigger img {
  transform: rotate(180deg);
}
.productSection__accordionPanel {
  display: none;
  padding-top: 8px;
}
.productSection__accordionPanel--open {
  display: block;
}
.productSection__accordionList {
  margin: 0;
  padding-left: 21px;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.productSection__accordionList li {
  margin-bottom: 0;
  list-style: disc;
}
.productSection__accordionList li::before {
  content: none;
}
.productSection__accordionText {
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.productSection__accordionText p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.productSection__accordionText p:last-child {
  margin-bottom: 0;
}
.productSection__accordionText strong {
  font-weight: 700;
}
.productSection__video {
  position: relative;
  width: 186px;
  height: 331px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #262626;
  cursor: pointer;
}
.productSection__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.productSection__video--playing {
  cursor: pointer;
}
.productSection__videoPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1;
}
.productSection__videoPlay img {
  width: 48px;
  height: 34px;
  max-width: 48px;
  pointer-events: none;
}
.productSection__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding-top: 16px;
}
.productSection__socialTitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.productSection__socialTitle span {
  color: #6366f1;
}
.productSection__socialVideos {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
}
.productSection__socialVideos::-webkit-scrollbar {
  display: none;
}
.productSection__socialVideos.dragScroll--dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.productSection__socialVideos {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}
.productSection__socialVideos .productSection__video {
  flex: 0 0 auto;
}
.productSection__socialVideos.dragScroll--dragging .productSection__video {
  cursor: grabbing;
}
@media (max-width: 992px) {
  .productSection__container {
    flex-direction: column;
  }
  .productSection__info {
    position: static;
  }
  .productSection__title {
    font-size: 28px;
  }
  .productSection__expert {
    flex-direction: column;
  }
  .productSection__expertImage {
    width: 100%;
    height: 220px;
  }
}

.sectionTitle {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.sectionTitle__accent {
  color: #6366f1;
}

.sectionText {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}

.sectionContainer, .faqSection__container, .reviewsSection__container, .testimonialsSection__container, .compareSection__container, .protectionSection__container, .idealSection__container, .safetySection__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.safetySection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #f6f6f6;
}
.safetySection__container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.safetySection__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 240px;
}
.safetySection__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.safetySection__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.safetySection__featureIcon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.safetySection__featureIcon img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.safetySection__featureTitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #262626;
}
.safetySection__featureText {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}
.safetySection__featureText strong {
  font-weight: 700;
}
.safetySection__media {
  position: relative;
  flex: 1;
  min-width: 240px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #262626;
  cursor: pointer;
}
.safetySection__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 15%;
     object-position: 0 15%;
  pointer-events: none;
}
.safetySection__media--playing::after {
  display: none;
}
.safetySection__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/icons/icon-play.svg") center/64px no-repeat;
  pointer-events: none;
}
.safetySection__sound {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1;
}
.safetySection__sound img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.safetySection__sound [hidden] {
  display: none;
}

.idealSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #ffffff;
}
.idealSection__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.idealSection__slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
}
.idealSection__slider::-webkit-scrollbar {
  display: none;
}
.idealSection__slider.dragScroll--dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.idealSection__slider {
  display: flex;
  gap: 48px;
  width: 100%;
}
.idealSection__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
  width: 256px;
}
.idealSection__cardImage {
  width: 256px;
  height: 256px;
  border-radius: 8px;
  overflow: hidden;
}
.idealSection__cardImage img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.idealSection__cardTitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.idealSection__cardText {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}

.protectionSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #f6f6f6;
}
.protectionSection__container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.protectionSection__image {
  flex: 1;
  min-width: 240px;
  border-radius: 8px;
  overflow: hidden;
}
.protectionSection__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.protectionSection__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 240px;
}
.protectionSection__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.protectionSection__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.protectionSection__listItem {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #262626;
}
.protectionSection__listItem img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  max-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.compareSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #ffffff;
}
.compareSection__container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.compareSection__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 240px;
}
.compareSection__table {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
  max-width: 100%;
  width: 100%;
}
.compareSection__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 360px;
  min-width: 335px;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f6f6f6;
  border-radius: 16px;
  overflow: hidden;
}
.compareSection__listItem {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
}
.compareSection__cells {
  flex-shrink: 0;
  display: block;
  width: 200px;
  height: auto;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonialsSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #f6f6f6;
}
.testimonialsSection__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonialsSection__slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
}
.testimonialsSection__slider::-webkit-scrollbar {
  display: none;
}
.testimonialsSection__slider.dragScroll--dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonialsSection__slider {
  display: flex;
  gap: 16px;
  width: 100%;
}
.testimonialsSection__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 226px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}
.testimonialsSection__cardImage {
  width: 226px;
  height: 226px;
  overflow: hidden;
}
.testimonialsSection__cardImage img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.testimonialsSection__cardBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.testimonialsSection__cardBody .testimonialsSection__cardStars img {
  width: 16px;
  height: 16px;
  max-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonialsSection__cardHeader {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonialsSection__cardName {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #262626;
}
.testimonialsSection__cardVerify {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #262626;
}
.testimonialsSection__cardVerify img {
  width: 14px;
  height: 14px;
  max-width: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonialsSection__cardStars {
  display: flex;
  align-items: center;
}
.testimonialsSection__cardText {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #262626;
  margin-top: 10px;
}

.reviewsSection {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 48px 0;
  background-color: #f6f6f6;
}
.reviewsSection__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.reviewsSection__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.reviewsSection__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #262626;
}
.reviewsSection__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #e7e7e7;
}
.reviewsSection__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 24px 0;
}
.reviewsSection__ratingSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 328px;
}
.reviewsSection__ratingValue {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: #262626;
  white-space: nowrap;
}
.reviewsSection__ratingValue strong {
  font-weight: 700;
}
.reviewsSection__ratingValue span {
  font-weight: 400;
}
.reviewsSection__ratingStars {
  display: flex;
  align-items: center;
}
.reviewsSection__ratingStars img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviewsSection__ratingCount {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: #262626;
  text-align: center;
}
.reviewsSection__ratingDivider {
  width: 0;
  height: 175px;
  border-left: 1px solid #e7e7e7;
}
.reviewsSection__ratingBars {
  display: flex;
  flex: 1 1 240px;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
}
.reviewsSection__ratingRow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.reviewsSection__ratingBar {
  flex: 1 1 auto;
  max-width: 480px;
  height: 12px;
  border-radius: 16px;
  background-color: #e7e7e7;
  overflow: hidden;
}
.reviewsSection__ratingBarFill {
  height: 100%;
  border-radius: 16px;
  background-color: #6366f1;
}
.reviewsSection__ratingStar {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviewsSection__ratingLevel {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #262626;
  white-space: nowrap;
}
.reviewsSection__ratingVotes {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #5d5d5d;
  white-space: nowrap;
}
.reviewsSection__ratingVotes--empty {
  visibility: hidden;
}
.reviewsSection__grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.reviewsSection__column {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.reviewsSection__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.reviewsSection__cardImage {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
}
.reviewsSection__cardImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.reviewsSection__cardImage--tall {
  aspect-ratio: 220/331;
}
.reviewsSection__cardBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.reviewsSection__cardMeta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviewsSection__cardName {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
}
.reviewsSection__cardDate {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #262626;
}
.reviewsSection__cardStars {
  display: flex;
  align-items: center;
}
.reviewsSection__cardStars img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviewsSection__cardTitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #262626;
}
.reviewsSection__cardText {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #262626;
}
.reviewsSection__loadMore {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 8px;
}
.reviewsSection__loadBtn {
  padding: 8px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.16px;
  color: #262626;
  cursor: pointer;
}

.faqSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #ffffff;
}
.faqSection__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faqSection__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.faqSection__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #6366f1;
}
.faqSection__subtitle {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #262626;
}
.faqSection__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.faqSection__item {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 16px;
}
.faqSection__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
  text-align: left;
  cursor: pointer;
}
.faqSection__trigger img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  max-width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease;
}
.faqSection__item--open .faqSection__trigger img {
  transform: rotate(180deg);
}
.faqSection__panel {
  display: none;
  padding-top: 8px;
}
.faqSection__panel--open {
  display: block;
}
.faqSection__answer {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}
.faqSection__answer strong {
  font-weight: 700;
}
.faqSection__answerList {
  margin: 0;
  padding-left: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}
.faqSection__answerList li {
  list-style: disc;
}
.faqSection__answerList li::before {
  content: none;
}
.faqSection__answerList--check {
  padding-left: 0;
  list-style: none;
}
.faqSection__answerList--check li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
}
.faqSection__answerList--check li::before {
  content: "✔";
  flex-shrink: 0;
  color: #6366f1;
}

@media (max-width: 1200px) {
  .reviewsSection__grid {
    flex-wrap: wrap;
  }
  .reviewsSection__column {
    flex: 1 1 calc(25% - 12px);
    min-width: 180px;
  }
}
@media (max-width: 992px) {
  .sectionTitle {
    font-size: 28px;
  }
  .reviewsSection__title {
    font-size: 28px;
  }
  .reviewsSection__subtitle {
    font-size: 24px;
  }
  .reviewsSection__rating {
    flex-direction: column;
    align-items: stretch;
  }
  .reviewsSection__ratingDivider {
    width: 100%;
    height: 0;
    border-top: 1px solid #e7e7e7;
    border-left: 0;
  }
  .reviewsSection__ratingSummary {
    max-width: none;
  }
  .reviewsSection__column {
    flex: 1 1 calc(50% - 8px);
  }
  .faqSection__title {
    font-size: 28px;
  }
  .faqSection__subtitle {
    font-size: 24px;
  }
  .compareSection__table {
    min-width: 300px;
  }
  .compareSection__list {
    margin: auto;
  }
  .compareSection__cells {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: none;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background-color: #a5b4f3;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  padding: 48px 16px;
  margin: 0 auto;
}
.footer__brand {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}
.footer__link {
  padding: 4px 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
}
.footer__link:hover {
  opacity: 0.85;
}
.footer__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #ffffff;
}
.footer__copyright {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
}
.footer__legal {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #ffffff;
}
.footer__legal--italic {
  font-style: italic;
}

.callPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  background-color: #ffffff;
}
.callPage__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 792px;
  padding: 0 16px;
  margin: 0 auto;
}
.callPage__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.callPage__image {
  flex: 1 1 240px;
  min-width: 240px;
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.callPage__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.callPage__content {
  display: flex;
  flex: 1 1 240px;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
}
.callPage__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}
.callPage__titleAccent {
  color: #6366f1;
}
.callPage__lead {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #262626;
}
.callPage__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 64px;
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background-color: #10b981;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.callPage__cta img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.callPage__cta:hover {
  opacity: 0.92;
}
.callPage__phone {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.callPage__phone a {
  color: #6366f1;
  text-decoration: none;
}
.callPage__phone a:hover {
  text-decoration: underline;
}
.callPage__phone[hidden] {
  display: none;
}
.callPage__hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  text-align: center;
  color: #262626;
}
.callPage__hoursTitle {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.callPage__hoursList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.callPage__hoursItem {
  display: flex;
  align-items: center;
  gap: 4px;
}
.callPage__hoursItem::before {
  content: "•";
  margin-right: 4px;
}
.callPage__hoursNote {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.callPage__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #e7e7e7;
}
.callPage__benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.callPage__benefitsTitle {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  text-align: center;
}
.callPage__benefitsGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
}
.callPage__benefit {
  display: flex;
  flex: 1 1 140px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}
.callPage__benefitIcon {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.callPage__benefitText {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
  text-align: center;
}

.phone__button--open {
  font-size: 28px;
}/*# sourceMappingURL=styles.css.map */