@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body {
  background: #F4F4F4;
}

.nav-message {
  width: 100%;
  padding: 0.8rem 5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 182, 193, 0.6)), to(rgba(231, 193, 168, 0.6)));
  background: linear-gradient(90deg, rgba(255, 182, 193, 0.6) 0%, rgba(231, 193, 168, 0.6) 100%);
}
.nav-message p {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 5rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0px 8px 10px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 8px 10px -10px rgba(0, 0, 0, 0.5);
}
header .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 30rem;
}
header .search svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
header .search input {
  width: 20rem;
  font-size: 1.8rem;
  border: none;
  outline: none;
  border-bottom: 2px solid #000000;
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .nav .logo {
  width: 10rem;
  margin: 0 1rem;
}
header .nav .logo img {
  width: 100%;
}
header .nav ul li {
  display: inline;
  margin: 0 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
header .nav ul li a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .nav ul li a:hover {
  color: #FF6D83;
}
header .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 30rem;
}
header .icons svg {
  width: 3rem;
  height: 3rem;
  margin: 0 0.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .icons svg:hover {
  fill: #FF6D83;
}
header .icons .cart {
  position: relative;
}
header .icons .cart span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 100%;
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  background: #FF6D83;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .icons .language-menu {
  display: inline-block;
  position: relative;
  margin: 0 0.5rem;
}
header .icons .language-menu .flag-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}
header .icons .language-menu .flag-dropdown .flag-link:hover .flag-img {
  opacity: 1;
}
header .icons .language-menu .flag-link {
  display: inline-block;
}
header .icons .language-menu .flag-link .flag-img {
  width: 4rem;
  height: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 1px solid #c1bbbb;
}
header .icons .language-menu .flag-link:hover .flag-img, header .icons .language-menu .flag-link.active .flag-img {
  opacity: 1;
}
header .icons .language-menu .flag-link:first-child:hover + .flag-dropdown, header .icons .language-menu .flag-link:first-child.active + .flag-dropdown,
header .icons .language-menu .flag-link .flag-dropdown:hover {
  display: block;
}
header .icons .language-menu:hover .flag-dropdown {
  display: block;
}

main {
  width: 100%;
  min-height: calc(100vh - 15.5rem);
  padding: 3rem;
  background: url(img/background-main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main .main-img {
  width: 50rem;
  margin: 0 10rem;
}
main .main-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
main .main-text {
  font-family: "Caveat", cursive;
  margin: 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .main-text h1 {
  font-size: 7rem;
  font-family: "Caveat", cursive;
  color: #FF6D83;
  font-weight: 400;
  margin: 1rem 0rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
main .main-text .btn {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-transform: uppercase;
  background: #FF6D83;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
main .main-text .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#toggle {
  display: none;
}

nav {
  width: 100%;
  position: sticky;
  top: 8.5rem;
  z-index: 3;
  background: #ffffff;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 2px solid #000000;
  height: calc(100vh - 8.5rem);
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
}
nav ul li {
  margin: 0.5rem 0rem;
}
nav .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5rem 0rem;
}
nav .socials svg {
  width: 3rem;
  height: 3rem;
  margin: 0 0.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
nav .socials svg:hover {
  fill: #FF6D83;
}

.not-active-menu {
  display: none;
}

.active-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#introduction {
  background: #FF6D83;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 5rem;
}
#introduction h2 {
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin: 1rem;
  margin-top: 0;
}
#introduction p {
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  max-width: 80%;
  margin: 1rem;
}
#introduction .btn-w {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #FF6D83;
  text-transform: uppercase;
  background: #ffffff;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#introduction .btn-w:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#products-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 5rem;
}
#products-wrapper h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3rem;
}
#products-wrapper .products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 40rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4rem;
}
#products-wrapper .products .product {
  width: 40rem;
  position: relative;
}
#products-wrapper .products .product .product-img {
  position: relative;
  width: 40rem;
}
#products-wrapper .products .product .product-img img {
  width: 40rem;
  height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#products-wrapper .products .product .product-img .stock {
  position: absolute;
  background: #FF6D83;
  font-size: 1.8rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  top: 1.5rem;
  left: 1.5rem;
}

/* Fix 10.9.2023 */
#products-wrapper .products .product .product-img .stock2 {
  position: absolute;
  background: #FF6D83;
  font-size: 1.8rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  top: 6rem;
  left: 1.5rem;
}

#products-wrapper .products .product h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 1rem;
}
#products-wrapper .products .product .product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem;
}
#products-wrapper .products .product .product-row span {
  font-size: 2rem;
  font-weight: 500;
}
#products-wrapper .products .product .product-row .btn {
  padding: 0.3rem 3rem;
  margin-right: 0;
}

#newslatter {
  background: #FF6D83;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 5rem;
}
#newslatter h2 {
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin: 1rem;
  margin-top: 0;
}
#newslatter p {
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  max-width: 80%;
  margin: 1rem;
}
#newslatter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#newslatter form input {
  width: 35rem;
  font-size: 1.8rem;
  padding: 0.5rem;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 3px solid #ffffff;
  color: #ffffff;
  outline: none;
  margin: 1rem;
}
#newslatter form input::-webkit-input-placeholder {
  color: #ffffff;
}
#newslatter form input::-moz-placeholder {
  color: #ffffff;
}
#newslatter form input:-ms-input-placeholder {
  color: #ffffff;
}
#newslatter form input::-ms-input-placeholder {
  color: #ffffff;
}
#newslatter form input::placeholder {
  color: #ffffff;
}
#newslatter form input[type=submit] {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #FF6D83;
  text-transform: uppercase;
  background: #ffffff;
  margin: 1rem;
  margin-top: 2rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border: none;
  width: auto;
}
#newslatter form input[type=submit]:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#patterns-wrapper {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 182, 193, 0.6)), to(rgba(231, 193, 168, 0.6)));
  background: linear-gradient(90deg, rgba(255, 182, 193, 0.6) 0%, rgba(231, 193, 168, 0.6) 100%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 5rem;
}
#patterns-wrapper h2 {
  font-size: 4rem;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  margin: 1rem;
  margin-top: 0;
}
#patterns-wrapper .patterns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0rem;
}
#patterns-wrapper .patterns .pattern {
  width: 40rem;
  height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 2rem;
}
#patterns-wrapper .patterns .pattern a {
  width: 60%;
}
#patterns-wrapper .patterns .pattern a img {
  border-radius: 50%;
  width: 100%;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#patterns-wrapper .patterns .pattern a img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#patterns-wrapper .patterns .pattern .spot {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.btn {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-transform: uppercase;
  background: #FF6D83;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn-w {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #FF6D83;
  text-transform: uppercase;
  background: #ffffff;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn-w:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 5rem;
  background: #FF6D83;
}
footer p, footer a {
  font-size: 1.8rem;
  color: #ffffff;
}
footer svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #ffffff;
}

.active {
  color: #FF6D83;
}

#about {
  width: 100%;
  min-height: calc(100vh - 20.2rem);
  padding: 3rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
#about .about-row {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#about .about-row .about-img {
  width: 50rem;
  padding: 4rem;
}
#about .about-row .about-img img {
  width: 100%;
}
#about .about-row .about-txt {
  width: 50%;
  padding: 4rem;
}
#about .about-row .about-txt h1 {
  font-size: 4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#about .about-row .about-txt p {
  font-size: 1.8rem;
  margin: 1rem 0rem;
}
#about .about-decoration1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#about .about-decoration2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.vh {
  min-height: calc(100vh - 24.5rem);
}

#heading {
  width: 100%;
  min-height: 30rem;
  background: url(img/heading-background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#heading .heading-fade {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 182, 193, 0.7)), to(rgba(231, 193, 168, 0.7)));
  background: linear-gradient(90deg, rgba(255, 182, 193, 0.7) 0%, rgba(231, 193, 168, 0.7) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 5rem;
}
#heading .heading-fade h2 {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
#heading .heading-fade img {
  margin: 1rem;
  width: 8rem;
}
#heading .heading-fade .article-info {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}
#heading .heading-fade .article-info span {
  font-size: 1.8rem;
}

#filters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 5rem;
}
#filters .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem 3rem;
}
#filters .categories .category {
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#filters .categories .category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: 2px solid black;
}
#filters .categories .category a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: #FF6D83;
  fill: #FF6D83;
  border: 2px solid #FF6D83;
}
#filters .categories .category a img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#filters .categories .category a h2 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  margin: 1rem;
}
#filters form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: end;
      align-self: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem 3rem;
}
#filters form select {
  width: 28rem;
  font-size: 1.8rem;
  margin: 1rem;
  padding: 0.5rem;
  outline: none;
  border: 2px solid #000000;
  background: transparent;
}

#pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 3rem 5rem;
}
#pagination a {
  font-size: 1.8rem;
  margin: 1rem;
}
#pagination .active-page {
  color: #FF6D83;
  font-weight: bold;
}
#pagination .previous {
  color: #909090;
  text-decoration: line-through;
}

#product {
  width: 100%;
  min-height: calc(100vh - 24.5rem);
  padding: 3rem 5rem;
}
#product .product-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#product .product-details .product-img {
  display: grid;
  grid-template-areas: "side-img1 main-img main-img main-img main-img" "side-img2 main-img main-img main-img main-img" "side-img3 main-img main-img main-img main-img" "side-img4 main-img main-img main-img main-img" "side-img5 main-img main-img main-img main-img";
  gap: 1.5rem;
  margin: 4rem 5rem;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#product .product-details .product-img .main-img {
  grid-area: main-img;
  width: 46.4rem;
  height: 56rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#product .product-details .product-img .side-img1 {
  grid-area: side-img1;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .side-img1 img {
  width: 100%;
  height: 100%;
}
#product .product-details .product-img .side-img2 {
  grid-area: side-img2;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .side-img2 img {
  width: 100%;
  height: 100%;
}
#product .product-details .product-img .side-img3 {
  grid-area: side-img3;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .side-img3 img {
  width: 100%;
  height: 100%;
}
#product .product-details .product-img .side-img4 {
  grid-area: side-img4;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .side-img4 img {
  width: 100%;
  height: 100%;
}
#product .product-details .product-img .side-img5 {
  grid-area: side-img5;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-img .side-img5 img {
  width: 100%;
  height: 100%;
}
#product .product-details .product-info {
  margin: 4rem 5rem;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#product .product-details .product-info .stock {
  display: inline;
  background: #FF6D83;
  font-size: 1.8rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  margin: 1rem;
}
#product .product-details .product-info h1 {
  margin-top: 2rem;
  font-size: 3rem;
  text-transform: uppercase;
  margin: 1rem;
}
#product .product-details .product-info .price {
  font-size: 2.5rem;
  color: #FF6D83;
  font-weight: 500;
  margin: 1rem;
}
#product .product-details .product-info .select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1rem;
}
#product .product-details .product-info .select h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#product .product-details .product-info .select .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product .product-details .product-info .select .options .option {
  margin: 1rem;
  cursor: pointer;
}
#product .product-details .product-info .select .options .option img {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-details .product-info .select .options .option .box {
  width: 100%;
  height: 100%;
  background: #E0DDDE;
  padding: 0.6rem 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
}
#product .product-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 4rem auto;
  margin-bottom: 0;
  width: 70%;
}
#product .product-description h2 {
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
#product .product-description p {
  font-size: 1.8rem;
}

#contact {
  padding: 3rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 24.5rem);
}
#contact .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#contact .socials .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem;
}
#contact .socials .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .socials .social a .circle {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FFB6C1), to(#E7C1A8));
  background: linear-gradient(90deg, #FFB6C1 0%, #E7C1A8 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .socials .social a .circle svg {
  fill: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
}
#contact .socials .social a p {
  font-size: 2rem;
  margin-top: 1rem;
}
#contact form {
  background: #FFF;
  -webkit-box-shadow: 10px 4px 50px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 4px 50px 0px rgba(0, 0, 0, 0.25);
  padding: 4rem;
  width: 80rem;
  position: relative;
  margin: 3rem 0rem;
}
#contact form h2 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 1rem;
}
#contact form p {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#contact form input {
  width: 50%;
  padding: 0.5rem;
  font-size: 1.8rem;
  margin: 1.5%;
  border: none;
  border-bottom: 2px solid #A4A4A4;
  outline: none;
}
#contact form textarea {
  width: 100%;
  height: 15rem;
  resize: vertical;
  outline: none;
  padding: 0.5rem;
  font-size: 1.8rem;
  margin: 1.5%;
  border: 2px solid #A4A4A4;
}
#contact form input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.5rem;
}
#contact form label {
  font-size: 1.8rem;
}
#contact form label a {
  font-weight: 500;
}
#contact form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact form input[type=submit] {
  font-size: 2rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-transform: uppercase;
  background: #FF6D83;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border: none;
  width: 15rem;
  margin-top: 2rem;
}
#contact form input[type=submit]:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#blog {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem;
}
#blog .blog-post {
  width: 100%;
  height: 40rem;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 5rem;
}
#blog .blog-post:last-child {
  margin-bottom: 0;
}
#blog .blog-post .blog-img {
  width: 40rem;
  height: 40rem;
}
#blog .blog-post .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog-post .blog-txt {
  width: 75%;
  margin-left: 5rem;
  padding: 3rem;
  padding-left: 5rem;
  border-left: 2px solid #FF6D83;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#blog .blog-post .blog-txt h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #FF6D83;
  font-weight: 500;
}
#blog .blog-post .blog-txt p {
  font-size: 1.6rem;
  margin: 1rem 0.5rem;
}
#blog .blog-post .blog-txt span {
  font-size: 1.6rem;
  color: #A3A3A3;
  margin: 0.5rem;
}
#blog .blog-post .blog-txt a {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5rem;
}

#article {
  padding: 5rem;
  position: relative;
  min-height: calc(100vh - 50.2rem);
}
#article h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem;
}
#article p {
  font-size: 1.8rem;
  padding: 1rem;
}
#article img {
  max-width: 100%;
  padding: 1rem;
}

#rules {
  padding: 5rem;
}
#rules p {
  font-size: 1.8rem !important;
  padding: 0.5rem 0rem;
}
#rules h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 0rem;
}
#rules h3 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 0rem;
}

#basket {
  padding: 3rem 5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3rem;
  min-height: calc(100vh - 20.2rem);
}
#basket .basket-steps {
  font-size: 2.5rem;
  color: #ADA3A3;
  margin: 4rem 0rem;
}
#basket .basket-steps a {
  color: #ADA3A3;
}
#basket .basket-steps .active {
  font-weight: bold;
  color: #000000;
}
#basket .basket-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}
#basket .basket-row .item-table {
  margin: 0 2rem;
}
#basket .basket-row .item-table .back {
  font-size: 2rem;
  color: #ADA3A3;
}
#basket .basket-row .item-table .message h3 {
  font-size: 2.5rem;
}
#basket .basket-row .item-table .message h3 a {
  color: #FF6D83;
}
#basket .basket-row .item-table table {
  width: 80rem;
  border-collapse: collapse;
  margin: 1rem 0rem;
}
#basket .basket-row .item-table table tbody tr {
  width: 100%;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
}
#basket .basket-row .item-table table tbody tr td {
  padding: 1rem;
  font-size: 2rem;
}
#basket .basket-row .item-table table tbody tr td a {
  font-size: 2rem;
}
#basket .basket-row .item-table table tbody tr td a svg {
  width: 2rem;
  height: 2rem;
}
#basket .basket-row .item-table table tbody tr td img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#basket .basket-row .item-table table tbody tr td .number {
  width: fit-content;
  border: 1px solid #6C757D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#basket .basket-row .item-table table tbody tr td .number a {
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#basket .basket-row .item-table table tbody tr td .number a svg {
  width: 1.6rem;
  height: 1.6rem;
}
#basket .basket-row .item-table table tbody tr td .number span {
  font-size: 2rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid #6C757D;
  border-left: 1px solid #6C757D;
}
#basket .basket-row .item-table table tbody tr .bold {
  font-weight: bold;
}
#basket .basket-row .recap {
  width: 80rem;
  margin: 0rem 2rem;
}
#basket .basket-row .recap h1 {
  font-size: 3rem;
}
#basket .basket-row .recap p {
  font-size: 1.8rem;
  margin: 1rem 0rem;
}
#basket .basket-row .basket-form {
  width: 80rem;
  margin: 0rem 2rem;
}
#basket .basket-row .basket-form form {
  width: 100%;
}
#basket .basket-row .basket-form form h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-left: 1.5rem;
}
#basket .basket-row .basket-form form .row {
  width: 100%;
}
#basket .basket-row .basket-form form .row input {
  width: 100%;
  margin: 1.5rem;
  padding: 0.5rem;
  font-size: 1.8rem;
  border: none;
  border-bottom: 2px solid #6F6F70;
  outline: none;
}
#basket .basket-row .basket-form form .delivery-wrapper {
  margin: 1.5rem;
}
#basket .basket-row .basket-form form .delivery-wrapper h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-left: 0;
}
#basket .basket-row .basket-form form .delivery-wrapper .delivery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.5rem;
  margin-left: 0;
  font-size: 1.8rem;
}
#basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type h4 {
  padding: 0.5rem;
}
#basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type input {
  width: 1.8rem;
  height: 1.8rem;
}
#basket .basket-row .summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 35rem;
  padding: 3rem;
  background: -webkit-gradient(linear, left top, right top, from(#FFB6C1), to(#E7C1A8));
  background: linear-gradient(90deg, #FFB6C1 0%, #E7C1A8 100%);
  margin: 0 2rem;
}
#basket .basket-row .summary h3 {
  text-align: center;
  border-bottom: 3px solid #919191;
  font-size: 2.4rem;
  text-transform: uppercase;
  padding: 0.5rem;
}
#basket .basket-row .summary .order-list {
  width: 100%;
}
#basket .basket-row .summary .order-list table {
  width: 100%;
  font-size: 1.8rem;
}
#basket .basket-row .summary .order-list table tr td {
  padding: 0.5rem;
  text-align: center;
}
#basket .basket-row .summary form {
  width: 100%;
}
#basket .basket-row .summary form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #919191;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 0.5rem 0rem;
}
#basket .basket-row .summary form .row h4 {
  font-weight: 400;
}
#basket .basket-row .summary form input[type=submit] {
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  width: 100%;
}
#basket .basket-row .summary form input {
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  width: 100%;
  outline: none;
  text-align: center;
}
#basket .basket-row .summary .promo input[type=submit] {
  background: transparent;
  color: #000000;
  border: 3px solid #000000;
  font-weight: bold;
  cursor: pointer;
  font-size: 2rem;
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.bold {
  font-weight: bold !important;
}

.last {
  display: none !important;
}

#gopay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#gopay h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 1rem;
}
#gopay .gopay-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gopay .gopay-logos a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#gopay .gopay-logos a img {
  margin: 1rem;
  width: 10rem;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 2;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #FF6D83;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #FF6D83;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 1px #000000;
  font-weight: 400;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 1px #000000;
  font-weight: 400;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Fix 10.9.2023 */

.form-product {
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-product h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.form-product .counter-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0rem;
  border: 1px solid #000000;
  width: 15rem;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-product .counter-product input[type=number] {
  width: 5rem;
  font-size: 1.8rem;
  text-align: center;
  outline: none;
  border: none;
  background: none;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 0.5rem;
}
.form-product .counter-product input::-webkit-outer-spin-button,
.form-product .counter-product input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-product .counter-product input[type=number] {
  -moz-appearance: textfield;
}
.form-product .counter-product .plus, .form-product .counter-product .minus {
  width: 5rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.form-product textarea {
  width: 50rem;
  height: 8rem;
  resize: none;
  outline: none;
  border: 1px solid #000000;
  padding: 0.5rem;
  font-size: 1.8rem;
}
.form-product input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  margin-top: 2rem;
  display: inline-block;
}

@media (min-width: 1921px) {
  .nav-message {
    padding: 1rem 10rem;
  }
  .nav-message p {
    font-size: 2.5rem;
  }
  header {
    padding: 2rem 10rem;
  }
  header .search {
    width: 35rem;
  }
  header .search svg {
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1.5rem;
  }
  header .search input {
    width: 30rem;
    font-size: 2.5rem;
    border-bottom: 3px solid #000000;
  }
  header .nav .logo {
    width: 15rem;
    margin: 0 1.5rem;
  }
  header .nav ul li {
    margin: 0 1.5rem;
    font-size: 3rem;
  }
  header .icons {
    width: 35rem;
  }
  header .icons svg {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 1rem;
  }
  header .icons .language-menu {
    margin: 0 1rem;
  }
  header .icons .language-menu .flag-link .flag-img {
    width: 6.5rem;
    height: 4.5rem;
  }
  main {
    min-height: calc(100vh - 23.3rem);
  }
  main .main-img {
    width: 65rem;
    margin: 0 15rem;
  }
  main .main-text {
    margin: 0 15rem;
  }
  main .main-text h1 {
    font-size: 10rem;
  }
  main .main-text .btn {
    font-size: 3rem;
    padding: 0.8rem 4rem;
  }
  #introduction {
    padding: 5rem 10rem;
  }
  #introduction h2 {
    font-size: 5rem;
  }
  #introduction p {
    font-size: 2.5rem;
  }
  #introduction .btn-w {
    font-size: 3rem;
    padding: 0.8rem 4rem;
  }
  #products-wrapper {
    padding: 5rem 10rem;
  }
  #products-wrapper h2 {
    font-size: 5rem;
  }
  #products-wrapper .products {
    grid-template-columns: repeat(auto-fit, 45rem);
    gap: 5rem;
  }
  #products-wrapper .products .product {
    width: 45rem;
  }
  #products-wrapper .products .product .product-img {
    width: 45rem;
  }
  #products-wrapper .products .product .product-img img {
    width: 45rem;
    height: 56.25rem;
  }
  #products-wrapper .products .product .product-img .stock {
    font-size: 2.5rem;
    top: 2rem;
    left: 2rem;
  }

  /* Fix 10.9.2023 */

  #products-wrapper .products .product .product-img .stock2 {
    font-size: 2.5rem;
    top: 8rem;
    left: 2rem;
  }

  #products-wrapper .products .product h3 {
    font-size: 3rem;
  }
  #products-wrapper .products .product .product-row span {
    font-size: 2.5rem;
  }
  #products-wrapper .products .product .product-row .btn {
    font-size: 2.5rem;
    padding: 0.6rem 3rem;
  }
  #newslatter {
    padding: 5rem 10rem;
  }
  #newslatter h2 {
    font-size: 5rem;
  }
  #newslatter p {
    font-size: 2.5rem;
  }
  #newslatter form input {
    width: 45rem;
    font-size: 2.5rem;
  }
  #newslatter form input[type=submit] {
    font-size: 2.5rem;
  }
  #patterns-wrapper {
    padding: 5rem 10rem;
  }
  #patterns-wrapper h2 {
    font-size: 5rem;
  }
  #patterns-wrapper .patterns .pattern {
    width: 45rem;
    height: 45rem;
    margin: 4rem;
  }
  .btn {
    font-size: 2.5rem;
    padding: 0.8rem 4rem;
    color: #ffffff;
    text-transform: uppercase;
    background: #FF6D83;
    margin: 1rem;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .btn:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .btn-w {
    font-size: 2.5rem;
    padding: 0.8rem 4rem;
  }
  footer {
    padding: 1.5rem 10rem;
  }
  footer p, footer a {
    font-size: 2.5rem;
  }
  footer svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  #about {
    padding: 5rem 10rem;
  }
  #about .about-row .about-img {
    width: 75rem;
    padding: 5rem;
  }
  #about .about-row .about-txt {
    width: 50%;
    padding: 5rem;
  }
  #about .about-row .about-txt h1 {
    font-size: 5rem;
  }
  #about .about-row .about-txt p {
    font-size: 2.5rem;
  }
  #heading {
    min-height: 35rem;
  }
  #heading .heading-fade {
    padding: 5rem 10rem;
  }
  #heading .heading-fade h2 {
    font-size: 5rem;
  }
  #filters {
    padding: 5rem 10rem;
  }
  #filters .categories {
    margin: 1rem 5rem;
  }
  #filters .categories .category {
    margin: 1.5rem;
  }
  #filters .categories .category a img {
    width: 12rem;
    height: 12rem;
  }
  #filters .categories .category a h2 {
    font-size: 3rem;
  }
  #filters form {
    margin: 1rem 5rem;
  }
  #filters form select {
    width: 30rem;
    font-size: 2.5rem;
    border: 3px solid #000000;
  }
  #pagination {
    padding: 5rem 10rem;
  }
  #pagination a {
    font-size: 2.5rem;
    margin: 1rem;
  }
  #product {
    padding: 5rem 10rem;
  }
  #product .product-details .product-img {
    gap: 2.5rem;
    margin: 5rem 10rem;
  }
  #product .product-details .product-img .main-img {
    width: 56rem;
    height: 70rem;
  }
  #product .product-details .product-img .side-img1 {
    width: 12rem;
    height: 12rem;
  }
  #product .product-details .product-img .side-img2 {
    width: 12rem;
    height: 12rem;
  }
  #product .product-details .product-img .side-img3 {
    width: 12rem;
    height: 12rem;
  }
  #product .product-details .product-img .side-img4 {
    width: 12rem;
    height: 12rem;
  }
  #product .product-details .product-img .side-img5 {
    width: 12rem;
    height: 12rem;
  }
  #product .product-details .product-info {
    margin: 5rem 10rem;
  }
  #product .product-details .product-info .stock {
    font-size: 2.5rem;
    padding: 0.8rem 3rem;
  }
  #product .product-details .product-info h1 {
    font-size: 4rem;
  }
  #product .product-details .product-info .price {
    font-size: 3.5rem;
  }
  #product .product-details .product-info .select h2 {
    font-size: 2.5rem;
  }
  #product .product-details .product-info .select .options .option {
    margin: 1rem;
  }
  #product .product-details .product-info .select .options .option img {
    width: 9rem;
    height: 9rem;
  }
  #product .product-details .product-info .select .options .option .box {
    padding: 0.8rem 3rem;
    font-size: 2.5rem;
  }
  #product .product-description h2 {
    font-size: 3.5rem;
  }
  #product .product-description p {
    font-size: 2.5rem;
  }
  #contact {
    padding: 5rem 10rem;
  }
  #contact .socials .social {
    margin: 5rem;
  }
  #contact .socials .social a .circle {
    width: 12rem;
    height: 12rem;
  }
  #contact .socials .social a .circle svg {
    width: 5rem;
    height: 5rem;
  }
  #contact .socials .social a p {
    font-size: 3rem;
    margin-top: 1.5rem;
  }
  #contact form {
    padding: 5rem;
    width: 120rem;
    margin: 4rem 0rem;
  }
  #contact form h2 {
    font-size: 4.5rem;
  }
  #contact form p {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  #contact form input {
    font-size: 2.5rem;
  }
  #contact form textarea {
    height: 30rem;
    font-size: 2.5rem;
  }
  #contact form input[type=checkbox] {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
  #contact form label {
    font-size: 2.5rem;
  }
  #contact form input[type=submit] {
    font-size: 2.5rem;
    padding: 1rem 4rem;
    width: 25rem;
  }
  #blog {
    padding: 10rem;
  }
  #blog .blog-post {
    height: 50rem;
    margin-bottom: 8rem;
  }
  #blog .blog-post .blog-img {
    width: 50rem;
    height: 50rem;
  }
  #blog .blog-post .blog-txt {
    width: 75%;
    margin-left: 6rem;
    padding: 4rem;
    padding-left: 6rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 4rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 2.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.8rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 2.8rem;
  }
  #article {
    padding: 5rem 10rem;
  }
  #article h2 {
    font-size: 3.5rem;
    padding: 2rem;
  }
  #article p {
    font-size: 2.5rem;
    padding: 2rem;
  }
  #article img {
    padding: 2rem;
  }
  #rules {
    padding: 5rem 10rem;
  }
  #rules p {
    font-size: 2.5rem !important;
    padding: 0.5rem 0rem;
  }
  #rules h2 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 0rem;
  }
  #rules h3 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 0rem;
  }
  #basket {
    padding: 10rem;
  }
  #basket .basket-steps {
    font-size: 3.5rem;
    margin: 5rem 0rem;
  }
  #basket .basket-row .item-table .back {
    font-size: 2.5rem;
  }
  #basket .basket-row .item-table .message h3 {
    font-size: 3.5rem;
  }
  #basket .basket-row .item-table table {
    width: 120rem;
  }
  #basket .basket-row .item-table table tbody tr td {
    font-size: 2.5rem;
  }
  #basket .basket-row .item-table table tbody tr td a {
    font-size: 2.5rem;
  }
  #basket .basket-row .item-table table tbody tr td a svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  #basket .basket-row .item-table table tbody tr td img {
    width: 12rem;
    height: 12rem;
  }
  #basket .basket-row .item-table table tbody tr td .number {
    width: fit-content;
  }
  #basket .basket-row .item-table table tbody tr td .number a {
    padding: 0.8rem 1.5rem;
  }
  #basket .basket-row .item-table table tbody tr td .number a svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  #basket .basket-row .item-table table tbody tr td .number span {
    font-size: 2.5rem;
    padding: 0.8rem 1.5rem;
  }
  #basket .basket-row .basket-form {
    width: 120rem;
  }
  #basket .basket-row .basket-form form h3 {
    font-size: 3rem;
  }
  #basket .basket-row .basket-form form .row input {
    font-size: 2.5rem;
    margin: 2rem;
  }
  #basket .basket-row .basket-form form .delivery-wrapper {
    margin: 2rem;
  }
  #basket .basket-row .basket-form form .delivery-wrapper h3 {
    font-size: 3rem;
  }
  #basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type {
    margin: 2rem;
    font-size: 2.5rem;
  }
  #basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type h4 {
    padding: 2rem;
  }
  #basket .basket-row .basket-form form .delivery-wrapper .delivery .delivery-type input {
    width: 2.5rem;
    height: 2.5rem;
  }
  #basket .basket-row .recap {
    width: 120rem;
  }
  #basket .basket-row .recap h1 {
    font-size: 4rem;
  }
  #basket .basket-row .recap p {
    font-size: 2.5rem;
  }
  #basket .basket-row .summary {
    width: 40rem;
  }
  #basket .basket-row .summary h3 {
    font-size: 3rem;
    padding: 0.8rem;
  }
  #basket .basket-row .summary form .row {
    font-size: 2.5rem;
    padding: 0.8rem 0rem;
  }
  #basket .basket-row .summary form input[type=submit] {
    font-size: 2.5rem;
    padding: 1.5rem 2rem;
  }
  #basket .basket-row .summary form input {
    font-size: 2.5rem;
    padding: 1.5rem 2rem;
  }
  #basket .basket-row .summary .promo input[type=submit] {
    font-size: 2.5rem;
    padding: 1.5rem 2rem;
  }

  /* Fix 10.9.2023 */
  #about{
    min-height: calc(100vh - 30.9rem);
  }
}
@media (max-width: 1440px) {
  .nav-message {
    padding: 0.5rem 5rem;
  }
  header {
    padding: 0.8rem 5rem;
  }
  header .search {
    width: 22rem;
  }
  header .search svg {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
  }
  header .search input {
    width: 18rem;
  }
  header .nav .logo {
    width: 9rem;
    margin: 0 0.5rem;
  }
  header .nav ul li {
    margin: 0 0.8rem;
  }
  header .icons {
    width: 22rem;
  }
  header .icons svg {
    width: 2.8rem;
    height: 2.8rem;
  }
  header .icons .cart span {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }
  header .icons .language-menu {
    display: inline-block;
    position: relative;
    margin: 0 0.5rem;
  }
  header .icons .language-menu .flag-link .flag-img {
    width: 3.6rem;
    height: 2.7rem;
  }
  main {
    min-height: calc(100vh - 14.1rem);
    background: url(img/background-main-medium.svg);
    background-size: cover;
  }
  main .main-img {
    width: 45rem;
    margin: 0 5rem;
  }
  main .main-text {
    margin: 0 5rem;
  }
  main .main-text h1 {
    font-size: 6rem;
  }
  #introduction {
    padding: 3rem;
  }
  #introduction h2 {
    font-size: 3.5rem;
  }
  #introduction p {
    font-size: 1.8rem;
  }
  #introduction .btn-w {
    font-size: 2rem;
    padding: 0.5rem 2rem;
  }
  #products-wrapper {
    padding: 3rem;
  }
  #products-wrapper h2 {
    font-size: 3.5rem;
  }
  #products-wrapper .products {
    grid-template-columns: repeat(auto-fit, 30rem);
    gap: 5rem;
  }
  #products-wrapper .products .product {
    width: 30rem;
  }
  #products-wrapper .products .product .product-img {
    width: 30rem;
  }
  #products-wrapper .products .product .product-img img {
    width: 30rem;
    height: 37.5rem;
  }
  #products-wrapper .products .product .product-img .stock {
    font-size: 1.6rem;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1.5rem;
  }

  /* Fix 10.9.2023 */

  #products-wrapper .products .product .product-img .stock2 {
    font-size: 1.6rem;
    top: 5rem;
    left: 1rem;
    padding: 0.5rem 1.5rem;
  }

  #products-wrapper .products .product h3 {
    font-size: 2rem;
  }
  #products-wrapper .products .product .product-row span {
    font-size: 2rem;
  }
  #products-wrapper .products .product .product-row .btn {
    font-size: 2rem;
    padding: 0.3rem 2rem;
  }
  #newslatter {
    padding: 3rem;
  }
  #newslatter h2 {
    font-size: 3.5rem;
  }
  #newslatter p {
    font-size: 1.8rem;
  }
  #newslatter form input {
    width: 30rem;
    font-size: 1.8rem;
  }
  #newslatter form input[type=submit] {
    font-size: 2rem;
  }
  #patterns-wrapper {
    padding: 3rem;
  }
  #patterns-wrapper h2 {
    font-size: 3.5rem;
  }
  #patterns-wrapper .patterns .pattern {
    width: 30rem;
    height: 30rem;
    margin: 1rem;
  }
  .btn {
    font-size: 2rem;
    padding: 0.5rem 2rem;
  }
  .btn-w {
    font-size: 2rem;
    padding: 0.5rem 2rem;
  }
  footer {
    padding: 1rem 3rem;
  }
  footer p, footer a {
    font-size: 1.8rem;
  }
  footer svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  #about {
    padding: 3rem;
  }
  #about .about-row .about-img {
    width: 45rem;
    padding: 3rem;
  }
  #about .about-row .about-txt {
    width: 50%;
    padding: 3rem;
  }
  #about .about-row .about-txt h1 {
    font-size: 3.5rem;
  }
  #about .about-row .about-txt p {
    font-size: 1.8rem;
  }
  #about .about-decoration1 {
    width: 30rem;
  }
  #about .about-decoration2 {
    width: 30rem;
  }
  #heading {
    min-height: 25rem;
  }
  #heading .heading-fade {
    padding: 3rem;
  }
  #heading .heading-fade h2 {
    font-size: 3.5rem;
  }
  #filters {
    padding: 3rem;
  }
  #filters .categories {
    margin: 1rem 0rem;
  }
  #filters .categories .category {
    margin: 0.5rem;
  }
  #filters .categories .category a img {
    width: 7rem;
    height: 7rem;
  }
  #filters .categories .category a h2 {
    font-size: 1.8rem;
  }
  #filters form {
    margin: 1rem 0rem;
  }
  #filters form select {
    width: 28rem;
    font-size: 1.8rem;
  }
  #pagination {
    padding: 3rem;
  }
  #pagination a {
    font-size: 1.8rem;
    margin: 0.8rem;
  }
  #product {
    padding: 3rem;
  }
  #product .product-details .product-img {
    gap: 1.5rem;
    margin: 2rem;
  }
  #product .product-details .product-img .main-img {
    grid-area: main-img;
    width: 40rem;
    height: 50rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #product .product-details .product-img .main-img img {
    width: 100%;
    height: 100%;
  }
  #product .product-details .product-img .side-img1 {
    width: 8.8rem;
    height: 8.8rem;
  }
  #product .product-details .product-img .side-img2 {
    width: 8.8rem;
    height: 8.8rem;
  }
  #product .product-details .product-img .side-img3 {
    width: 8.8rem;
    height: 8.8rem;
  }
  #product .product-details .product-img .side-img4 {
    width: 8.8rem;
    height: 8.8rem;
  }
  #product .product-details .product-img .side-img5 {
    width: 8.8rem;
    height: 8.8rem;
  }
  #product .product-details .product-info {
    margin: 2rem;
  }
  #product .product-details .product-info .stock {
    font-size: 1.6rem;
    padding: 0.3rem 1.5rem;
    margin: 0.5rem;
  }
  #product .product-details .product-info h1 {
    margin-top: 1rem;
    font-size: 2.5rem;
    margin: 0.5rem;
  }
  #product .product-details .product-info .price {
    font-size: 2.5rem;
    margin: 0.5rem;
  }
  #product .product-details .product-info .select {
    margin: 0.5rem;
  }
  #product .product-details .product-info .select h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  #product .product-details .product-info .select .options .option {
    margin: 0.8rem;
  }
  #product .product-details .product-info .select .options .option img {
    width: 5rem;
    height: 5rem;
  }
  #product .product-details .product-info .select .options .option .box {
    padding: 0.3rem 1.5rem;
    font-size: 1.6rem;
  }
  #product .product-description {
    margin: 2rem auto;
    width: 75%;
  }
  #product .product-description h2 {
    font-size: 2rem;
  }
  #product .product-description p {
    font-size: 1.6rem;
  }
  #contact {
    padding: 3rem;
  }
  #contact .socials .social {
    margin: 2rem;
  }
  #contact .socials .social a .circle {
    width: 7rem;
    height: 7rem;
  }
  #contact .socials .social a .circle svg {
    width: 3rem;
    height: 3rem;
  }
  #contact .socials .social a p {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
  #contact form {
    padding: 3rem;
    width: 70rem;
  }
  #contact form h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  #contact form p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  #contact form input {
    font-size: 1.6rem;
  }
  #contact form textarea {
    font-size: 1.6rem;
  }
  #contact form input[type=checkbox] {
    width: 1.6rem;
    height: 1.6rem;
  }
  #contact form label {
    font-size: 1.6rem;
  }
  #contact form input[type=submit] {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  #blog {
    padding: 5rem;
  }
  #blog .blog-post {
    margin-bottom: 5rem;
  }
  #blog .blog-post .blog-txt {
    margin-left: 4rem;
    padding: 3rem;
    padding-left: 4rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 2.5rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.6rem;
    margin: 0.8rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.6rem;
    margin: 0.3rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.8rem;
    margin: 0.3rem;
  }
  #basket {
    padding: 3rem 5rem;
  }
  #basket .basket-steps {
    margin: 2rem 0rem;
  }
  #basket .basket-row .item-table .back {
    font-size: 1.8rem;
  }
  #basket .basket-row .item-table .message h3 {
    font-size: 2rem;
  }
  #basket .basket-row .item-table table {
    width: 70rem;
    margin: 0.5rem 0rem;
  }
  #basket .basket-row .item-table table tbody tr td {
    font-size: 1.8rem;
  }
  #basket .basket-row .item-table table tbody tr td a {
    font-size: 1.8rem;
  }
  #basket .basket-row .item-table table tbody tr td a svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  #basket .basket-row .item-table table tbody tr td img {
    width: 7rem;
    height: 7rem;
  }
  #basket .basket-row .item-table table tbody tr td .number {
    width: fit-content;
  }
  #basket .basket-row .item-table table tbody tr td .number a {
    padding: 0.5rem 0.5rem;
  }
  #basket .basket-row .item-table table tbody tr td .number a svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td .number span {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
  }
  #basket .basket-row .summary {
    width: 32rem;
    padding: 2rem;
  }
  #basket .basket-row .summary h3 {
    font-size: 2rem;
  }
  #basket .basket-row .summary form input[type=submit] {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
  #basket .basket-row .summary form input {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
  #basket .basket-row .summary .promo input[type=submit] {
    font-size: 1.8rem;
    padding: 1rem 2rem;
    margin: 1.5rem 0rem;
  }

  /* Fix 10.9.2023 */

  .form-product {
    margin: 0.5rem;
  }
  .form-product h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .form-product .counter-product {
    margin: 0.5rem 0rem;
    width: 12rem;
  }
  .form-product .counter-product input[type=number] {
    width: 4rem;
    font-size: 1.6rem;
  }
  .form-product .counter-product .plus, .form-product .counter-product .minus {
    width: 4rem;
    font-size: 1.8rem;
  }
  .form-product textarea {
    width: 32rem;
    height: 7rem;
    font-size: 1.6rem;
  }

  /* Fix 10.9.2023 */
  #about{
    min-height: calc(100vh - 18.8rem);
  }
}
@media (max-width: 1366px) {
  #blog {
    padding: 3rem;
  }
  #blog .blog-post .blog-txt {
    margin-left: 3rem;
    padding: 3rem;
    padding-left: 3rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 2.2rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.4rem;
    margin: 0.5rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.6rem;
    margin: 0.3rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.6rem;
    margin: 0.3rem;
  }
}
@media (max-width: 1200px) {
  #basket .basket-row .item-table {
    width: 100%;
  }
  #basket .basket-row .item-table table {
    width: 100%;
  }
  #basket .basket-row .summary {
    width: 100%;
    padding: 3rem;
    margin: 3rem 0rem;
  }
  #basket .basket-row .summary form input[type=submit] {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2rem auto;
    margin-bottom: 0;
  }
  #basket .basket-row .summary form input {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
  #basket .basket-row .summary .promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #basket .basket-row .summary .promo input[type=submit] {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2rem auto;
    padding: 0.8rem 3rem;
  }
  #basket .basket-row .summary .promo input {
    width: 30rem;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .nav-message {
    padding: 0.5rem 3rem;
  }
  .nav-message p {
    font-size: 1.6rem;
  }
  header {
    padding: 0.8rem 3rem;
  }
  header .search {
    width: 15rem;
  }
  header .search svg {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.3rem;
  }
  header .search input {
    width: 12.5rem;
    font-size: 1.6rem;
  }
  header .nav .logo {
    width: 7rem;
  }
  header .nav ul li {
    margin: 0 0.3rem;
  }
  header .nav ul li a {
    font-size: 1.8rem;
  }
  header .icons {
    width: 15rem;
  }
  header .icons svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  header .icons .cart span {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.4rem;
  }
  header .icons .language-menu .flag-link .flag-img {
    width: 3.5rem;
    height: 2.5rem;
  }
  main {
    min-height: calc(100vh - 12.1rem);
    background: url(img/background-main-medium.svg);
    background-size: cover;
  }
  main .main-img {
    width: 35rem;
    margin: 0 3rem;
  }
  main .main-text {
    margin: 0 3rem;
  }
  main .main-text h1 {
    font-size: 5rem;
  }
  #introduction {
    padding: 3rem;
  }
  #introduction h2 {
    font-size: 3rem;
    text-align: center;
  }
  #introduction p {
    font-size: 1.6rem;
  }
  #introduction .btn-w {
    font-size: 1.8rem;
  }
  #products-wrapper {
    padding: 3rem;
  }
  #products-wrapper h2 {
    font-size: 3rem;
    text-align: center;
  }
  #products-wrapper .products {
    grid-template-columns: repeat(auto-fit, 20rem);
    gap: 3rem;
  }
  #products-wrapper .products .product {
    width: 20rem;
  }
  #products-wrapper .products .product .product-img {
    width: 20rem;
  }
  #products-wrapper .products .product .product-img img {
    width: 20rem;
    height: 25rem;
  }

  #products-wrapper .products .product .product-img .stock {
    font-size: 1.4rem;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 1rem;
  }
  /* Fix 10.9.2023 */
  #products-wrapper .products .product .product-img .stock2 {
    font-size: 1.4rem;
    top: 4rem;
    left: 1rem;
    padding: 0.3rem 1rem;
  }

  #products-wrapper .products .product h3 {
    font-size: 1.8rem;
    margin: 0.5rem;
  }
  #products-wrapper .products .product .product-row {
    margin: 0.5rem;
  }
  #products-wrapper .products .product .product-row span {
    font-size: 1.8rem;
  }
  #products-wrapper .products .product .product-row .btn {
    font-size: 1.8rem;
    padding: 0.3rem 2rem;
  }
  #newslatter {
    padding: 3rem;
  }
  #newslatter h2 {
    font-size: 3rem;
    text-align: center;
  }
  #newslatter p {
    font-size: 1.6rem;
  }
  #newslatter form input {
    width: 28rem;
    font-size: 1.6rem;
  }
  #newslatter form input[type=submit] {
    font-size: 1.8rem;
  }
  #patterns-wrapper {
    padding: 3rem;
  }
  #patterns-wrapper h2 {
    font-size: 3rem;
    text-align: center;
  }
  #patterns-wrapper .patterns .pattern {
    width: 22rem;
    height: 22rem;
    margin: 0.5rem;
  }
  .btn {
    font-size: 1.8rem;
    padding: 0.5rem 2rem;
  }
  .btn-w {
    font-size: 1.8rem;
    padding: 0.5rem 2rem;
  }
  footer {
    padding: 1rem 3rem;
  }
  footer p, footer a {
    font-size: 1.6rem;
  }
  footer svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  #about .about-row .about-img {
    width: 38rem;
    padding: 2rem;
  }
  #about .about-row .about-txt {
    width: 60%;
    padding: 2rem;
  }
  #about .about-row .about-txt h1 {
    font-size: 3rem;
  }
  #about .about-row .about-txt p {
    font-size: 1.6rem;
  }
  #about .about-decoration1 {
    width: 25rem;
  }
  #about .about-decoration2 {
    width: 25rem;
  }
  #heading {
    min-height: 20rem;
  }
  #heading .heading-fade h2 {
    font-size: 3rem;
  }
  #heading .heading-fade .article-info {
    bottom: 1rem;
    right: 1rem;
  }
  #heading .heading-fade .article-info span {
    font-size: 1.6rem;
  }
  #filters .categories .category a img {
    width: 6rem;
    height: 6rem;
  }
  #filters .categories .category a h2 {
    font-size: 1.8rem;
  }
  #filters form select {
    width: 25rem;
    font-size: 1.6rem;
  }
  #pagination a {
    font-size: 1.6rem;
    margin: 0.5rem;
  }
  #product .product-details .product-img {
    gap: 1rem;
    margin: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product .product-details .product-img .main-img {
    width: 30rem;
    height: 37.5rem;
  }
  #product .product-details .product-img .side-img1 {
    width: 6.7rem;
    height: 6.7rem;
  }
  #product .product-details .product-img .side-img2 {
    width: 6.7rem;
    height: 6.7rem;
  }
  #product .product-details .product-img .side-img3 {
    width: 6.7rem;
    height: 6.7rem;
  }
  #product .product-details .product-img .side-img4 {
    width: 6.7rem;
    height: 6.7rem;
  }
  #product .product-details .product-img .side-img5 {
    width: 6.7rem;
    height: 6.7rem;
  }
  #product .product-details .product-info {
    margin: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product .product-details .product-info .stock {
    font-size: 1.4rem;
    padding: 0.3rem 1rem;
    margin: 0.5rem;
  }
  #product .product-details .product-info h1 {
    margin-top: 0.5rem;
  }
  #product .product-details .product-info .price {
    font-size: 2rem;
  }
  #product .product-details .product-info .select {
    margin: 0.5rem;
  }
  #product .product-details .product-info .select .options .option {
    margin: 0.8rem;
  }
  #product .product-details .product-info .select .options .option img {
    width: 4rem;
    height: 4rem;
  }
  #product .product-details .product-info .select .options .option .box {
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
  }
  #product .product-description {
    width: 100%;
  }
  #blog {
    padding: 3rem;
  }
  #blog .blog-post {
    margin-bottom: 3rem;
    height: 35rem;
  }
  #blog .blog-post .blog-img {
    width: 35rem;
    height: 35rem;
  }
  #blog .blog-post .blog-txt {
    margin-left: 2rem;
    padding: 1rem;
    padding-left: 2rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 1.8rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.4rem;
    margin: 0.5rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.3rem;
    margin: 0.3rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.6rem;
    margin: 0.3rem;
  }
  #article {
    padding: 3rem;
    min-height: calc(100vh - 45rem);
  }
  #article h2 {
    font-size: 2.5rem;
    padding: 1rem;
  }
  #article p {
    font-size: 1.6rem;
    padding: 1rem;
  }
  #article img {
    padding: 1rem;
  }
  #rules {
    padding: 3rem;
  }
  #rules p {
    font-size: 1.6rem !important;
    padding: 0.5rem 0rem;
  }
  #rules h2 {
    font-size: 2.5rem;
  }
  #rules h3 {
    font-size: 2rem;
    padding: 0.5rem 0rem;
  }

  /* Fix 10.9.2023 */
  #about{
    min-height: calc(100vh - 16.6rem);
  }
}
@media (max-width: 768px) {
  header .search {
    width: 19rem;
  }
  header .search input {
    width: 16rem;
  }
  header .nav ul {
    display: none;
  }
  header .icons {
    width: 19rem;
  }
  main {
    min-height: calc(100vh - 9.1rem);
  }
  main .main-img {
    width: 32rem;
    margin: 0 2rem;
  }
  main .main-text {
    margin: 0 2rem;
  }
  main .main-text h1 {
    font-size: 5rem;
  }
  #toggle {
    display: block;
  }
  #introduction p {
    font-size: 1.6rem;
    max-width: none;
  }
  #products-wrapper .products {
    grid-template-columns: repeat(auto-fit, 28rem);
    gap: 4rem;
  }
  #products-wrapper .products .product {
    width: 28rem;
  }
  #products-wrapper .products .product .product-img {
    width: 28rem;
  }
  #products-wrapper .products .product .product-img img {
    width: 28rem;
    height: 35rem;
  }
  #products-wrapper .products .product .product-img .stock {
    font-size: 1.6rem;
  }

  /* Fix 10.9.2023 */

  #products-wrapper .products .product .product-img .stock2 {
    font-size: 1.6rem;
  }

  #newslatter form input[type=submit] {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  #patterns-wrapper .patterns .pattern {
    width: 28rem;
    height: 28rem;
    margin: 0.5rem;
  }
  footer {
    padding: 0.5rem 3rem;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer p, footer a {
    padding: 0.5rem;
  }
  #about .about-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .about-row .about-img {
    width: 60%;
    padding: 2rem;
  }
  #about .about-row .about-txt {
    width: 100%;
    padding: 2rem;
  }
  #about .about-decoration1 {
    width: 25rem;
  }
  #about .about-decoration2 {
    width: 25rem;
  }
  #product .product-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #product .product-details .product-img {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    gap: 1rem;
    margin: 1rem;
  }
  #product .product-details .product-info {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact {
    padding: 3rem;
  }
  #contact .socials .social {
    margin: 1.5rem;
  }
  #contact .socials .social a .circle {
    width: 6rem;
    height: 6rem;
  }
  #contact .socials .social a .circle svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  #contact .socials .social a p {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  #contact form {
    width: 100%;
  }
  #contact form h2 {
    font-size: 2.5rem;
  }
  #blog {
    padding: 3rem;
  }
  #blog .blog-post {
    margin-bottom: 3rem;
    height: auto;
  }
  #blog .blog-post .blog-img {
    width: 30rem;
    height: 30rem;
  }
  #blog .blog-post .blog-txt {
    margin-left: 2rem;
    padding: 1rem;
    padding-left: 2rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 1.6rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.2rem;
    margin: 0.3rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.3rem;
    margin: 0.2rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.4rem;
    margin: 0.2rem;
  }
  #basket {
    padding: 3rem;
    padding-bottom: 0;
  }
  #basket .basket-steps {
    font-size: 1.8rem;
  }
  #basket .message {
    text-align: center;
  }
  #basket .basket-row .item-table {
    margin: 0rem;
  }
  #basket .basket-row .item-table .back {
    font-size: 1.6rem;
  }
  #basket .basket-row .item-table .message h3 {
    font-size: 1.8rem;
  }
  #basket .basket-row .item-table table tbody tr td {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
  #basket .basket-row .item-table table tbody tr td a {
    font-size: 1.6rem;
  }
  #basket .basket-row .item-table table tbody tr td a svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  #basket .basket-row .item-table table tbody tr td img {
    width: 6rem;
    height: 6rem;
  }
  #basket .basket-row .item-table table tbody tr td .number {
    width: fit-content;
  }
  #basket .basket-row .item-table table tbody tr td .number a {
    padding: 0.5rem 0.5rem;
  }
  #basket .basket-row .item-table table tbody tr td .number a svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td .number span {
    font-size: 1.6rem;
    padding: 0.5rem 0.8rem;
  }
  #basket .basket-row .summary {
    padding: 2rem;
  }
  #basket .basket-row .summary h3 {
    font-size: 1.8rem;
  }
  #basket .basket-row .summary h4 {
    font-size: 1.6rem;
  }
  #basket .basket-row .summary p {
    font-size: 1.6rem;
  }
  #basket .basket-row .summary form input[type=submit] {
    margin: 1.5rem auto;
  }
  #basket .basket-row .summary form input {
    font-size: 1.6rem;
    padding: 1rem 1rem;
  }
  #basket .basket-row .summary .promo input[type=submit] {
    margin: 1.5rem auto;
    padding: 0.5rem 2rem;
  }
  #basket .basket-row .summary .promo input {
    width: 26rem;
    margin: 0 auto;
  }

  /* Fix 10.9.2023 */
  #about{
    min-height: calc(100vh - 13.6rem);
  }
}
@media (max-width: 600px) {
  header {
    padding: 0.8rem 2rem;
  }
  header .search {
    display: none;
  }
  header .icons {
    width: auto;
  }
  header .icons svg {
    width: 3rem;
    height: 3rem;
  }
  header .icons .language-menu .flag-link .flag-img {
    width: 4rem;
    height: 3rem;
  }
  main {
    height: calc(100vh - 8.5rem);
  }
  main .main-img {
    display: none;
  }
  main .main-text {
    margin: 0 0rem;
  }
  main .main-text h1 {
    font-size: 5.5rem;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide {
    display: none;
  }
  #contact .socials .social {
    margin: 2rem;
  }
  #contact .socials .social a .circle {
    width: 8rem;
    height: 8rem;
  }
  #contact .socials .social a .circle svg {
    width: 3rem;
    height: 3rem;
  }
  #contact .socials .social a p {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
  #contact form {
    width: 100%;
    padding: 2rem;
  }
  #contact form h2 {
    font-size: 2.5rem;
  }
  #contact form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact form .row input {
    width: 100%;
    margin: 1rem 0rem;
  }
  #contact form .row textarea {
    width: 100%;
    margin: 1rem 0rem;
  }
  #contact form .row label {
    text-align: center;
    margin-bottom: 1rem;
  }
  #blog {
    padding: 3rem;
  }
  #blog .blog-post {
    margin-bottom: 3rem;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #blog .blog-post .blog-img {
    width: auto;
    height: 30rem;
    margin-top: 3rem;
  }
  #blog .blog-post .blog-txt {
    width: 100%;
    margin-left: 0rem;
    padding: 3rem;
    padding-left: 2rem;
    border: none;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 1.6rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.2rem;
    margin: 0.3rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.3rem;
    margin: 0.2rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.4rem;
    margin: 0.2rem;
  }
}
@media (max-width: 425px) {
  #patterns-wrapper .patterns .pattern {
    width: 28rem;
    height: 28rem;
    margin: 0.5rem;
  }
  #newslatter p {
    margin: 1rem 0rem;
  }
  #introduction p {
    margin: 1rem 0rem;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer p, footer a {
    padding: 0.5rem 0;
  }
  #about .about-row .about-img {
    width: 100%;
    padding: 2rem 0rem;
  }
  #about .about-row .about-txt {
    width: 100%;
    padding: 2rem 0rem;
  }
  #about .about-decoration1 {
    width: 20rem;
  }
  #about .about-decoration2 {
    width: 20rem;
  }
  #heading {
    min-height: 25rem;
  }
  #heading .heading-fade {
    padding: 2rem;
  }
  #heading .heading-fade img {
    width: 6rem;
  }
  #heading .heading-fade h2 {
    font-size: 2.8rem;
  }
  #filters {
    padding-bottom: 0;
  }
  #filters .categories .category a img {
    width: 5rem;
    height: 5rem;
  }
  #filters .categories .category a h2 {
    font-size: 1.6rem;
  }
  #filters form select {
    width: 28rem;
    font-size: 1.6rem;
  }
  #pagination {
    padding-top: 0;
  }
  #pagination a {
    font-size: 1.6rem;
    margin: 0.5rem;
  }
  #product .product-details .product-img {
    gap: 1rem;
    margin: 1rem 0rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product .product-details .product-img .main-img {
    width: 25rem;
    height: 31.5rem;
  }
  #product .product-details .product-img .side-img1 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #product .product-details .product-img .side-img2 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #product .product-details .product-img .side-img3 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #product .product-details .product-img .side-img4 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #product .product-details .product-img .side-img5 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #product .product-details .product-info {
    margin: 1rem 0rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product .product-details .product-info .stock {
    margin: 0.5rem 0;
  }
  #product .product-details .product-info h1 {
    margin: 0.5rem 0;
  }
  #product .product-details .product-info .price {
    margin: 0.5rem 0;
  }
  #product .product-details .product-info .select {
    margin: 0.5rem 0;
  }
  #product .product-details .product-info .select .options .option {
    margin: 0.5rem;
  }
  #blog {
    padding: 3rem;
  }
  #blog .blog-post {
    margin-bottom: 3rem;
  }
  #blog .blog-post .blog-img {
    width: 100%;
    height: auto;
    margin-top: 0rem;
  }
  #blog .blog-post .blog-txt {
    padding: 2rem;
    padding-left: 2rem;
  }
  #blog .blog-post .blog-txt h3 {
    font-size: 1.8rem;
  }
  #blog .blog-post .blog-txt p {
    font-size: 1.2rem;
    margin: 0.3rem 0.5rem;
  }
  #blog .blog-post .blog-txt span {
    font-size: 1.3rem;
    margin: 0.3rem;
  }
  #blog .blog-post .blog-txt a {
    font-size: 1.6rem;
    margin: 0.3rem;
  }
  #basket {
    padding: 2rem;
    padding-bottom: 0;
  }
  #basket .basket-steps {
    font-size: 1.5rem;
  }
  #basket .basket-row .basket-form form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #basket .basket-row .basket-form form .row input {
    width: 100%;
    margin: 1rem 0rem;
  }
  #basket .basket-row .item-table {
    margin: 0rem;
    overflow-x: auto;
  }
  #basket .basket-row .item-table .back {
    font-size: 1.4rem;
  }
  #basket .basket-row .item-table .message h3 {
    font-size: 1.6rem;
  }
  #basket .basket-row .item-table table tbody tr td {
    font-size: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td a {
    font-size: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td a svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td img {
    width: 4rem;
    height: 4rem;
  }
  #basket .basket-row .item-table table tbody tr td .number {
    width: fit-content;
  }
  #basket .basket-row .item-table table tbody tr td .number a {
    padding: 0.5rem 0.5rem;
  }
  #basket .basket-row .item-table table tbody tr td .number a svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  #basket .basket-row .item-table table tbody tr td .number span {
    font-size: 1.4rem;
    padding: 0.5rem 0.5rem;
  }
  #basket .basket-row .summary {
    padding: 1.5rem;
  }
  #basket .basket-row .summary h3 {
    font-size: 1.6rem;
  }
  #basket .basket-row .summary h4 {
    font-size: 1.4rem;
  }
  #basket .basket-row .summary p {
    font-size: 1.4rem;
  }
  #basket .basket-row .summary form input[type=submit] {
    margin: 1.5rem auto;
    font-size: 1.6rem;
  }
  #basket .basket-row .summary form input {
    font-size: 1.4rem;
    padding: 1rem 1rem;
  }
  #basket .basket-row .summary .promo input[type=submit] {
    margin: 1.5rem auto;
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
  #basket .basket-row .summary .promo input {
    width: 26rem;
    margin: 0 auto;
  }
  .cookies {
    width: 100%;
  }
  .form-product {
    width: 100%;
    margin: 0;
  }
  .form-product .counter-product {
    margin: 0.5rem 0rem;
    width: 12rem;
  }
  .form-product .counter-product input[type=number] {
    padding: 0.3rem;
  }
  .form-product .counter-product .plus, .form-product .counter-product .minus {
    padding: 0.3rem;
  }
  .form-product textarea {
    width: 100%;
    height: 6rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  header .nav .logo {
    width: 6.5rem;
  }
  main {
    padding: 2rem;
  }
  main .main-text h1 {
    font-size: 5rem;
  }
  nav {
    height: calc(100vh - 8rem);
  }
  #basket .basket-steps {
    font-size: 1.3rem;
    margin: 1.5rem 0rem;
  }
  #basket .basket-row .summary {
    margin: 1.5rem 0rem !important;
  }
}
@media (max-width: 320px) {
  header .icons svg {
    width: 2.8rem;
    height: 2.8rem;
  }
  header .icons .language-menu .flag-link .flag-img {
    width: 3.8rem;
    height: 2.8rem;
  }
  #newslatter {
    padding: 2rem;
  }
  #newslatter h2 {
    margin: 0;
    margin-bottom: 1rem;
  }
  #introduction {
    padding: 2rem;
  }
  #introduction h2 {
    margin: 0;
    margin-bottom: 1rem;
  }
  #products-wrapper {
    padding: 2rem;
  }
  #products-wrapper h2 {
    margin-bottom: 2rem;
  }
  #patterns-wrapper {
    padding: 2rem;
  }
  #patterns-wrapper h2 {
    margin: 0;
    margin-bottom: 1rem;
  }
  #about {
    padding: 2rem;
  }
  #filters {
    padding: 2rem;
  }
  #filters form select {
    margin: 1rem 0rem;
  }
  #pagination {
    padding: 2rem;
  }
  #heading .heading-fade {
    padding: 2rem;
  }
  #product {
    padding: 2rem;
  }
  #product .product-details .product-img {
    gap: 0.5rem;
    margin: 1rem 0rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product .product-details .product-img .main-img {
    width: 20rem;
    height: 26.25rem;
  }
  #product .product-details .product-img .side-img1 {
    width: 4.85rem;
    height: 4.85rem;
  }
  #product .product-details .product-img .side-img2 {
    width: 4.85rem;
    height: 4.85rem;
  }
  #product .product-details .product-img .side-img3 {
    width: 4.85rem;
    height: 4.85rem;
  }
  #product .product-details .product-img .side-img4 {
    width: 4.85rem;
    height: 4.85rem;
  }
  #product .product-details .product-img .side-img5 {
    width: 4.85rem;
    height: 4.85rem;
  }
  #product .product-details .product-info h1 {
    font-size: 2.2rem;
  }
  #contact {
    padding: 2rem;
  }
  #blog {
    padding: 2rem;
  }
  #article {
    padding: 2rem;
  }
  #rules {
    padding: 2rem;
  }
}