@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

body {
  font-family: "Montserrat", sans-serif, Arial;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile {
  display: none;
}

.wrapper0 {
  margin-bottom: 10vw;
}

#footer-mobile {
  display: none;
}

.header-mobile {
  display: none;
}

.br-mobile {
  display: none;
}

a {
  text-decoration: none;
}

.btn,
.btn-white,
.category-button {
  cursor: pointer;
}

/* header start */

header {
  display: flex;
  position: relative;
  width: 100%;
  margin: auto;
}

.headerContent {
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 2.5vw;
}

.headerContent h1 {
  color: #fff;
  font-size: 4vw;
}

.headerContent h1 .header-italic {
  display: block;
  font-style: italic;
  font-size: 3.5vw;
  font-weight: 400;
}

.headerContent img {
  width: 60%;
}

.subheader {
  margin: 2vw auto;
  width: 73vw;
  text-align: center;
  font-size: 1.5vw;
  line-height: 2vw;
  letter-spacing: 0.04vw;
}

/* header end */

/* headers */

section > h2,
.category > h2 {
  text-align: left;
  font-size: 1.6vw;
  color: #98645d;
  padding-left: 5vw;
  margin-bottom: 1vw;
}

section .header-line {
  background: linear-gradient(270deg, #ffd194 0%, #d1913c 100.01%);
  width: 80vw;
  height: 0.2vw;
}

section .header-italic {
  font-style: italic;
  font-weight: 400;
}

/* section start */

section {
  margin-bottom: 3vw;
}

section .category-filters {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

section .category-filters > img {
  width: 21vw;
}

section .category-nav {
  width: 65vw;
  display: grid;
  grid-template-columns: 32.2% 32.2% 32.2%;
  grid-template-rows: 1fr 1fr;
  grid-gap: 10% 1.7%;
  text-align: center;
  justify-content: center;
  padding: 1vw 2vw;
}

section .category-nav .category-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  border: 2px solid #ffd194;
  border-radius: 0.8vw;
  background-color: transparent;
  height: 10vw;
}

section .category-nav .category-button h2 {
  font-size: 1.1vw;
  font-weight: bold;
  color: black;
  text-align: left;
}

section .category-nav .category-button img {
  height: 100%;
  width: auto;
  padding: 5% 0;
}

.forhimher .category-filters > div {
  display: grid;
  width: 65vw;
  padding: 1vw 2vw;
  grid-template-columns: 49% 49%;
  grid-gap: 2%;
  text-align: center;
}

.forhimher .unit {
  cursor: pointer;
}

.forhimher .unit h2 {
  font-size: 1.2vw;
}

.priceFilters .category-filters {
  margin-top: 0.5vw;
  justify-content: flex-start;
}

.priceFilters .category-filters > img {
  width: 27.5vw;
}

.priceFilters .category-filters > div {
  width: 65vw;
  padding: 1vw 2vw;
  display: flex;
  justify-content: space-between;
}

.priceFilters .btn {
  display: inline-block;
  width: 30%;
  padding: 1.5vw 0;
  font-size: 1.2vw;
  font-weight: 600;
  color: #181818;
  text-align: center;
  border: 2px solid #ffd194;
  border-radius: 0.8vw;
}

.priceFilters .btn:hover {
  background-color: #181818;
  color: #ffffff;
  border-color: #181818;
  box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.2);
}

/* products -- start */

.category {
  position: relative;
}

.category img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.category p {
  margin: 0;
}

.category input {
  display: none;
}

.category label {
  display: block;
}

.category .sliderContainer {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  width: 85%;
  margin: 3vw auto;
}

.category .slider {
  min-width: 100%;
  display: flex;
  flex-shrink: 0;
  transition: transform 0.5s;
}

.category .arrow-container {
  opacity: 0;
  position: absolute;
  width: 2vw;
  height: 2vw;
  left: 7vw;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid #e4eded;
  border-radius: 50%;
}

.category:hover .arrow-container {
  opacity: 1;
}

.category .arrow-left {
  transform: rotate(180deg);
}

.category .arrow-right {
  left: auto;
  right: 7vw;
}

.category .prod-container {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.categories .category {
  display: none;
}

.category .prod-container > img {
  width: 90%;
  height: auto;
  margin-bottom: 1vw;
}

.category .prod-container .prod-details {
  text-align: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5vw;
}

.category .prod-container .prod-details .txt {
  font-family: "Montserrat", sans-serif;
  color: #1b1b1b;
  line-height: 1.5;
  font-size: 0.8vw;
}

.category .prod-container .prod-details .btnLink {
  display: block;
  width: fit-content;
  margin: 0.5vw auto;
  padding: 0.7vw 1vw;
  color: #181818;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 0.3vw;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9vw;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.category .prod-container .prod-details .btnLink:hover {
  color: #fff;
  background: #181818;
  border-color: #181818;
  transition: all 0.4s ease 0s;
}

.category .prod-container .promotion-price {
  font-size: 1.5vw;
  color: #181818;
  font-weight: bold;
}

.category .prod-container .regular-price {
  color: #8f8f8f;
  font-size: 0.8vw;
  text-decoration: line-through;
}
/* products -- end */

.wellbeing {
  width: 90vw;
  margin: 3vw auto;
  position: relative;
}
.wellbeing .father-day{
  position: absolute;
  text-align: center;
  width: 30%;
  top: 30%;
  left: 10vw;
}
.wellbeing .father-day h3{
  color: #000;
}
.wellbeing .father-day h3 span{
font-weight: normal;
}
.wellbeing .div-wellbeing {
  position: absolute;
  text-align: center;
  width: 30%;
  top: 30%;
  right: 5vw;
}

.wellbeing .div-wellbeing h3 {
  color: #fff;
  font-size: 2.2vw;
  line-height: 1.4;
}

.wellbeing .div-wellbeing button {
  line-height: 1.4;
  width: fit-content;
  margin: 1.5vw auto;
  padding: 1vw 1.2vw;
  color: #181818;
  background-color: #fff;
  border: none;
  border-radius: 0.2vw;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9vw;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

#wellbeing, #mother {
  display: none;
}
.header-color {
  /* color: #814b52; */
  
  color: #b42129;
}

.xmas .first-minute{
  position: absolute;
  text-align: center;
  width: 22%;
  top: 4vw;
  right: 5vw;
  text-shadow: 3px 3px #808080a3;
}

.first-minute h3 {
  font-size: 2.4vw;
  line-height: 1.4;
  color: #fff;
}
/* MOBILE */
/* *3 */

@media screen and (max-width: 768px) {
  /* br {
    display: none;
  } */

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .header-mobile {
    display: unset;
    width: 100%;
  }

  .header-desktop {
    display: none;
  }

  header {
    display: flex;
    flex-wrap: wrap;
  }

  .headerContent {
    top: 50%;
    transform: translateY(-50%);
    left: 18%;
    width: 80%;
  }
  .headerContent h1 {
    font-size: 5.5vw;
    text-align: end;
  }
  .headerContent h1 .header-italic {
    font-size: 4vw;
  }
  section .header-line {
    height: 1px;
  }
  .headerContent img {
    width: 100%;
  }

  section .header-line {
    margin-bottom: 5vw;
  }

  .subheader {
    font-size: 4.5vw;
    line-height: 6vw;
    margin: 5vw auto;
  }

  section > h2,
  .category > h2,
  .forhimher .unit h2 {
    font-size: 4.8vw;
  }

  .category .prod-container .prod-details .txt {
    font-size: 3vw;
  }

  .category .prod-container .prod-details {
    width: 75%;
    gap: 2vw;
  }

  .category .prod-container .promotion-price {
    font-size: 5vw;
  }

  .category .prod-container .prod-details .btnLink {
    margin: 2vw auto;
    padding: 2.5vw 4vw;
    border-radius: 1vw;
    font-size: 3vw;
  }

  .category .prod-container > img {
    width: 70%;
    margin-bottom: 5vw;
  }

  .category .arrow-container {
    opacity: 1;
    width: 10vw;
    height: 10vw;
    left: 2vw;
  }

  .category .arrow-right {
    left: auto;
    right: 2vw;
  }

  section .category-filters {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  section .category-filters > img {
    display: none;
    width: 40vw;
    transform: rotate(-90deg);
    align-self: flex-start;
  }

  section .category-nav {
    width: 90vw;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 3vw;
  }

  section .category-nav .category-button {
    border-radius: 2.4vw;
    height: 20vw;
  }

  section .category-nav .category-button h2 {
    font-size: 3vw;
  }

  .forhimher .category-filters > div {
    width: 90vw;
    padding: 1vw 0;
    grid-template-columns: 100%;
    grid-gap: 0;
  }

  .forhimher .unit {
    margin-top: 5vw;
  }

  .priceFilters .category-filters > div {
    width: 90vw;
    padding: 1vw 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .priceFilters .btn {
    width: 90%;
    padding: 4.5vw 0;
    font-size: 4.5vw;
    border-radius: 2.4vw;
    margin-top: 5vw;
  }

  section {
    margin-bottom: 10vw;
  }

  .wellbeing {
    margin: 10vw auto;
  }

  .wellbeing .div-wellbeing {
    width: 100%;
    top: 70%;
    right: unset;
  }
  .wellbeing .div-wellbeing h3 {
    font-size: 3.6vw;
    line-height: 1.4;
  }
  .wellbeing .div-wellbeing button {
    margin: 2.5vw auto;
    padding: 3vw 4.2vw;
    border-radius: 0.5vw;
    font-size: 3vw;
  }
  .xmas .first-minute {
    padding: 0 55px;
    width: 100%;
    top: 47vw;
    right: unset;
  }
  .xmas .first-minute h3 {
    font-size: 5.6vw!important;
    line-height: 1.3;
  }
}
