*,
*::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;
  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;
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   GLOBAL VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-primary: #2e3641;
  --color-secondary: #42a98b;
  --color-accent-red: #ef4444;
  --color-accent-green: #19ae30;
  /* Background Colors */
  --color-bg-page: #e9f0f4;
  --color-bg-surface: #dbf0e8;
  --color-bg-white: #ffffff;
  --color-bg-footer: #e9f0f4;
  /* Text Colors */
  --color-text-primary: #262626;
  --color-text-muted: #888;
  --color-text-link: blue;
  /* Border Colors */
  --color-border-primary: #b0b0b0;
  --color-border-brand: #c2e5d8;
  --color-border-secondary: #42a98b;
  /* Top Color Lines */
  --color-red: #f69087;
  --color-teal: #85ccb1;
  --color-blue: #85a9b3;
  --color-lime: #b0cb7a;
  /* Fonts */
  --font-primary: "Roboto", sans-serif;
}

/* ==========================================================================
   BODY & BASE STYLES
   ========================================================================== */
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
}

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

/* ==========================================================================
   TOP HEADER
   ========================================================================== */
.top {
  background-color: var(--color-primary);
  width: 100%;
}

.top__color-lines {
  display: flex;
  width: 100%;
  height: 5px;
  overflow: hidden;
}

.top__color-line {
  flex: 1;
  height: 100%;
}
.top__color-line--red {
  background-color: var(--color-red);
}
.top__color-line--teal {
  background-color: var(--color-teal);
}
.top__color-line--blue {
  background-color: var(--color-blue);
}
.top__color-line--lime {
  background-color: var(--color-lime);
}

.top__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.top__container {
  width: 100%;
  max-width: 1160px;
  padding: 20px 16px;
}

.top__title {
  font-size: 45px;
  font-weight: 500;
  line-height: 1.33;
  color: #ffffff;
  margin: 0;
}

/* ==========================================================================
   PAGE LAYOUT
   ========================================================================== */
.page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
@media (min-width: 769px) {
  .page {
    padding: 0 24px;
  }
}

.page__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1160px;
}
@media (min-width: 1000px) {
  .page__container {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 820px;
}

/* ==========================================================================
   MAIN TOP SECTION
   ========================================================================== */
.main-top {
  background-color: var(--color-bg-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 8px 8px 32px;
  width: 100%;
}
@media (min-width: 769px) {
  .main-top {
    gap: 24px;
    padding: 16px 16px 48px;
  }
}

.main-top__text {
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
}
.main-top__text strong {
  font-weight: 700;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: center;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 769px) {
  .header {
    gap: 16px;
    padding: 16px 0;
  }
}

.header__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}
@media (min-width: 769px) {
  .header__heading {
    font-size: 38px;
  }
}
.header__heading p {
  margin: 0;
  width: 100%;
  max-width: 709px;
}

.header__date {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
  width: 100%;
  margin: 0;
}

/* ==========================================================================
   LIST
   ========================================================================== */
.list-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 769px) {
  .list-wrap {
    gap: 16px;
  }
}

.list-wrap__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  margin: 0;
}
.list-wrap__text--bold {
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 579px;
  padding-left: 16px;
  list-style: none;
  margin: 0;
}

.list__item {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.list__item p {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.list__item p strong {
  font-weight: 700;
}

.list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .hero {
    padding: 24px 0;
  }
}

.hero__image {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   MEDIA WRAP
   ========================================================================== */
.media-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .media-wrap {
    padding: 24px 0;
  }
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 16px;
}

.media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==========================================================================
   INFO BOX
   ========================================================================== */
.info-box {
  background-color: var(--color-bg-surface);
  border: 2px solid var(--color-border-brand);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .info-box {
    gap: 16px;
    padding: 32px;
    font-size: 20px;
  }
}
.info-box p {
  width: 100%;
  margin: 0;
}
.info-box p strong {
  font-weight: 700;
}

/* ==========================================================================
   PRODUCT BOX
   ========================================================================== */
.product-box {
  position: relative;
  border: 1px solid var(--color-border-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1200px) {
  .product-box {
    flex-direction: row;
    gap: 16px;
    padding: 32px;
  }
}

.product-box__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  margin: 0;
}
.product-box__text strong {
  font-weight: 700;
}

.product-box__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 354px;
  aspect-ratio: 1/1;
}

.product-box__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.product-box__oil-image {
  position: absolute;
  width: auto;
  height: 198px;
  bottom: 0px;
  right: 0px;
}
@media (min-width: 500px) {
  .product-box__oil-image {
    height: 280px;
  }
}
@media (min-width: 1000px) {
  .product-box__oil-image {
    height: 236px;
    bottom: 40px;
  }
}

/* ==========================================================================
   TEXT WRAP
   ========================================================================== */
.text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 769px) {
  .text-wrap {
    padding: 16px 0;
  }
}

.text-wrap__heading {
  flex: 1;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  max-width: 745px;
  margin: 0;
}
@media (min-width: 769px) {
  .text-wrap__heading {
    font-size: 38px;
  }
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .offer {
    padding: 24px;
  }
}

.offer__wrapper {
  border: 1px solid #f6f6f6;
  border-radius: 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px;
  width: 100%;
}
@media (min-width: 769px) {
  .offer__wrapper {
    padding: 32px;
  }
}

.offer__deadline-card {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 16px 8px;
  width: 100%;
}
@media (min-width: 769px) {
  .offer__deadline-card {
    padding: 24px 16px;
  }
}

.offer__deadline-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-accent-red);
  text-align: center;
  width: 100%;
  margin: 0;
}
@media (min-width: 769px) {
  .offer__deadline-text {
    font-size: 20px;
  }
}

.offer__progress-bar {
  background-color: #e7e7e7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 24px;
  width: 100%;
  max-width: 534px;
  border-radius: 100vmax;
  overflow: hidden;
}

.offer__progress-fill {
  background-color: var(--color-accent-red);
  display: flex;
  height: 100%;
  width: 85%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-radius: 100vmax;
  overflow: hidden;
  padding-right: 24px;
}

.main.animate-init .offer__progress-fill {
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes progress-fill-animation {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes progress-label-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main.animate-init .offer.in-view .offer__progress-fill {
  animation: progress-fill-animation 1.2s cubic-bezier(0.33, 0.85, 0.45, 1) forwards;
}

.offer__progress-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.main.animate-init .offer__progress-label {
  opacity: 0;
}

.main.animate-init .offer.in-view .offer__progress-label {
  animation: progress-label-animation 0.4s 1s ease-out forwards;
}

.offer__stock-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 0;
}
.offer__stock-text strong {
  color: var(--color-accent-red);
}

.offer__urgency {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 0;
}

.offer__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-weight: 700;
}

.offer__price-label {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 0;
}

.offer__prices {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.offer__price-old {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-accent-red);
  text-decoration: line-through;
}

.offer__price-new {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent-green);
}
@media (min-width: 769px) {
  .offer__price-new {
    font-size: 38px;
  }
}

.offer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 430.65px;
  max-height: 255px;
  background-color: #c9c9c9;
  border-radius: 16px;
  overflow: hidden;
}

.offer__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 16px;
}
@media (min-width: 769px) {
  .offer__cta {
    padding-bottom: 24px;
  }
}
.offer__cta--bottom {
  padding: 16px 0;
}
@media (min-width: 769px) {
  .offer__cta--bottom {
    padding: 24px 0;
  }
}

.offer__link {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-link);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  width: 100%;
  max-width: 592px;
  transition: color 0.2s ease;
}
@media (min-width: 769px) {
  .offer__link {
    font-size: 28px;
  }
}
.offer__link:hover {
  color: #0000cc;
}

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

.offer__benefit {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  justify-content: center;
}

.offer__benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.offer__benefit-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}

/* ==========================================================================
   MAIN BOTTOM - COMMENTS SECTION
   ========================================================================== */
.main-bottom {
  background-color: var(--color-bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 8px 32px;
  width: 100%;
}
@media (min-width: 769px) {
  .main-bottom {
    padding: 16px 16px 48px;
  }
}

/* ==========================================================================
   COMMENTS FORM
   ========================================================================== */
.comments-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.comments-form__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  margin: 0;
}
@media (min-width: 769px) {
  .comments-form__title {
    font-size: 32px;
  }
}

.comments-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.comments-form__input {
  border: 1px solid var(--color-border-primary);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 4px 8px;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
}
@media (min-width: 769px) {
  .comments-form__input {
    padding: 8px;
  }
}

.comments-form__textarea {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-primary);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100px;
  overflow: auto;
  padding: 5px 9px 33px;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  resize: vertical;
}
@media (min-width: 769px) {
  .comments-form__textarea {
    padding: 9px 9px 49px;
  }
}

.comments-form__buttons {
  display: flex;
  gap: 12px 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.comments-form__button {
  background-color: #888;
  border: none;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (min-width: 769px) {
  .comments-form__button {
    padding: 8px;
  }
}
.comments-form__button:hover {
  background-color: #5d5d5d;
}

.comments-form__error {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-accent-red);
  width: 100%;
  margin: 0;
}

/* ==========================================================================
   COMMENTS LIST
   ========================================================================== */
.comments-wrapper {
  padding: 24px 0 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .comments-wrapper {
    padding: 32px 0 24px;
  }
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .comments-list {
    gap: 24px;
  }
}

.added-comments {
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .added-comments {
    margin-bottom: 24px;
  }
}

.comment {
  background-color: var(--color-bg-white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.comment__avatar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 72px;
  height: 48px;
  padding-right: 24px;
  max-width: 808px;
}

.comment__avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.comment__header {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  width: 100%;
}
@media (min-width: 769px) {
  .comment__header {
    gap: 4px 16px;
  }
}

.comment__header-text {
  display: flex;
  gap: 4px;
  align-items: center;
  white-space: nowrap;
}

.comment__author {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.comment__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.comment__badge {
  border: 1px solid var(--color-border-secondary);
  border-radius: 32px;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 8px;
}

.comment__badge-icon {
  width: 11px;
  height: 8px;
}

.comment__badge-text {
  font-size: 12px;
  line-height: 1;
  color: var(--color-secondary);
  white-space: nowrap;
}

.comment__text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 602px;
  width: 100%;
  margin: 0;
}

.comment__actions {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.comment__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  background: none;
  border: none;
  cursor: pointer;
}
.comment__action img {
  width: auto;
  height: auto;
}

.comment__divider {
  width: 1px;
  height: 10px;
  background-color: var(--color-border-primary);
}

/* ==========================================================================
   ASIDE - WEATHER WIDGET
   ========================================================================== */
.aside {
  display: none;
  width: 304px;
  min-height: 300px;
}
@media (min-width: 1000px) {
  .aside {
    display: block;
  }
}

.aside__weather {
  width: 100%;
  height: 298px;
  overflow: hidden;
  background-color: var(--color-bg-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-bg-footer);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px;
  width: 100%;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 1088px;
  padding: 0 32px;
  width: 100%;
}
@media (min-width: 769px) {
  .footer__container {
    gap: 24px;
  }
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
.footer__legal p {
  width: 100%;
  margin: 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}
.footer__nav a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--color-text-primary);
}
.footer__nav a:hover {
  text-decoration: none;
}

.footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  width: 100%;
}
.footer__disclaimer p {
  width: 100%;
  margin: 0;
}

.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%;
}

.terms {
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
}
.terms label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #7f919e;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}
.terms .terms-error,
.terms .form-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms .terms-error.show,
.terms .form-error.show {
  display: block;
}

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

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

.summary-top {
  padding: 36px 8px;
}
@media (min-width: 769px) {
  .summary-top {
    padding: 48px 16px;
  }
}

.summary-top__header {
  margin-bottom: clamp(12px, 2.0833333333vw, 16px);
}
.summary-top__header h1 {
  color: var(--colors-text-primary, #262626);
  text-align: center;
  /* heading/call-page/h1 */
  font-family: var(--typography-font-family-primary, Roboto);
  font-size: clamp(42px, 7.2916666667vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.summary-top__header p {
  color: var(--colors-text-primary, #262626);
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}
.summary-top__header p span {
  color: #19ae30;
}

.summary__image-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  margin-bottom: clamp(12px, 2.0833333333vw, 16px);
  padding-bottom: clamp(24px, 4.1666666667vw, 32px);
}
@media (min-width: 850px) {
  .summary__image-text {
    flex-direction: row;
    gap: 48px;
  }
}
@media (min-width: 1000px) {
  .summary__image-text {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 1215px) {
  .summary__image-text {
    flex-direction: row;
    gap: 48px;
  }
}

.summary__image-product-mobile {
  position: absolute;
  width: 210px;
  height: auto;
  right: -8px;
  top: 220px;
  z-index: 2;
}
@media (min-width: 550px) {
  .summary__image-product-mobile {
    display: none;
  }
}

.summary__image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.summary__image .summary__image-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  position: relative;
}
.summary__image .summary__image-product {
  display: none;
}
@media (min-width: 550px) {
  .summary__image .summary__image-product {
    display: block;
    width: 210px;
    height: auto;
    position: absolute;
    left: 100%;
    bottom: -30px;
    transform: translateX(-30%);
  }
}

.summary__text {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.summary__text h2 {
  color: var(--colors-text-primary, #262626);
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}
.summary__text h2 span {
  color: #ef4444;
}
.summary__text p {
  color: var(--colors-text-primary, #262626);
  font-size: var(--typography-font-size-body-md, 16px);
  font-weight: 400;
  line-height: 1.5;
}

.summary__cta {
  width: 100%;
  padding-bottom: clamp(16px, 3.125vw, 24px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary__button {
  position: relative;
  box-shadow: 0 10px 20px 0 rgba(67, 160, 71, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
  transform-origin: center;
  transform: scale(1);
}
.summary__button::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: calc(100% - 4px);
  background: #2e7d32;
  border-radius: 8px;
  z-index: 0;
  transition: transform 0.2s ease;
}
.summary__button.hidden {
  display: none;
}
.summary__button:active {
  transform: scale(0.98);
}
@media (hover: hover) and (pointer: fine) {
  .summary__button:hover .summary__button-content {
    transform: translateY(2px);
  }
  .summary__button:hover .summary__button-icon {
    transform: translateX(10px);
  }
}

.summary__button-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 63px;
  max-width: 652px;
  align-items: center;
  padding: clamp(12px, 2.0833333333vw, 16px) clamp(4px, 1.0416666667vw, 8px) clamp(12px, 2.0833333333vw, 16px) clamp(24px, 4.1666666667vw, 32px);
  gap: clamp(12px, 2.0833333333vw, 16px);
  border-radius: 8px;
  background: linear-gradient(180deg, #66bb6a 0%, #43a047 100%);
  transition: transform 0.2s ease;
}

.summary__button-text {
  flex: 1;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  font-size: clamp(22px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.summary__button-icon {
  position: relative;
  width: 38px;
  transition: transform 0.2s ease;
}
.summary__button-icon img {
  width: 24px;
  height: auto;
}

.summary__phone {
  display: flex;
  min-height: 63px;
  max-width: 652px;
  align-items: center;
  padding: 12px;
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  background: white;
  border: 3px solid #66bb6a;
  box-shadow: 0 10px 20px 0 rgba(67, 160, 71, 0.3);
  transition: transform 0.2s ease;
  transform-origin: center;
  transform: scale(1);
}
.summary__phone span {
  flex: 1;
  color: #333;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  font-size: clamp(28px, 4.1666666667vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.summary__phone:active {
  transform: scale(0.98);
}
.summary__phone.hidden {
  display: none;
}

.summary-info-details {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
  margin-top: 24px;
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.summary-info-details__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 8px;
  min-width: 220px;
  max-width: 300px;
}

.summary-info-details__item-icon {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: auto;
}

.summary-info-details__item-text {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.summary-alert {
  margin-top: clamp(12px, 2.0833333333vw, 16px);
}
.summary-alert p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #262626;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.summary-alert span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ef4444;
  text-transform: uppercase;
  font-weight: 700;
}
.summary-alert span img {
  width: 24px;
  max-width: 24px;
  min-width: 24px;
  height: auto;
}/*# sourceMappingURL=style.css.map */