:root {
  --red: #9b151f;
  --red-dark: #941000;
  --black: #1b1b1b;
  --footer: #151515;
  --soft: #f1f1f1;
  --line: #dedede;
  --blue: #269bf2;
  --text: #282828;
  --muted: #6d6d6d;
  font-family: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.mobile-header {
  background: #fff;
}

.header-line {
  height: 138px;
  display: grid;
  grid-template-columns: 1fr 62px 62px;
  align-items: center;
  gap: 22px;
  padding: 0 32px 0 42px;
}

.logo img {
  width: 204px;
  height: auto;
  display: block;
}

.icon-button {
  width: 62px;
  height: 62px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 15px;
  width: 38px;
  height: 31px;
  background: url("assets/icon-cart.svg") center / contain no-repeat;
  filter: brightness(0);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 32px;
  height: 4px;
  background: #1d1d1d;
  box-shadow: 0 10px 0 #1d1d1d;
}

.menu-icon::before {
  top: 20px;
}

.menu-icon::after {
  top: 40px;
  box-shadow: none;
}

.free-shipping {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  font-size: 24px;
}

.truck {
  width: 32px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.truck::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 11px;
  border: 3px solid #fff;
}

.truck::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 9px;
  width: 8px;
  height: 7px;
  border: 3px solid #fff;
  border-left: 0;
  box-shadow:
    -18px 8px 0 -5px #fff,
    0 8px 0 -5px #fff;
}

.header-tools {
  height: 160px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  padding-right: 180px;
}

.line-user,
.line-search {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  position: relative;
}

.line-user::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 3px;
  width: 22px;
  height: 22px;
  border: 4px solid #0d0d0d;
  border-radius: 50%;
}

.line-user::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 30px;
  width: 40px;
  height: 22px;
  border: 4px solid #0d0d0d;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.line-search::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 29px;
  height: 29px;
  border: 4px solid #0d0d0d;
  border-radius: 50%;
}

.line-search::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 33px;
  width: 25px;
  height: 4px;
  background: #0d0d0d;
  transform: rotate(45deg);
  transform-origin: left center;
}

.page {
  background: #fff;
}

.product {
  padding: 0 22px;
}

.title-band {
  margin: 0 9px;
  background: var(--red);
  color: #fff;
  padding: 17px 21px 14px;
}

.title-band h1 {
  margin: 0;
  font-size: 45px;
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-meta {
  padding: 36px 10px 0;
  color: var(--muted);
}

.code {
  margin: 0 0 18px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 1px;
}

.stars {
  color: #f0ad00;
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}

.rating-row a {
  color: var(--blue);
  font-size: 29px;
}

.rating-score {
  color: #3d3d3d;
  font-size: 29px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #3d3d3d;
  font-size: 30px;
}

.brand-row span {
  width: 20px;
  height: 26px;
  border-left: 3px solid #ddd;
  display: inline-block;
}

.product-image {
  height: 682px;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 62px;
}

.product-image img {
  width: min(100%, 810px);
  height: auto;
  display: block;
}

.product-image .combo-image {
  width: min(100%, 760px);
  max-height: 560px;
  object-fit: contain;
}

.purchase {
  padding: 0 10px;
}

.price-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  min-height: 263px;
  padding-top: 2px;
  border-bottom: 1px solid var(--line);
}

.price {
  display: block;
  color: #202020;
  font-size: 57px;
  line-height: 0.98;
  font-weight: 900;
}

.vat {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 28px;
  line-height: 1;
}

.unit {
  display: block;
  margin-top: 28px;
  color: #777;
  font-size: 28px;
}

.stock {
  margin-top: 5px;
  margin-right: 389px;
  color: #008a00;
  font-size: 33px;
  line-height: 1;
  font-weight: 800;
}

.cart-form {
  min-height: 243px;
  display: grid;
  grid-template-columns: 236px 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.cart-form input {
  width: 236px;
  height: 100px;
  border: 2px solid #e1e1e1;
  border-radius: 14px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  appearance: textfield;
}

.cart-form input::-webkit-inner-spin-button,
.cart-form input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.add-button,
.article-button {
  background: var(--black);
  color: #fff;
  border: 2px solid #24778b;
  min-height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 36px;
  font-weight: 800;
  cursor: pointer;
}

.add-button {
  width: 460px;
  justify-self: start;
}

.button-arrow {
  width: 36px;
  height: 36px;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  background: #fff;
}

.button-arrow::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-top: 6px solid var(--black);
  border-right: 6px solid var(--black);
  transform: rotate(45deg);
}

.button-arrow::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 20px;
  height: 6px;
  background: var(--black);
}

.description {
  padding: 72px 0 71px;
  color: #555;
  font-size: 30px;
  line-height: 1.58;
}

.description p {
  margin: 0 0 50px;
}

.description p:last-child {
  margin-bottom: 0;
}

.action-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 65px 12px 75px;
  font-size: 30px;
  color: #252525;
}

.action-links a {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.action-links img,
.watch-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.42;
}

.watch-icon {
  position: relative;
  display: inline-block;
}

.watch-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 8px;
  width: 9px;
  height: 38px;
  border: 3px solid #6d6f73;
  box-shadow:
    17px 10px 0 -3px #fff,
    17px 10px 0 0 #6d6f73,
    34px -6px 0 -3px #fff,
    34px -6px 0 0 #6d6f73;
}

.watch-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-top: 4px solid #6d6f73;
  border-right: 4px solid #6d6f73;
}

.tabs {
  height: 95px;
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr 64px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.tab,
.tab-more {
  border: 0;
  background: #fff;
  color: #111;
  text-transform: uppercase;
  font-size: 29px;
  cursor: pointer;
}

.tab {
  font-weight: 400;
}

.tab.is-selected {
  font-weight: 800;
}

.tab-more {
  background: #8c8c8a;
  color: #fff;
  font-size: 30px;
}

.tab-panel {
  display: none;
  padding: 77px 10px 0;
}

.tab-panel.is-visible {
  display: block;
}

.tab-panel h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: 49px;
  line-height: 1.1;
  font-weight: 900;
}

.empty-description {
  margin: 0 0 75px;
  color: #5b5b5b;
  font-size: 29px;
}

.detailed-copy {
  margin: 0 0 75px;
  color: #5b5b5b;
  font-size: 29px;
  line-height: 1.58;
}

.detailed-copy p {
  margin: 0 0 36px;
}

.detailed-copy p:last-child {
  margin-bottom: 0;
}

.params {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  font-size: 29px;
}

.params tr:nth-child(odd) {
  background: #f1f1f1;
}

.params th,
.params td {
  padding: 23px 34px;
  text-align: left;
  vertical-align: top;
}

.params th {
  width: 42%;
  color: #000;
  font-weight: 900;
}

.params td {
  color: #000;
  font-weight: 400;
}

.params a {
  color: var(--blue);
}

.brand-strip {
  height: 400px;
  margin-top: 183px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-strip h2 {
  margin: 0;
  color: #222;
  font-size: 51px;
  line-height: 1.42;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-section {
  padding: 59px 32px 81px;
  background: #fff;
}

.blog-card {
  text-align: center;
  margin-bottom: 80px;
}

.blog-card img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 38px;
}

.blog-card h2 {
  max-width: 810px;
  margin: 0 auto 44px;
  color: #242424;
  font-size: 37px;
  line-height: 1.18;
  font-weight: 900;
}

.blog-card p {
  max-width: 820px;
  margin: 0 auto 40px;
  color: #252525;
  font-size: 29px;
  line-height: 1.75;
}

.article-button {
  min-width: 360px;
  min-height: 91px;
  padding: 0 32px 0 38px;
  border-color: var(--black);
  font-size: 27px;
  text-transform: uppercase;
}

.article-button .button-arrow {
  width: 36px;
  height: 36px;
}

.more-articles {
  width: 500px;
  min-height: 94px;
  margin: 100px auto 0;
  border: 2px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242424;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  border-top: 20px solid #101010;
}

.newsletter {
  padding: 78px 22px 16px;
  background: #1d1d1d;
}

.newsletter h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
}

.newsletter-input {
  display: grid;
  grid-template-columns: 1fr 88px;
  height: 88px;
}

.newsletter-input input {
  width: 100%;
  border: 0;
  padding: 0 40px;
  background: #fff;
  color: #1b1b1b;
  font-size: 29px;
}

.newsletter-input button {
  border: 0;
  background: var(--red);
  position: relative;
}

.newsletter-input button::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 32px;
  width: 35px;
  height: 3px;
  background: #fff;
}

.newsletter-input button::after {
  content: "";
  position: absolute;
  right: 29px;
  top: 26px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.consent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  color: #fff;
  font-size: 26px;
}

.consent input {
  width: 28px;
  height: 28px;
  margin: 0;
}

.consent b {
  color: #e02a32;
  font-weight: 400;
}

.footer-links {
  padding: 45px 32px 69px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #fff;
  font-size: 29px;
}

.contact-list img {
  width: 53px;
  height: 53px;
  object-fit: contain;
}

.footer-col {
  margin-top: 69px;
}

.footer-col h2 {
  margin: 0 0 33px;
  color: #fff;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.footer-col h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  margin-top: 32px;
  background: var(--red);
}

.footer-col.dimmed h2 {
  color: rgba(255, 255, 255, 0.05);
}

.footer-col a {
  display: block;
  width: max-content;
  margin: 0 0 17px;
  color: #fff;
  font-size: 26px;
}

.back-top {
  padding: 0 6px;
  background: var(--red-dark);
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 385px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 49px 32px;
  background: #0f0f0f;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.shoptet-mark {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 21px;
  color: #fff;
  font-size: 24px;
}

.tiles {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.tiles::before {
  content: "";
  display: block;
  grid-column: 2;
  grid-row: 1;
  background: #ffc100;
  box-shadow:
    -18px 18px 0 #0ccd44,
    0 18px 0 #328cff;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  font-size: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  body {
    max-width: 874px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .header-line {
    height: 82px;
    grid-template-columns: 1fr 40px 40px;
    padding: 0 18px 0 20px;
  }

  .logo img {
    width: 150px;
  }

  .free-shipping {
    height: 36px;
    font-size: 15px;
  }

  .header-tools {
    height: 76px;
    padding-right: 70px;
  }

  .title-band h1 {
    font-size: 24px;
  }

  .product-meta {
    padding-top: 18px;
  }

  .rating-row a,
  .brand-row,
  .description,
  .detailed-copy,
  .params,
  .action-links,
  .blog-card p,
  .newsletter-input input,
  .contact-list a,
  .footer-col a {
    font-size: 16px;
  }

  .stars {
    font-size: 20px;
  }

  .product-image {
    height: 390px;
    margin-top: 18px;
    padding-bottom: 26px;
  }

  .product-image .combo-image {
    max-height: 360px;
  }

  .price-block {
    min-height: 122px;
  }

  .price {
    font-size: 31px;
  }

  .vat,
  .unit {
    font-size: 15px;
  }

  .stock {
    font-size: 19px;
  }

  .stock {
    margin-right: 0;
  }

  .cart-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .cart-form input,
  .add-button {
    width: 100%;
  }

  .add-button,
  .article-button {
    font-size: 19px;
  }

  .description {
    padding: 28px 0;
  }

  .action-links {
    grid-template-columns: 1fr 1fr;
    padding: 28px 10px 34px;
  }

  .tabs {
    grid-template-columns: 1fr;
    height: auto;
  }

  .tab,
  .tab-more {
    min-height: 50px;
    font-size: 16px;
  }

  .tab-panel {
    padding-top: 34px;
  }

  .tab-panel h2 {
    font-size: 25px;
  }

  .params th,
  .params td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .brand-strip {
    height: 170px;
    margin-top: 56px;
  }

  .brand-strip h2 {
    font-size: 26px;
  }

  .blog-section {
    padding: 34px 22px 46px;
  }

  .blog-card h2 {
    font-size: 21px;
  }

  .more-articles {
    width: 100%;
  }

  .newsletter h2 {
    font-size: 18px;
  }

  .footer-col h2 {
    font-size: 21px;
  }
}

/* Real mobile scale: the reference screenshots are 2x retina captures. */
body {
  max-width: 437px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}

.header-line {
  height: 69px;
  grid-template-columns: 1fr 31px 31px;
  gap: 11px;
  padding: 0 16px 0 21px;
}

.logo img {
  width: 102px;
}

.icon-button {
  width: 31px;
  height: 31px;
}

.cart-icon::before {
  left: 5px;
  top: 7px;
  width: 20px;
  height: 17px;
}

.menu-icon::before,
.menu-icon::after {
  left: 7px;
  width: 16px;
  height: 2px;
  box-shadow: 0 5px 0 #1d1d1d;
}

.menu-icon::before {
  top: 10px;
}

.menu-icon::after {
  top: 20px;
  box-shadow: none;
}

.free-shipping {
  height: 25px;
  gap: 7px;
  font-size: 12px;
}

.truck {
  width: 16px;
  height: 11px;
}

.truck::before {
  top: 2px;
  width: 9px;
  height: 6px;
  border-width: 2px;
}

.truck::after {
  left: 10px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-width: 2px;
  box-shadow:
    -9px 5px 0 -3px #fff,
    0 5px 0 -3px #fff;
}

.header-tools {
  height: 80px;
  gap: 16px;
  padding-right: 90px;
}

.line-user,
.line-search {
  width: 24px;
  height: 24px;
}

.line-user::before {
  left: 6px;
  top: 1px;
  width: 11px;
  height: 11px;
  border-width: 2px;
}

.line-user::after {
  left: 2px;
  top: 15px;
  width: 20px;
  height: 11px;
  border-width: 2px;
  border-bottom: 0;
}

.line-search::before {
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-width: 2px;
}

.line-search::after {
  left: 17px;
  top: 17px;
  width: 13px;
  height: 2px;
}

.product {
  padding: 0 11px;
}

.title-band {
  margin: 0 5px;
  padding: 9px 11px 8px;
}

.title-band h1 {
  font-size: 22.5px;
  line-height: 1.08;
}

.product-meta {
  padding: 18px 5px 0;
}

.code {
  margin: 0 0 9px;
}

.rating-row {
  gap: 9px;
  margin-bottom: 1px;
}

.stars {
  font-size: 17px;
}

.rating-row a {
  font-size: 14.5px;
}

.rating-score {
  font-size: 14.5px;
}

.brand-row {
  gap: 9px;
  font-size: 15px;
}

.brand-row span {
  width: 10px;
  height: 13px;
  border-left-width: 2px;
}

.product-image {
  height: 341px;
  margin-top: 0;
  padding-bottom: 31px;
}

.product-image img {
  width: min(100%, 405px);
}

.product-image .combo-image {
  width: min(100%, 380px);
  max-height: 280px;
}

.purchase {
  padding: 0 5px;
}

.price-block {
  min-height: 132px;
}

.price {
  font-size: 28.5px;
}

.vat {
  margin-top: 3px;
  font-size: 14px;
}

.unit {
  margin-top: 14px;
  font-size: 14px;
}

.stock {
  margin-top: 3px;
  margin-right: 195px;
  font-size: 16.5px;
}

.cart-form {
  min-height: 122px;
  grid-template-columns: 118px 1fr;
  gap: 15px;
}

.cart-form input {
  width: 118px;
  height: 50px;
  border-radius: 7px;
  font-size: 20px;
}

.add-button,
.article-button {
  min-height: 48px;
  gap: 9px;
  font-size: 18px;
}

.add-button {
  width: 100%;
  max-width: 230px;
}

.button-arrow {
  width: 18px;
  height: 18px;
}

.button-arrow::before {
  left: 5px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-top-width: 3px;
  border-right-width: 3px;
}

.button-arrow::after {
  left: 4px;
  top: 8px;
  width: 10px;
  height: 3px;
}

.description {
  padding: 36px 0;
  font-size: 15px;
  line-height: 1.58;
}

.description p {
  margin: 0 0 25px;
}

.action-links {
  grid-template-columns: repeat(4, auto);
  gap: 9px;
  padding: 33px 6px 38px;
  font-size: 15px;
}

.action-links a {
  gap: 9px;
}

.action-links img,
.watch-icon {
  width: 27px;
  height: 27px;
}

.watch-icon::before {
  left: 3px;
  bottom: 4px;
  width: 5px;
  height: 19px;
  border-width: 2px;
  box-shadow:
    9px 5px 0 -2px #fff,
    9px 5px 0 0 #6d6f73,
    18px -3px 0 -2px #fff,
    18px -3px 0 0 #6d6f73;
}

.watch-icon::after {
  width: 9px;
  height: 9px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.tabs {
  height: 48px;
  grid-template-columns: 1fr 1.22fr 1fr 32px;
}

.tab,
.tab-more {
  min-height: 0;
  font-size: 14.5px;
}

.tab-panel {
  padding: 39px 5px 0;
}

.tab-panel h2 {
  margin-bottom: 7px;
  font-size: 24.5px;
}

.empty-description,
.detailed-copy {
  margin-bottom: 38px;
  font-size: 14.5px;
}

.detailed-copy p {
  margin-bottom: 18px;
}

.params {
  margin-top: 13px;
  font-size: 14.5px;
}

.params th,
.params td {
  display: table-cell;
  width: auto;
  padding: 12px 17px;
}

.params th {
  width: 42%;
}

.brand-strip {
  height: 200px;
  margin-top: 92px;
}

.brand-strip h2 {
  font-size: 25.5px;
}

.blog-section {
  padding: 30px 16px 41px;
}

.blog-card {
  margin-bottom: 40px;
}

.blog-card img {
  margin-bottom: 19px;
}

.blog-card h2 {
  margin-bottom: 22px;
  font-size: 18.5px;
}

.blog-card p {
  margin-bottom: 20px;
  font-size: 14.5px;
}

.article-button {
  min-width: 180px;
  min-height: 46px;
  padding: 0 16px 0 19px;
  font-size: 13.5px;
}

.article-button .button-arrow {
  width: 18px;
  height: 18px;
}

.more-articles {
  width: min(250px, 100%);
  min-height: 47px;
  margin-top: 50px;
  font-size: 14.5px;
}

.site-footer {
  border-top-width: 10px;
}

.newsletter {
  padding: 39px 11px 8px;
}

.newsletter h2 {
  font-size: 15.5px;
  letter-spacing: 2.5px;
}

.newsletter-input {
  grid-template-columns: 1fr 44px;
  height: 44px;
}

.newsletter-input input {
  padding: 0 20px;
  font-size: 14.5px;
}

.newsletter-input button::before {
  left: 14px;
  top: 16px;
  width: 18px;
  height: 2px;
}

.newsletter-input button::after {
  right: 14px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.consent {
  gap: 7px;
  margin-top: 13px;
  font-size: 13px;
}

.consent input {
  width: 14px;
  height: 14px;
}

.footer-links {
  padding: 23px 16px 35px;
}

.contact-list {
  gap: 8px;
  margin-bottom: 24px;
}

.contact-list a {
  gap: 12px;
  font-size: 14.5px;
}

.contact-list img {
  width: 27px;
  height: 27px;
}

.footer-col {
  margin-top: 35px;
}

.footer-col h2 {
  margin-bottom: 17px;
  font-size: 18px;
}

.footer-col h2::after {
  width: 50px;
  margin-top: 16px;
}

.footer-col a {
  margin-bottom: 9px;
  font-size: 13px;
}

.footer-bottom {
  min-height: 193px;
  gap: 10px;
  padding: 25px 16px;
}

.footer-bottom p {
  font-size: 12.5px;
}

.shoptet-mark {
  gap: 12px;
  margin-top: 11px;
  font-size: 12px;
}

.tiles {
  width: 17px;
  height: 17px;
}

.tiles::before {
  box-shadow:
    -9px 9px 0 #0ccd44,
    0 9px 0 #328cff;
}

@media (min-width: 960px) {
  body {
    max-width: 437px;
  }
}

@media (max-width: 390px) {
  .cart-form {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }

  .cart-form input {
    width: 110px;
  }

  .add-button {
    font-size: 16px;
  }

  .action-links {
    font-size: 13px;
  }
}
