@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,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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: 320px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  background: #f5f0ed;
}

.body-wrapper {
  max-width: 1200px;
  margin: 0 auto 32px;
  width: 100%;
  background: #fff;
}
@media (min-width: 1200px) {
  .body-wrapper {
    margin: 48px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  }
}

.header {
  width: 100%;
  background-color: white;
}

.header__container {
  width: 100%;
}

.header__logo-wrapper {
  border-bottom: 3px solid #d46f93;
  padding: 20px 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .header__logo-wrapper {
    padding: 32px 24px;
  }
}
@media (min-width: 1024px) {
  .header__logo-wrapper {
    border-bottom: none;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}
@media (min-width: 768px) {
  .header__logo {
    padding: 0 16px;
  }
}

.header__logo-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.96px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__logo-text {
    font-size: 48px;
  }
}

.header__logo-text--primary {
  color: #681839;
}

.header__logo-text--secondary {
  color: #d46f93;
}

.header__nav {
  background-color: #d46f93;
  display: flex;
  align-items: center;
  padding: 16px;
  overflow: hidden;
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: white;
  padding: 8px 24px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #ffd901;
}

.page-wrapper {
  width: 100%;
  background-color: #fff;
}

.page-container {
  width: 100%;
  padding: 12px 16px;
}
@media (min-width: 1200px) {
  .page-container {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 24px;
    padding: 16px 24px;
  }
}

.main {
  width: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .main {
    gap: 16px;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 1200px) {
  .sidebar {
    display: block;
    width: 360px;
    min-width: 360px;
    flex-shrink: 0;
    padding: 24px 0;
  }
}

.sidebar__heading {
  width: 100%;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  background: #681839;
}

.sidebar__title {
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

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

.sidebar-article {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-radius: 4px;
  background-color: #f6f6f6;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.sidebar-article:hover {
  background-color: #e0e0e0;
}

.sidebar-article__img {
  width: 120px;
  min-width: 120px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sidebar-article__title {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 16px;
}

.footer {
  width: 100%;
  background-color: #f5f0ed;
}

.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1200px) {
  .footer__container {
    padding: 0 48px 48px;
  }
}

.footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #6d6d6d;
  text-align: center;
  width: 100%;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  width: 100%;
}

.footer__link {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #681839;
  text-decoration: underline;
  padding: 4px;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #310517;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.48px;
  color: #454545;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.story {
  padding: 4px 0;
  width: 100%;
}

.story__text {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.48px;
  color: black;
}

.heading-main {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #262626;
  width: 100%;
}
@media (min-width: 1024px) {
  .heading-main {
    font-size: 56px;
  }
}

.lead {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  width: 100%;
}
@media (min-width: 1024px) {
  .lead {
    font-size: 24px;
  }
}

.info-frame {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 4px;
  padding: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .info-frame {
    gap: 8px;
  }
}

.info-frame__autor {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 320px;
  min-width: 320px;
}

.info-frame__autor-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.info-frame__autor-text {
  display: flex;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.48px;
  color: #5d5d5d;
  white-space: nowrap;
}

.info-frame__autor-label {
  font-weight: 700;
}

.info-frame__autor-name {
  font-weight: 400;
  font-style: italic;
}

.info-frame__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.info-frame__date {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.48px;
  color: #5d5d5d;
  text-align: right;
  white-space: nowrap;
}

.info-frame__likes,
.info-frame__comments,
.info-frame__share {
  display: flex;
  align-items: center;
  gap: 4px;
}

.info-frame__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.info-frame__count,
.info-frame__text {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.48px;
  color: #5d5d5d;
  text-align: right;
  white-space: nowrap;
}

.hero-image {
  width: 100%;
  overflow: hidden;
}

.hero-image__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-image__caption {
  background-color: #681839;
  padding: 4px 8px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-image__caption {
    padding: 8px 16px;
  }
}

.hero-image__text {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: white;
}
@media (min-width: 1024px) {
  .hero-image__text {
    font-size: 16px;
  }
}

.hero-image__text--bold {
  font-weight: 700;
  font-style: italic;
}

.heading-h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  width: 100%;
  padding-top: 4px;
}
@media (min-width: 1024px) {
  .heading-h2 {
    font-size: 40px;
    padding-top: 8px;
  }
}

.heading-h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  width: 100%;
  padding-top: 4px;
}
@media (min-width: 1024px) {
  .heading-h3 {
    font-size: 28px;
    padding-top: 8px;
  }
}

.paragraph {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #262626;
  width: 100%;
}
@media (min-width: 1024px) {
  .paragraph {
    font-size: 18px;
  }
}

.paragraph--spacing {
  margin-bottom: 18px;
}

.paragraph__strong {
  font-weight: 700;
}

.paragraph-group {
  width: 100%;
}

.image-frame {
  width: 100%;
  overflow: hidden;
}

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

.image-frame__caption {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #262626;
  padding: 12px 0 4px 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .image-frame__caption {
    padding: 16px 0 8px 0;
    font-size: 16px;
  }
}

.image-frame__caption--bold {
  font-weight: 700;
  font-style: italic;
}

.product-frame {
  width: 100%;
  background: linear-gradient(to bottom, #fae3e8 0%, white 100%);
  border: 1px solid #eaadbd;
  border-radius: 8px;
  overflow: hidden;
}

.product-frame__content {
  padding: 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-frame__content {
    padding: 24px;
  }
}

.product-frame__heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-frame__heading {
    font-size: 40px;
  }
}

.product-frame__heading--primary {
  color: #d46f93;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-list {
    padding: 24px 0;
  }
}

.product-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 348px;
}

.product-list__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.product-list__text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .product-list__text {
    font-size: 20px;
  }
}

.product-frame__description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-frame__description {
    font-size: 18px;
  }
}

.product-frame__description--bold {
  font-weight: 700;
}

.product-frame__benefits {
  padding: 0 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-frame__benefits {
    padding: 0 24px;
  }
}

.product-frame__benefits-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-frame__benefits-heading {
    font-size: 40px;
  }
}

.product-frame__benefits-heading--red {
  color: #eb390c;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .benefits-list {
    padding-top: 24px;
  }
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.benefits-list__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.benefits-list__text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  flex: 1;
}
@media (min-width: 1024px) {
  .benefits-list__text {
    font-size: 20px;
  }
}

.product-frame__image {
  width: 100%;
  position: relative;
  height: auto;
}

.product-frame__image-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-frame__badge {
  width: 90px;
  height: 90px;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(0deg, #1f50a2 0%, #4f9ed6 100%);
  box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.5);
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .product-frame__badge {
    width: 172px;
    height: 172px;
    top: 26px;
  }
}
@media (min-width: 1200px) {
  .product-frame__badge {
    top: 26px;
    left: 225px;
    transform: none;
  }
}
.product-frame__badge p {
  color: #fff;
  text-align: center;
  /* badges/badge */
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .product-frame__badge p {
    font-size: 24px;
  }
}
.product-frame__badge p span {
  color: #ffd901;
}

.product-benefits-box {
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #aa3a68 0%, #d46f93 100%);
}
@media (min-width: 1024px) {
  .product-benefits-box {
    padding: 24px;
  }
}

.product-benefits-box__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .product-benefits-box__header {
    gap: 24px;
  }
}
.product-benefits-box__header img {
  width: 100%;
  max-width: 348px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}

.product-benefits-box__heading {
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .product-benefits-box__heading {
    max-width: 348px;
    font-size: 40px;
  }
}

.product-benefits-box__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .product-benefits-box__content {
    padding-top: 24px;
    grid-template-columns: 1fr 1fr;
  }
}

.product-benefits-box__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.product-benefits-box__item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.product-benefits-box__item p {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-benefits-box__item p {
    font-size: 18px;
  }
}
.product-benefits-box__item p span {
  color: #ffd901;
}

.cta-frame {
  width: 100%;
  padding: 16px 0;
}
@media (min-width: 1024px) {
  .cta-frame {
    padding: 24px 0;
  }
}

.cta-frame__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 1024px) {
  .cta-frame__content {
    gap: 16px;
  }
}

.cta-frame__heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  width: 100%;
}
@media (min-width: 1024px) {
  .cta-frame__heading {
    font-size: 40px;
  }
}

.cta-frame__heading--red {
  color: #eb390c;
}

.cta-frame__text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  width: 100%;
}
@media (min-width: 1024px) {
  .cta-frame__text {
    font-size: 20px;
  }
}

.cta-frame__text--highlight {
  font-weight: 700;
  color: #eb390c;
}

.cta-frame__button {
  color: #00f;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}
.cta-frame__button:hover {
  color: #0000cc;
}
@media (min-width: 1024px) {
  .cta-frame__button {
    font-size: 26px;
  }
}

.comments {
  width: 100%;
  padding-top: 8px;
}
@media (min-width: 1024px) {
  .comments {
    padding-top: 16px;
  }
}

.comments__header {
  width: 100%;
  border-bottom: 2px solid #681839;
}

.comments__title {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #681839;
  border: 4px solid #681839;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .comments__title {
    padding: 8px 16px;
  }
}

.disclaimer {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7b7b7b;
  line-height: 1.3;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .disclaimer {
    margin-top: 24px;
  }
}

.comments__title-text {
  font-size: 20px;
  line-height: 1.1;
  color: white;
}
@media (min-width: 1024px) {
  .comments__title-text {
    font-size: 28px;
  }
}

.comments__title-count {
  font-size: 16px;
  line-height: 1.4;
  color: #eaadbd;
}
@media (min-width: 1024px) {
  .comments__title-count {
    font-size: 18px;
  }
}

.comments__list {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .comments__list {
    padding: 24px 0;
  }
}

.comment {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
}
@media (min-width: 1024px) {
  .comment {
    gap: 16px;
    padding: 24px 0;
  }
}

.comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  font-family: "Lato", sans-serif;
}
@media (min-width: 1024px) {
  .comment__content {
    gap: 8px;
  }
}

.comment__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.comment__author {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .comment__author {
    font-size: 16px;
  }
}

.comment__date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #888;
  text-align: right;
  flex: 1;
  min-width: 0;
}

.comment__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #4f4f4f;
  width: 100%;
}
@media (min-width: 1024px) {
  .comment__text {
    font-size: 16px;
  }
}

.summary-page {
  max-width: 792px;
  width: 100%;
  margin: 16px auto 32px;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .summary-page {
    margin: 48px auto;
    padding: 0;
  }
}

.summary-card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.summary-header {
  width: 100%;
  border-bottom: 3px solid #d46f93;
  padding: 20px 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .summary-header {
    padding: 32px 24px;
  }
}

.summary-main {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .summary-main {
    padding: 48px;
    gap: 16px;
  }
}

.summary-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #209720;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .summary-heading {
    font-size: 56px;
  }
}

.summary-lead {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .summary-lead {
    font-size: 24px;
  }
}

.summary-lead__br {
  display: inline;
}

.summary-lead__br--mobile {
  display: inline;
}
@media (min-width: 1024px) {
  .summary-lead__br--mobile {
    display: none;
  }
}

.summary-lead--highlight {
  color: #eb390c;
}

.summary-image {
  width: 100%;
  height: auto;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.summary-text {
  width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #262626;
  text-align: center;
}
@media (min-width: 1024px) {
  .summary-text {
    font-size: 20px;
  }
}

.summary-text__paragraph {
  margin: 0;
}

.summary-text__paragraph--spacing {
  margin-bottom: 20px;
}

.summary-text__paragraph strong {
  font-weight: 700;
}

.summary-subheading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #262626;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .summary-subheading {
    font-size: 28px;
  }
}

.summary-subheading--highlight {
  color: #eb390c;
}

.summary-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .summary-button-wrapper {
    padding: 16px 0;
  }
}

.summary-button {
  background-color: #209720;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 24px;
  width: 100%;
  max-width: 640px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.summary-button:hover {
  background-color: #0e810e;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.summary-button.hidden {
  display: none;
}
@media (min-width: 1024px) {
  .summary-button {
    gap: 16px;
    padding: 16px 24px;
  }
}

.summary-button--phone {
  width: -moz-fit-content;
  width: fit-content;
}
.summary-button--phone .summary-button__text {
  font-size: 24px;
}
@media (min-width: 1024px) {
  .summary-button--phone .summary-button__text {
    font-size: 32px;
  }
}

.summary-button__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.summary-button__text {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .summary-button__text {
    font-size: 26px;
  }
}

.summary-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-contact__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.summary-contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.summary-contact__hours-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  text-align: center;
}
@media (min-width: 1024px) {
  .summary-contact__hours-text {
    font-size: 18px;
  }
}

.summary-contact__br {
  display: inline;
}
@media (min-width: 1024px) {
  .summary-contact__br {
    display: none;
  }
}

.summary-contact__info {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #262626;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .summary-contact__info {
    font-size: 18px;
  }
}

.summary-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #e7e7e7;
  margin: 0;
}

.summary-warning-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .summary-warning-text {
    font-size: 18px;
  }
}

.summary-warning-text__br {
  display: inline;
}
@media (min-width: 1024px) {
  .summary-warning-text__br {
    display: none;
  }
}

.summary-attention {
  background-color: #f6f6f6;
  border: 1px solid #681839;
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .summary-attention {
    padding: 8px 16px;
  }
}

.summary-attention__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.summary-attention__text {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #262626;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .summary-attention__text {
    font-size: 16px;
  }
}

.summary-attention__text strong {
  font-weight: 700;
  font-size: 16px;
}

.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%;
}/*# sourceMappingURL=style.css.map */