:root {
  --primary: #0E4F24;
  --primary-dark: #062511;
  --secondary: #1CB34F;
  --background: #F1F1F1;
  --white: #FFFFFF;
  --grey: #D4D4D4;
  --success: #1CB34F;
  --fw-thin: 100;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;
}

* :focus {
  outline-color: var(--primary-dark);
}


html {
  font-family: "Montserrat", serif;
}

body * {
  font-family: "Montserrat", serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--background);
  color: var(--primary-dark);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

a {
  color: var(--secondary);
  text-decoration: underline;
}

.container {
  padding: 2rem 3.75rem;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-size: 3rem;
  font-weight: var(--fw-black);
}

.header__links {
  display: flex;
  gap: 0.8rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.header__link {
  font-size: 1rem;
  font-weight: var(--fw-light);
  line-height: 150%;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.625rem;
  border-radius: 0.25rem;
  text-decoration: none;
}

.text-section {
  max-width: 50rem;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.text-section__title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.text-section__description {
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--fw-semi-bold);
  line-height: 150%;
}

.currency-selector {
  display: flex;
  justify-content: center;
}


.currency-selector__box {
  position: relative;
  border: 1px solid var(--grey);
}

.currency-selector__box svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
}

.currency-selector select {
  font-size: 1rem;
  font-weight: var(--fw-light);
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  background-color: transparent;
  border: 0;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.products {
  display: grid;
  grid-template-columns: minmax(auto, 435px) minmax(auto, 435px);
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 7.5rem 10rem 7.5rem; 
}

.product {
  border-radius: 0.5rem;
  background-color: var(--white);
  padding: 1.625rem 2rem;
  width: 100%;
}

.product--highlighted {
  background-image: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-dark) 45%, var(--secondary) 100%);
  color: var(--white);
  position: relative;
  margin: 0;
}

.product--highlighted svg path {
  stroke: var(--white);
}

.product--highlighted .product__action {
  background-color: var(--secondary);
}

.product--highlighted .product__divider.product__divider span {
  background-color: var(--secondary);
}

.product__highlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  padding: 0.4rem 2rem;
  border-radius: 0.25rem;
}

.product__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semi-bold);
  margin: 0 0 1.75rem 0;
}

.product__price-text {
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
}

.product__price-amount {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  min-height: 4.5rem;
}

.product__price-amount-price {
  font-size: 3rem;
  font-weight: var(--fw-semi-bold);
  color: var(--primary);
  line-height: 1.5rem;
  white-space: nowrap;
}

.product__price-amount-currency {
  font-size: 1rem;
  font-weight: var(--fw-regular);
}

.product__price-amount-label {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5rem;
}

.product__description {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  list-style: 150%;
  margin-top: 0.5rem;
  height: 2.5rem;
}

.product__action {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 150%;
  background-color: var(--secondary);
  color: var(--primary-dark);
  border: none;
  padding: 0.625rem;
  border-radius: 0.25rem;
  margin-top: 2rem;
}

.product__divider {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 2rem 0;
}


.product__divider span:nth-child(1),
.product__divider span:nth-child(3) {
  flex: 1;
  height: 1px;
  width: auto;
  background-color: var(--grey);
}

.product__divider span:nth-child(2) {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: var(--grey);
}

.product__features-title {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  margin: 0 0 2rem 0;
}

.product__features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product__features-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.product__features-item dt {
  width: 1.5rem;
  height: auto;
  text-align: center;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.product__features-item dd {
  margin: 0;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
}

.feature-table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 1440px;
}

.feature-table th {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  padding: 1rem 0;
}

.feature-table th:first-child,
.feature-table td:first-child {
  text-align: left;
}

.feature-table td {
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  padding: 1rem 0;
  text-align: center;
}

.feature-table td > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-table__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--grey);
  border-radius: 50%;
}


.feature-table__checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--success);
  border-radius: 50%;
}

.feature-table__checkmark svg path {
  stroke: var(--white);
}

.section-box {
  background-color: var(--primary-dark);
  border-radius: 0.5rem;
  padding: 5rem;
  margin: 6rem 0;
}

.section-box__title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  text-align: center;
  margin-bottom: 5rem;
}

.list-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  column-gap: 5rem;
  row-gap: 5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.list-points__item {
  display: flex;
  flex-direction: column;
}

.list-points__item-dot {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  text-align: center;
}

.list-points__item-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 0;
  height: 2.5rem;
  text-align: center;
}

.list-points__item-description {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--white);
  line-height: 150%;
  text-align: center;
}

.text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding: 0 0 0 7.5rem;
  margin: 4rem 0;
}

.text-image__text {
  flex: 1;
  padding: 2.5rem 0;
  max-width: 40rem;
}

.text-image__text-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  margin: 0 0 2.5rem 0;
}

.text-image__text-description {
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  line-height: 150%;
  margin: 0;
}

.text-image__image {
  flex: 1;
  border-radius: 2.75rem;
  overflow: hidden;
  height: 35rem;
  margin-right: -7rem;
}

.text-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  padding: 2rem 3.75rem 1.5rem 3.75rem;
  background-image: linear-gradient(45deg, var(--primary-dark), var(--secondary));
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.footer__content-left {
  max-width: 35rem;
}

.footer__content-left img {
  width: 3rem
}

.footer__content-left-brand-name {
  font-size: 1.75rem;
  font-weight: var(--fw-black);
  color: var(--white);
  margin: 1rem 0;
}

.footer__content-left-description {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 150%;
}

.footer__cvr {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
}

.footer__cvr span {
  padding-left: 0.5rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05rem;
}

.page-article {
  max-width: 1100px;
  margin: 0 auto;
}

.page-article__title {
  font-size: 2.5rem;
}

@media screen and (max-width: 1440px) {
  .products { 
    padding: 2.5rem 0 10rem 0;
    grid-template-columns: 1fr 1fr;
  }

  .feature-table {
    padding: 0 5rem;
  }

  .text-image {
    padding: 0 0 0 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    gap: 1rem;
  }

  .logo img {
    width: 3rem;
    height: 3rem;
  }

  .logo span {
    font-size: 2rem;
  }

  .products {
    gap: 1rem;
  }

  .product {
    padding: 1.5rem 1.5rem;
  }
  
  .product__title {
    font-size: 1rem;
  }
  
  .product__price-text {
    font-size: 0.75rem;
  }
  
  .product__price-amount-price {
    font-size: 2rem;
  }
  
  .product__price-amount-currency {
    font-size: 0.75rem;
  }
  
  .product__price-amount-label {
    font-size: 0.75rem;
  }
  
  .product__description {
    font-size: 0.75rem;
  }
  
  .product__action {
    display: block;
    font-size: 0.75rem;
  }
  
  .product__features-list {
    gap: 1rem;
    margin: 0;
  }  
  
  .product__features-item dd {
    font-size: 0.75rem;
  }

  .product__features-item dt {
    font-size: 0.75rem;
  }

  .product__features-item svg path {
    stroke: var(--secondary);
  }

  .feature-table {
    padding: 0;
  }

  .feature-table th {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .feature-table td {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .feature-table__checkmark,
  .feature-table__close {
    width: 2rem;
    height: 2rem;
  }

  .section-box {
    padding: 2.5rem;
  }

  .section-box__title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .list-points__item-dot {
    font-size: 2rem;
  }

  .list-points__item-title {
    font-size: 1rem;
    height: 2rem;
  }

  .list-points__item-description {
    font-size: 0.75rem;
  }

  .list-points {
    column-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .text-image {
    padding: 0;
  }

  .text-image__text-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .text-image__text-description {
    font-size: 1rem;
  }

  .text-image__image {
    height: 25rem;
  }
}

@media screen and (max-width: 768px) {
  .container,
  .footer {
    padding: 2rem 1.5rem;
  }

  .text-section {
    padding: 1.5rem 0;
  }

  .text-section__title {
    font-size: 1rem;
  }

  .text-section__description {
    font-size: 1.25rem;
  }

  .products {
    padding: 0 0 5rem 0;
    display: flex;
    flex-wrap: wrap;
  }

  .feature-table th,
  .feature-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }

  .feature-table__checkmark,
  .feature-table__close {
    width: 1.5rem;
    height: 1.5rem;
  }

  .feature-table__checkmark svg,
  .feature-table__close svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .list-points {
    grid-template-columns: 1fr 1fr;
  }

  .text-image {
    flex-direction: column;
    gap: 2rem;
  }

  .text-image__text {
    max-width: unset;
  }

  .text-image__image {
    margin: 0;
  }
}

@media screen and (max-width: 425px) {
  .logo {
    gap: 1rem;
  }

  .logo img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .logo span {
    font-size: 1.5rem;
  }

  .hide-small {
    display: none;
  }

  .feature-table td:first-child {
    width: 25%;
  }

  .list-points {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 375px) {
  .feature-table th,
  .feature-table td {
    font-size: 0.65rem;
    padding: 0.5rem 0;
  }
}