@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import "flickity/css/flickity.css";
:root {
  --body: "Inter", sans-serif;
  --logo: "Cormorant Garamond", serif;
  --main: #f2ede6;
  --secondary: #d8b4a0;
  --accent: #4e5a4d;
  --black: #767676;
  --white: #fff;
  --container-width: 1180px;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: unset;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--main);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body);
  color: var(--black);
  width: 100%;
  margin: auto;
  font-weight: 300;
  letter-spacing: 1px;
  background-color: var(--main);
  line-height: 26px;
  max-width: 1920px;
  overflow-x: hidden !important;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes pageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body select {
  font-family: inherit;
}
body details {
  position: relative;
  width: 300px;
  margin: 1rem 0;
}
body details > summary {
  list-style: none;
  cursor: pointer;
  padding: 3px;
  border-radius: 4px;
  background: var(--white);
}
body details summary::-webkit-details-marker {
  display: none;
}
body details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body details > ul {
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: var(--white);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body details > ul > li {
  padding: 10px;
  cursor: pointer;
}
body details > ul > li:hover {
  background: #f0f0f0;
}
body .button {
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 5px;
  font-weight: 500;
  cursor: pointer;
}
body .button span {
  display: inline-block;
  transition: transform 0.2s ease;
}
body .button:hover span {
  transform: translateX(5px);
}
body h1,
body h2,
body h3 {
  font-family: var(--logo);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 30pt;
  margin-block-start: 0;
  margin-block-end: 0;
  line-height: 37px;
}
body h3 {
  font-size: 15pt;
}
body a {
  text-decoration: unset;
  color: inherit;
  transition: 0.3s ease;
}
body a:hover {
  opacity: 80%;
}
body ul {
  margin: 0;
  padding: 0;
}
body ul li {
  list-style: none;
  display: inline;
}
body nav {
  text-align: center;
}
body nav .usp {
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  padding: 3px 0;
}
body nav ul {
  padding-top: 1rem;
}
body nav ul > li {
  padding: 0 1rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  body nav ul > li {
    padding: 0 5px;
  }
}
body nav ul > li:first-of-type {
  font-weight: 400;
  color: var(--accent);
}
body nav > .logo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
body nav > .logo > img {
  position: absolute;
  right: 10px;
  cursor: pointer;
}
body nav > .logo > a {
  font-family: var(--logo);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 30pt;
  margin-block-start: 0;
  margin-block-end: 0;
  line-height: 37px;
  color: var(--secondary);
}
body nav > .logo > a:hover {
  opacity: 100%;
}
body .home__header {
  padding-top: 2rem;
  position: relative;
}
body .home__header-items {
  position: absolute;
  padding-left: 3rem;
  top: 40%;
}
body .home__header-items > h1 {
  padding-bottom: 1rem;
}
body .home__header-items > span {
  padding: 1rem 0;
  font-weight: 400;
}
body .home__header-items__cta {
  margin-top: 1rem;
  color: var(--white);
  width: 150px;
}
body .home__header > img {
  width: 100%;
  height: 600px;
  opacity: 40%;
}
body .home__usp {
  width: 100%;
  text-align: center;
  padding: 4rem 0;
}
body .home__usp > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  max-width: 1180px;
  margin: auto;
}
@media (max-width: 810px) {
  body .home__usp > ul {
    flex-direction: column;
  }
}
@media (max-width: 810px) {
  body .home__usp > ul > li {
    padding-top: 2rem;
  }
  body .home__usp > ul > li:first-of-type {
    padding-top: 0;
  }
}
body .home__usp > ul > li a > img {
  border-radius: 100px;
}
body .home__usp > ul > li > h3 {
  margin-top: 1rem;
}
body .home__usp .button {
  max-width: 300px;
  margin: auto;
  background-color: var(--accent);
  margin-top: 3rem;
}
body .home__usp .button > a:hover {
  opacity: 100%;
}
body .home__about {
  display: grid;
  grid-template-columns: 30% 1fr;
  background-color: var(--accent);
  max-height: 460px;
  height: 100%;
}
@media (max-width: 1247px) {
  body .home__about {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    max-height: 100%;
  }
}
body .home__about-item {
  color: var(--white);
}
@media (max-width: 1247px) {
  body .home__about-item > img {
    display: none;
  }
}
body .home__about-item:last-of-type {
  padding: 4rem 0;
  text-align: center;
  text-align: -webkit-center;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 810px) {
  body .home__about-item:last-of-type {
    padding: 4rem 2rem;
  }
}
body .home__about-item > h2 {
  color: var(--white);
  margin-bottom: 3rem;
}
body .home__about-item > .button {
  max-width: 200px;
  margin-top: 3rem;
}
body .home__stamps {
  padding: 4rem 0;
}
@media (max-width: 1175px) {
  body .home__stamps {
    padding: 4rem 2rem;
  }
}
body .home__stamps > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  max-width: 1180px;
  margin: auto;
}
@media (max-width: 600px) {
  body .home__stamps > ul {
    display: flex;
    flex-direction: column;
  }
}
body .home__stamps > ul > li {
  padding: 0 1rem;
}
@media (max-width: 600px) {
  body .home__stamps > ul > li {
    padding-top: 1.5rem;
  }
}
body .home__stamps > ul > li > h3 {
  padding: 1rem 0;
}
body .home__edit {
  width: 100%;
  background-color: var(--secondary);
  padding: 4rem 0;
  font-size: 12pt;
}
body .home__edit > h2 {
  color: var(--main);
  margin-left: 1rem;
}
body .home__edit .carousel {
  padding: 2rem;
}
body .home__edit .carousel .carousel-cell {
  background-color: var(--main);
  color: var(--black);
  width: 200px;
  height: 120px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
  transition: 0.3s ease;
}
body .home__edit .carousel .carousel-cell:first-of-type {
  margin-left: 0;
}
body .home__edit .carousel .carousel-cell:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
body .plp__header {
  padding: 4rem 0;
  margin-top: 2rem;
  width: 100%;
  background-color: var(--accent);
  color: var(--main);
  text-align: center;
}
body .plp__header > h1 {
  color: var(--main);
}
body .plp__header-info {
  max-width: 800px;
  margin: auto;
  padding-top: 2rem;
}
@media (max-width: 830px) {
  body .plp__header-info {
    padding: 2rem 2rem 0 2rem;
  }
}
body .plp__products {
  padding: 4rem 0;
  max-width: 1180px;
  margin: auto;
}
@media (max-width: 800px) {
  body .plp__products {
    padding: 4rem 2rem;
  }
}
body .plp__products > ul {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 500px) and (max-width: 800px) {
  body .plp__products > ul {
    justify-content: space-between;
  }
}
@media (max-width: 500px) {
  body .plp__products > ul {
    flex-wrap: unset;
    flex-direction: column;
  }
}
body .plp__products > ul > li {
  flex: 0 0 25%;
  text-align: center;
  padding: 2rem 0;
  cursor: pointer;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}
body .plp__products > ul > li .plp__products-price {
  font-size: 10pt;
  color: #a49d9d;
}
body .plp__products-desc {
  padding-top: 5px;
  font-weight: 500;
}
body .plp__products-img {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body .plp__products-img .popular {
  width: 200px;
  background-color: var(--secondary);
  position: absolute;
  top: 0;
  font-weight: 600;
  color: var(--white);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
body .pdp {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(10px);
  animation: pageFadeIn 0.45s ease-out forwards;
}
@media (max-width: 865px) {
  body .pdp {
    padding-bottom: 6rem;
  }
}
body .pdp__mobile-cta {
  display: none;
}
@media (max-width: 865px) {
  body .pdp__mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: var(--main);
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  }
  body .pdp__mobile-cta > .button {
    background-color: var(--accent);
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
body .pdp__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 865px) {
  body .pdp__container {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 865px) {
  body .pdp__container-item:last-of-type {
    display: flex;
    width: 100%;
    align-self: center;
    padding-top: 2rem;
  }
  body .pdp__container-item:first-of-type {
    margin: 1rem;
  }
}
body .pdp__container-item__cta {
  background-color: unset !important;
  color: var(--black);
  font-style: italic;
  font-size: 9pt;
  padding: 2px;
}
body .pdp__container-item__qty {
  padding: 1rem 0;
  text-align: center;
  cursor: pointer;
  max-width: 100px;
  margin: auto;
}
body .pdp__container-item__qty input {
  width: 10px;
  border: none;
  background-color: var(--main);
  color: var(--black);
  font-family: inherit;
}
body .pdp__container-item__about {
  padding: 2rem 0;
}
body .pdp__container-item__price {
  font-weight: 500;
  font-size: 12pt;
  text-align: center;
}
@media (max-width: 500px) {
  body .pdp__container-item__desc {
    margin: 1rem;
  }
}
body .pdp__container-item__desc-size {
  font-weight: 400;
  font-size: 10pt;
}
body .pdp__container-item__desc > .button {
  background-color: var(--accent);
  margin-bottom: 1rem;
}
@media (max-width: 865px) {
  body .pdp__container-item__desc > .button {
    display: none;
  }
}
body .pdp__container-item__selector {
  display: flex;
  justify-content: center;
}
body .pdp__container-item > ul {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  width: 100%;
}
body .pdp__container-item > ul > li {
  display: flex;
  padding: 7px 0;
}
body .pdp__container-item > ul > li > img {
  padding-right: 10px;
}
body .pdp__container-item:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
}
body .pdp__container-item:last-of-type {
  max-width: 420px;
}
body footer {
  width: 100%;
  background-color: var(--accent);
  color: var(--main);
  padding: 4rem 0;
}
body footer .footer__content {
  max-width: 1180px;
  margin: auto;
}
body footer .footer__content-items {
  /* grid-template-columns: 1fr 1fr 3fr; */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 885px) {
  body footer .footer__content-items {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
body footer .footer__content-items > ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 885px) {
  body footer .footer__content-items > ul {
    padding-top: 2rem;
  }
  body footer .footer__content-items > ul:first-of-type {
    padding-top: 0;
  }
}
body footer .footer__content-items > ul > h1 {
  color: var(--secondary);
  margin-bottom: 0;
}
body footer .footer__content-items > ul:first-of-type {
  justify-content: center;
}
body footer .footer__content-items > ul:first-of-type > li {
  font-size: 8pt;
}
body footer .footer__content-items > ul:last-of-type {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
body footer .footer__content-items > ul:last-of-type > li {
  padding: 0 1rem;
}
body .hiw,
body .FAQs,
body .about,
body .privacy-policy,
body .terms-and-conditions,
body .shipping-policy,
body .contact,
body .blog {
  max-width: 800px;
  margin: auto;
  padding: 4rem 0;
}
@media (max-width: 845px) {
  body .hiw,
  body .FAQs,
  body .about,
  body .privacy-policy,
  body .terms-and-conditions,
  body .shipping-policy,
  body .contact,
  body .blog {
    padding: 4rem 2rem;
  }
}
body .hiw__info,
body .FAQs__info,
body .about__info,
body .privacy-policy__info,
body .terms-and-conditions__info,
body .shipping-policy__info,
body .contact__info,
body .blog__info {
  text-align: center;
  font-style: italic;
  width: 100%;
}
body .hiw__steps-num,
body .FAQs__steps-num,
body .about__steps-num,
body .privacy-policy__steps-num,
body .terms-and-conditions__steps-num,
body .shipping-policy__steps-num,
body .contact__steps-num,
body .blog__steps-num {
  padding-top: 1rem;
}
body .hiw__block > ul,
body .FAQs__block > ul,
body .about__block > ul,
body .privacy-policy__block > ul,
body .terms-and-conditions__block > ul,
body .shipping-policy__block > ul,
body .contact__block > ul,
body .blog__block > ul {
  display: flex;
  flex-direction: column;
}
body .hiw__block > ul > li,
body .FAQs__block > ul > li,
body .about__block > ul > li,
body .privacy-policy__block > ul > li,
body .terms-and-conditions__block > ul > li,
body .shipping-policy__block > ul > li,
body .contact__block > ul > li,
body .blog__block > ul > li {
  padding-top: 4px;
}
body .hiw__block > ul > li:first-of-type,
body .FAQs__block > ul > li:first-of-type,
body .about__block > ul > li:first-of-type,
body .privacy-policy__block > ul > li:first-of-type,
body .terms-and-conditions__block > ul > li:first-of-type,
body .shipping-policy__block > ul > li:first-of-type,
body .contact__block > ul > li:first-of-type,
body .blog__block > ul > li:first-of-type {
  padding-top: 0;
}
body .hiw h1,
body .FAQs h1,
body .about h1,
body .privacy-policy h1,
body .terms-and-conditions h1,
body .shipping-policy h1,
body .contact h1,
body .blog h1 {
  text-align: center;
  padding-bottom: 2rem;
}
body .hiw h2,
body .FAQs h2,
body .about h2,
body .privacy-policy h2,
body .terms-and-conditions h2,
body .shipping-policy h2,
body .contact h2,
body .blog h2 {
  padding-top: 2rem;
}
body .hiw h2:first-of-type,
body .FAQs h2:first-of-type,
body .about h2:first-of-type,
body .privacy-policy h2:first-of-type,
body .terms-and-conditions h2:first-of-type,
body .shipping-policy h2:first-of-type,
body .contact h2:first-of-type,
body .blog h2:first-of-type {
  padding-top: none;
}
body .hiw h3,
body .FAQs h3,
body .about h3,
body .privacy-policy h3,
body .terms-and-conditions h3,
body .shipping-policy h3,
body .contact h3,
body .blog h3 {
  padding-top: 1rem;
}
body .contact > h1 {
  padding-bottom: 1rem;
}
body .contact > p {
  text-align: center;
}
body .contact > form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
body .contact > form input,
body .contact > form textarea {
  background-color: var(--main);
  border: none;
  border-bottom: 1px solid var(--black);
  margin-bottom: 1rem;
}
body .contact > form input::-moz-placeholder, body .contact > form textarea::-moz-placeholder {
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 1px;
}
body .contact > form input::placeholder,
body .contact > form textarea::placeholder {
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 1px;
}
body .contact > form textarea {
  margin-bottom: 2rem;
}/*# sourceMappingURL=global.css.map */