/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat: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&display=swap");

@font-face {
  font-family: "Logga";
  src: url("/assets/fonts/LoggaRegular.eot");
  src: url("/assets/fonts/LoggaRegular.eot?#iefix") format("embedded-opentype"),
    url("/assets/fonts/LoggaRegular.woff2") format("woff2"),
    url("/assets/fonts/LoggaRegular.woff") format("woff"),
    url("/assets/fonts/LoggaRegular.ttf") format("truetype"),
    url("/assets/fonts/LoggaRegular.svg#LoggaRegular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --warmth-orange: #ff9201;
  --the-brown: #8c4303;
  --the-l-brown: #bf5e26;
  --the-grey: #737373;
  --the-l-grey: #f2f2f2;
  --theme-dark: #0d0d0d;
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --cor-font: "Cormorant Infant", serif;
  --mont-font: "Montserrat", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
}

/*========== BASE SECTION ==========*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--mont-font);
  font-size: var(--fs-1);
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--white);
  color-scheme: light dark;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  display: inline;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--mb-8);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  width: fit-content;
  height: auto;
  padding: var(--mb-0-5) var(--mb-1);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--pop-font);
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*========== FADE ANIMATION  ==========*/
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeY {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeX {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* animation: fade 0.5s ease-in-out; */

/*========== PRODUCT CARD ANIMATION  ==========*/
@keyframes slideImages {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ======= [ ANIMATED CAROUSEL ] ======= */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* Hide Fallback content first */
  .fallback {
    display: none;
  }

  .carousel {
    display: block !important;
    max-height: none !important;
    position: relative;
    overflow: hidden;
    /* border: 4px red solid; */
    width: 100%;
    /* height: 100%; */
  }

  /* 
      Selective blocking for clients.
      - Samsung (#MessageViewBody) - no absolute positioning
      - Comcast/Zimbra (body.MsgBody) - inconsistent CSS support
      */
  #MessageViewBody .fallback,
  body.MsgBody .fallback {
    display: block;
  }
  #MessageViewBody .carousel,
  body.MsgBody .carousel {
    display: none !important;
  }

  .carousel a {
    width: 100%;
    height: 100% !important;
    display: block;
  }

  .carousel img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .carousel.responsive {
    width: 100% !important;
    height: 100%;
  }

  .carousel.responsive .car-cont {
    width: 100% !important;
    height: 100% !important;
  }

  /* Fade  */
  .carousel.fade a {
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-animation: car-anim 9s linear infinite;
  }

  .carousel.fade a:nth-child(1) {
    position: relative;
    -webkit-animation-delay: -10s;
  }
  .carousel.fade a:nth-child(2) {
    -webkit-animation-delay: -7s;
  }
  .carousel.fade a:nth-child(3) {
    -webkit-animation-delay: -4s;
  }

  @-webkit-keyframes car-anim {
    /* start fade in */
    0% {
      z-index: 2;
      opacity: 0;
    }
    /* end fade in */
    5% {
      opacity: 1;
    }
    33% {
      z-index: 2;
    }
    /* lower z-index - allow next image to fade in */
    33.1% {
      z-index: 1;
    }
    /* already obscured */
    38% {
      opacity: 1;
    }
    /* hide */
    38.1% {
      opacity: 0;
    }
    100% {
      z-index: 1;
      opacity: 0;
    }
  }
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -5rem;
  background-color: var(--secondary-blue);
  opacity: 0.9;
  padding: var(--mb-0-5);
  border-radius: 0.4rem;
  z-index: 1.1;
  transition: 0.4s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollup:hover {
  opacity: 1;
  bottom: 2.35rem;
  /* background-color: var(--primary-pink); */
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .scrollup:hover .scrollup__icon {
  color: var(--primary-pink);
} */

/* Show scroll */
.show-scroll {
  bottom: 2rem;
}

/*========== HEADER ==========*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 4rem; */
  padding: 0 var(--mb-6);
  padding-top: var(--mb-1);
  /* border: 1px tomato solid; */
  z-index: 100;
}

.header.active {
  padding-top: 0;
}

.nav {
  width: 100%;
  justify-content: space-between;
  /* border: 1px dodgerblue solid; */
}

.nav.active {
  background-color: var(--white);
  padding: var(--mb-1) var(--mb-1-5);
  box-shadow: rgba(99, 99, 99, 0.05) 0px 1px 4px 2px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.nav-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.nav-logo a {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.nav-logo a img {
  height: 15.5px;
  object-fit: cover;
  /* border: 1px lime solid; */
}

.nav-menu {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-2);
  /* border: 1px limegreen solid; */
}

.nm-logo,
#nm-open,
#nm-close {
  display: none;
}

.nm-links {
  width: auto;
  column-gap: var(--mb-1);
  padding-right: var(--mb-2);
  border-right: 2px var(--the-l-brown) solid;
}

.nml {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.nml a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft-black);
  text-align: center;
}

.nml span {
  position: absolute;
  bottom: 0;
  width: 0;
  background-color: var(--the-l-brown);
  height: 2px;
  transition: 0;
  transition: all 0.2s ease;
}

.nml:hover span {
  width: 100%;
}

.nm-btn {
  flex: 0 0 auto;
}

.nm-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
  padding: var(--mb-0-5) var(--mb-1);
  border: 2px var(--soft-black) solid;
  background-color: transparent;
  border-radius: 30px;
  color: var(--soft-black);
  font-size: 0.8rem;
  font-weight: 600;
}

.nm-btn a i {
  font-size: 1.3rem;
  transition: unset;
}

.nm-btn a:hover {
  background-color: var(--the-l-brown);
  border: 2px var(--the-l-brown) solid;
  color: var(--soft-white);
}

/* .nm-btn button:hover i {
  color: var(--the-l-brown);
} */

/*========== FOOTER ==========*/
.footer {
  width: 100%;
  background-color: var(--soft-white);
  padding: var(--mb-3) var(--mb-7);
}

.fo-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: unset;
}

.f-header {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--mb-2);
  border-bottom: 2px #eee solid;
  margin-bottom: var(--mb-2);
  /* border: 1px tomato solid; */
}

.fh-logo {
  flex: 0 0 30%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.fh-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fh-logo a img {
  width: 90px;
}

.fh-logo p {
  width: 80%;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--soft-black);
  /* display: none; */
}

.fh-links,
.fh-contact,
.fh-socials {
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
  margin-top: var(--mb-1);
}

.fh-links h5,
.fh-contact h5,
.fh-socials h5 {
  font-size: var(--fs-1);
  font-weight: 500;
  color: var(--soft-black);
  text-align: left;
  font-weight: 500;
}

.fh-links ul,
.fh-contact ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
  flex-direction: column;
}

.fh-links ul li,
.fh-contact ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.fh-links ul li a,
.fh-contact ul li a {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.fh-links ul li a:hover,
.fh-contact ul li a:hover {
  color: var(--the-l-brown);
}

.fhs {
  column-gap: var(--mb-0-5);
}

.fhs a {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fhs a i {
  padding: var(--mb-0-25);
  border-radius: 50%;
  border: 2px var(--text-grey) solid;
  color: var(--soft-black);
  font-size: var(--fs-1);
}

.fhs a i:hover {
  border: 2px var(--the-l-brown) solid;
}

.f-footer {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px dodgerblue solid; */
}

.f-footer p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.ff-terms {
  column-gap: var(--mb-1);
  justify-content: flex-end;
}

.ff-terms a {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-black);
}

.ff-terms a:hover {
  color: var(--the-l-brown);
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  .header {
    padding: 0 var(--mb-1-5);
    padding-top: var(--mb-1);
  }

  /* .nav {
    border: 1px lime solid;
  } */

  .nav.active {
    background-color: var(--white);
    padding: var(--mb-1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  #nm-open {
    display: inline-block;
    font-size: var(--fs-1-5);
    color: var(--soft-black);
    font-weight: 500;
  }

  .nav-logo a img {
    height: 13px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    animation: fadeY 0.3s ease;
    padding: var(--mb-3) var(--mb-2);
    row-gap: var(--mb-3);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 10px 2px;
    justify-content: flex-start;
    flex-direction: column;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23bf5e26' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-end;
    column-gap: var(--mb-2);
    display: none;
    /* border: 1px limegreen solid; */
  }

  .nav-menu.active {
    display: flex;
    animation: fadeY 0.3s ease;
  }

  #nm-close {
    display: inline-block;
    font-size: var(--fs-1-5);
    color: var(--soft-black);
    font-weight: 600;
  }

  #nm-close:hover {
    color: var(--error);
  }

  .nm-logo {
    display: inline-block;
    width: 35%;
  }

  .nm-logo img {
    width: 100%;
    object-fit: cover;
  }

  .nm-links {
    width: auto;
    column-gap: unset;
    flex-direction: column;
    row-gap: var(--mb-1);
    padding: 0;
    border: none;
    border-top: 2px var(--the-l-brown) solid;
    border-bottom: 2px var(--the-l-brown) solid;
    padding: var(--mb-2) 0;
  }

  .nml a {
    font-size: 1.1rem;
    font-weight: 500;
  }

  /*========== FOOTER ==========*/
  .footer {
    width: 100%;
    background-color: var(--soft-white);
    padding: var(--mb-4) var(--mb-2);
  }

  .fo-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: unset;
  }

  .f-header {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-4);
    padding-bottom: var(--mb-4);
    border-bottom: 2px #eee solid;
    margin-bottom: var(--mb-4);
    /* border: 1px tomato solid; */
  }

  .fh-logo {
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-1);
  }

  .fh-logo a img {
    width: 120px;
  }

  .fh-logo p {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
  }

  .fh-links,
  .fh-contact,
  .fh-socials {
    align-items: center;
    row-gap: var(--mb-0-75);
  }

  .fh-links h5,
  .fh-contact h5,
  .fh-socials h5 {
    font-size: var(--fs-1);
    text-align: center;
  }

  .fh-links ul,
  .fh-contact ul {
    width: auto;
    align-items: center;
    row-gap: var(--mb-0-5);
  }

  .fh-links ul li,
  .fh-contact ul li {
    justify-content: center;
  }

  .fh-links ul li a,
  .fh-contact ul li a {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
  }

  .fhs {
    column-gap: var(--mb-0-75);
  }

  .f-footer {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    /* border: 1px dodgerblue solid; */
  }

  .f-footer p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
  }

  .ff-terms {
    column-gap: unset;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1);
  }

  .ff-terms a {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
  }
}

/* Media query for screens with a minimum width of 1500px */
@media screen and (min-width: 1600px) {
  /*========== HEADER ==========*/
  .header {
    padding: 0 17rem;
    padding-top: var(--mb-1-5);
  }

  /*========== FOOTER ==========*/
  .footer {
    padding: 0;
    padding: var(--mb-4) 17rem;
    /* border: 1px red solid; */
  }

  .fo-container {
    width: 100%;
  }

  .f-header {
    width: 100%;
  }
}
