*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
    width: 100%;
    overflow: hidden;
}

body {
  font-family: 'Alegreya', serif;
  font-size: 16px;
  width: 100vw;
  height: 100vh; 
  overflow-x: hidden !important;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }

.header-wrapper {
  width: 100%;
  height: 10vh;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  z-index: 999; 
}
  .header-wrapper .logo img {
    height: 6vh;
    width: auto;
    margin-left: 30px; }
  .header-wrapper .language {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #313131;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.75); }
    .header-wrapper .language img {
      margin: 0 auto; }
  .header-wrapper .translate-element {
    position: absolute;
    left: 0;
    bottom: 0;
    display: none; }
  .header-wrapper .nav-links {
    display: flex;
    align-items: center; }
    .header-wrapper .nav-links .social-media {
      display: flex;
      justify-content: center;
      width: 100%; }
      .header-wrapper .nav-links .social-media li a {
        border: 0; }
  .header-wrapper .nav-links li {
    list-style: none;
    margin-bottom: 5vh; }
  .header-wrapper .nav-links a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: bold;
    color: #313131;
    margin-right: 20px;
    padding-bottom: 3px;
    border-bottom: 2px solid #FF9E48; }
    .header-wrapper .nav-links a:hover {
      border-bottom: 3px solid black;
      transition: transform 0.5s ease-in; }
  .header-wrapper .branding a {
    font-size: 15px;
    border: none; }
    .header-wrapper .branding a:hover {
      border: none;
      color: #FF9E48; }
  .header-wrapper .burger {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    cursor: pointer;
    background-color: #313131;
    border-radius: 5%;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.75); }
  .header-wrapper .burger-wrapper div {
    width: 18px;
    height: 2.2px;
    background-color: #fdfdfd;
    margin: 3px;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2); }

@media screen and (max-width: 5000px) {
  body {
    overflow-x: hidden; }
  .navigation {
    position: absolute;
    right: 0px;
    height: 100vh;
    width: 100%;
    top: 10vh;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1); }
    .navigation .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%; }
    .navigation .nav-links li {
      opacity: 0; } }

.nav-active {
  transform: translateX(0%); }

.toggle .line1 {
  transform: rotate(-45deg) translate(-4px, 3.5px); }

.toggle .line2 {
  opacity: 0; }

.toggle .line3 {
  transform: rotate(45deg) translate(-4px, -3.5px); }

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9vh;
  background-color: white;
  box-shadow: 2px -7px 17px 1px white;
  display: flex;
  justify-content: center;
  align-items: center; }
  footer .footer-wrapper {
    width: 300px;
    height: 40px;
    background-color: #FF9E48;
    border-radius: 30px;
    box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.2);
    display: flex; }
  footer .button {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; }
    footer .button:hover {
      box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1); }
    footer .button .items-count {
      position: absolute;
      top: 3px;
      left: 60%;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #FF9E48;
      background-color: #fdfdfd;
      box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1); }
      footer .button .items-count span {
        font-size: 16px;
        margin-bottom: 3px; }
  footer .button-active {
    box-shadow: 0px 0px 3px 0px rgba(255, 255, 255, 0.1); }

.wrapper {
  padding: 25px 25px 30px 25px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px; 
}

.item-page {
  width: 100%;
  height: 300px;
  position: relative; }
  .item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.item-page-title {
  width: auto;
  height: auto;
  background-color: #FF9E48;
  padding: 5px 5px 5px 25px;
  box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.2);
  color: #fdfdfd;
  z-index: 1;
  display: flex;
  justify-content: space-between; }

.sticky {
  position: fixed;
  top: 0;
  left: 0; }

.item-page-wrapper {
  padding: 25px; }
  .item-page-wrapper .item-page-time {
    display: flex;
    justify-content: space-between; }
    .item-page-wrapper .item-page-time span {
      font-size: 16px;
      display: flex;
      align-items: center; }
      .item-page-wrapper .item-page-time span:before {
        content: url("../img/svg/time.svg");
        margin-right: 10px;
        margin-top: 5px; }
    .item-page-wrapper .item-page-time h6 {
      font-size: 18px;
      font-weight: bold; }
  .item-page-wrapper .item-page-price {
    display: flex;
    justify-content: space-between; }
    .item-page-wrapper .item-page-price span {
      font-size: 16px;
      display: flex;
      align-items: center; }
      .item-page-wrapper .item-page-price span:before {
        content: url("../img/svg/price.svg");
        margin-right: 10px;
        margin-top: 5px; }
    .item-page-wrapper .item-page-price h6 {
      font-size: 18px;
      font-weight: bold; }
  .item-page-wrapper .item-page-nummer {
    display: flex;
    justify-content: space-between; }
    .item-page-wrapper .item-page-nummer span {
      font-size: 16px;
      display: flex;
      align-items: center; }
      .item-page-wrapper .item-page-nummer span:before {
        content: url("../img/svg/product.svg");
        margin-right: 10px;
        margin-top: 5px; }
    .item-page-wrapper .item-page-nummer h6 {
      font-size: 18px;
      font-weight: bold; }

.item-description {
  padding: 0 25px 70px 25px; }
  .item-description h6 {
    font-size: 18px; }
  .item-description p {
    font-family: 'Alegreya', serif;
    font-size: 16px;
    margin-top: 5px; }

.contact {
  width: 100%;
  height: 300px;
  position: relative; }
  .contact img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.name {
  padding: 25px; }
  .name h3 {
    font-size: 24px; }
  .name p {
    font-size: 16px;
    margin-top: 5px; }

.working-hours {
  padding: 15px 25px 15px 25px; }
  .working-hours span {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center; }
    .working-hours span::before {
      content: url("../img/svg/time.svg");
      margin-right: 5px;
      margin-top: 4px; }
  .working-hours p {
    font-size: 16px; }

.contact-details {
  padding: 15px 25px 80px 25px; }
  .contact-details span {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center; }
    .contact-details span::before {
      content: url("../img/svg/contact.svg");
      margin-right: 5px;
      margin-top: 4px; }
  .contact-details p {
    font-size: 16px; }

.card {
  width: 340px;
  height: auto;
  margin-bottom: 25px;
  text-decoration: none;
  border: 1px solid #FF9E48;
  border-radius: 30px;
  background-color: #fdfdfd;
  box-shadow: 10px 10px 29px -21px rgba(0, 0, 0, 0.6); }
  .card__wrapper {
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative; }
  .card__image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 10px; }
    .card__image img {
      width: 45px;
      height: 45px;
      border-radius: 50%; }
  .card__title {
    margin-right: 35px; }
    .card__title h2 {
      font-size: 18px;
      color: #313131;
      line-height: 16px;
      margin: 0; }
    .card__title h6 {
      font-size: 12px;
      color: #313131;
      line-height: 20px; }
      .card__title h6 span {
        color: #FF6D6E; }
  .card__svg {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    position: absolute;
    right: 0;
    display: block; }
    .card__svg img {
      width: 100%;
      height: 100%; }

.category {
  width: 100%;
  height: 300px;
  position: relative; }
  .category img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.category-title {
  width: 100%;
  height: auto;
  background-color: #FF9E48;
  padding: 5px 5px 5px 25px;
  box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.2);
  color: #fdfdfd;
  z-index: 1; }
  .category-title h2 {
    font-size: 22px; }
  .category-title h2::before {
    content: url("../img/svg/category.svg");
    margin-right: 10px; }

.sticky {
  position: fixed;
  top: 0;
  left: 0; }

button {
  width: 100%;
  height: 100%; }

.item-wrapper {
  position: relative;
  width: 340px;
  height: auto;
  margin-bottom: 25px;
  text-decoration: none;
  border: 1px solid #FF9E48;
  border-radius: 10px;
  background-color: #fdfdfd;
  box-shadow: 10px 10px 29px -21px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center; }
    .item-wrapper .item-image {
        width: 100px;
        height: 100px; }
    .item-wrapper .item-image img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        padding: 5px; }
    .item-wrapper .item-content {
        text-decoration: none;
        color: #313131;
        padding: 5px;
        width: 100%; }


    .item-wrapper .item-content .title-button {
      display: flex;
      justify-content: space-between; }
    .item-wrapper .item-content .title-button .item-title h2 {
    font-size: 18px;
    line-height: 18px; }
    .item-wrapper .item-content .title-button .heart-link ImageButton {
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0 7px;
    background-image: url("./img/svg/heart-red.svg");
    background-repeat: no-repeat;
    width: 25px;
    height: 25px; }
    .item-wrapper .item-content .title-button .heart-link:after ImageButton {
    background-image: url("../img/svg/heart-full.svg"); }

    .item-wrapper .item-content .title-button .cart-link ImageButton {
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0 7px;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px; 
    }
    .item-wrapper .item-content .title-button .cart-link:hover ImageButton {
    background-image: url("../img/svg/heart-full.svg"); }
  

    .item-wrapper .item-content .description {
      font-size: 12px;
      color: #585858; }


    .item-wrapper .item-content .price {
      position: relative;
      padding-left: 20px;
      width: 100%;
      border-bottom: 1px solid rgba(255, 157, 72, 0.3); }
    .item-wrapper .item-content .price::before {
    content: url("../img/svg/price.svg");
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px; }
    .item-wrapper .item-content .price h6 {
    font-size: 18px; }


    .item-wrapper .item-content .sub-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .item-wrapper .item-content .sub-info .time {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    margin-right: 0px; }
    .item-wrapper .item-content .sub-info .time::before {
        content: url("../img/svg/time.svg");
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 14px;
        height: 14px; }

    .item-wrapper .item-content .sub-info .product {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    margin-right: 0px; }
    .item-wrapper .item-content .sub-info .product::before {
        content: url("../img/svg/product.svg");
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 14px;

        height: 14px; }
    .item-wrapper .item-content .sub-info .read-more {
    text-decoration: none;
    font-size: 16px;
    color: #313131;
    border: 1px solid #FF9E48;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0 5px; 
    margin-right: 0px;

    cursor: pointer;
    background: transparent;
    background-repeat: no-repeat;
    }
    .item-wrapper .item-content .sub-info .read-more:hover {
       border: 1px solid #3e8e41;
    }






.ct-language__dropdown{
	padding-top: 8px;
	max-height: 0;
	overflow: hidden;
	position: absolute;
	top: 125%;
	left: -38px;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	width: 100px;
	text-align: center;
	padding-top: 0;
  z-index:350;
}
.ct-language__dropdown li{
	background: #222;
	padding: 5px;
}
.ct-language__dropdown li a{
	display: block;
}
.ct-language__dropdown li:first-child{
	padding-top: 10px;
	border-radius: 3px 3px 0 0;
}
.ct-language__dropdown li:last-child{
	padding-bottom: 10px;
	border-radius: 0 0 3px 3px;
}
.ct-language__dropdown li:hover{
	background: #444;
}
.ct-language__dropdown:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 8px;
	height: 0;
	border: 0 solid transparent;
	border-right-width: 8px;
	border-left-width: 8px;
	border-bottom: 8px solid #222;
}
.ct-language {
	position: relative;
    display: flex;
}
.ct-language:hover .ct-language__dropdown{
	max-height: 350px;
	padding-top: 8px;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}



.wrapper-wishlist {
	width:100%;
	height:100%;
	display:flex;
	justify-content: center;
	align-items: center;
}

.home {
  width: 100%;
  height: 200px;
  position: relative;
}
  .home img {
    width: 100%;
    height: 200px;
    object-fit: contain; 
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.home-title {
  width: 100%;
  height: auto;
  background-color: #FF9E48;
  padding: 5px 5px 5px 25px;
  box-shadow: 9px 10px 17px -10px rgba(0, 0, 0, 0.2);
  color: #fdfdfd;
  z-index: 1; }
  .home-title h2 {
    font-size: 22px;
    text-align: center;
  }
