/** Shopify CDN: Minification failed

Line 9:37 Expected ":"

**/
/* Generic Theme Styles */
:root {
  --black: #1D1D1D;
  --transition-default: 0.3s; ease-in;
}

@media (prefers-color-scheme: dark) {
  :root {
    --black: #ececec;
  }
}

html {
  font-size: 10px;
}

body {
  font-family: "minionpro-regular", sans-serif;
  font-size: 1.3rem;
}

img {
  height: auto;
}

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

em {
  font-family: "minionpro-it", sans-serif;
}

p {
  margin-bottom: 4rem;
}

.--is--hidden {
  display: none;
}

.loader {
  width: 15px;
  height: 15px;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 

#shopify-section-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.shopify-section {
  width: 100%;
}

/* Top Bar */

.header__top-bar {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  z-index: 2;
  position: relative;
}

.header__top-bar p {
  margin: 0;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  color: #000;
  transition: color var(--transition-default);
}

.header__store-name {
  width: 6.5rem;
  display: flex;
  justify-content: space-between;
}

.header__store-name--desktop {
  display: none;
}

.template-blog,
.template-article {
  & .header {
    color: #fff
  }
}

.template-blog:has(.header__nav--mobile.--is-open),
.template-article:has(.header__nav--mobile.--is-open) {
  & .header {
    color: #000
  }
}

/* header__nav */

.header__nav {
  /* background-color: pink; */
}

.header__nav-item {
  display: inline-block;
}

.header__nav--desktop {
  display: none;
}

/* Mobile Nav */

@media screen and (max-width: 991px) {
  .header__nav--mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
  }

  .header__nav--mobile.--is-open {
    opacity: 1;
    pointer-events: all;
  }

  .header__nav--mobile .header__nav-item {
    padding: 0.5em 0;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.02rem;
    text-align: center;
    color: #000;
  }

  .header__book-appointment {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.3rem;
  }

  .header__nav-toggle,
  .header__nav-cart {
    z-index: 2;
  }
}

.header__nav-item:hover:before,
.header__nav-item.--is-active:before {
  content: "( ";
  color: inherit;
}

.header__nav-item:hover:after,
.header__nav-item.--is-active:after {
  content: " )";
  color: inherit;
}

@media screen and (min-width: 992px) {
  .header__store-name--desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    width: 19rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .template-index .header__store-name--desktop {
    display: none;
  }

  .header__store-name--mobile {
    display: none;
  }

  .header__nav--mobile,
  .header__nav-toggle {
    display: none;
  }

  .header__nav-item:before {
    content: "( ";
    color: transparent;
  }

  .header__nav-item:after {
    content: " )";
    color: transparent;
  }

  /* Desktop Nav */

  .header__nav--desktop {
    display: flex;
    flex-grow: 1;
  }

  .header__nav--desktop .header__nav-item {
    padding: 0 2rem;
  }

  .header__nav--desktop .header__nav-item:nth-of-type(4) {
    margin-left: auto;
  }

  .header__nav-cart {
    padding: 0 2rem;
  }
}

/* Footer */

#shopify-section-footer {
  position: relative;
}

.footer {
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  width: 100%;

  &.--is-active {
    pointer-events: all;
  }

  & .footer__nav {
    display: flex;
    justify-content: space-between;
  }
}

body.template-index .footer {
  opacity: 0;
}

body.template-index .footer.--is-active {
  opacity: 1;
  z-index: 9999;
  position: fixed;
  bottom: 0;
}

@media screen and (max-width: 991px) {
  body:not(.template-index) .footer {
    pointer-events: all;
  }
}

@media screen and (min-width: 992px) {
  .footer {
    & .footer__nav {
      justify-content: space-around;
    }
  }

  .footer {
    opacity: 0;
    z-index: 9999;    

    &.--is-active {
      opacity: 1;
      pointer-events: all;
      position: fixed;
      bottom: 0;
    }

    & .footer__nav {
      display: flex;
      justify-content: space-around;
    }
  }
}

/* Policy */

.shopify-policy__container {
  padding-top: 11rem;
}

.shopify-policy__title {
  display: none;
}

.archive-store-animation {
  display: none;
}

@media screen and (min-width: 992px) {
  .archive-store-animation {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'minionpro-regular', serif;
    font-size: 16px;
    color: #000;
    z-index: 2;
    width: calc(100% - 20vw);
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    pointer-events: none;

    & > div {
      display: flex;
      justify-content: space-between;
      position: absolute;
      width: 100%;
      left: 0;
      top: 0;
      transition: all 0.3s ease-in-out;
    }

    & .archive-store-animation__full {
    
    }

    & .archive-store-animation__abbr {
      opacity: 0;
      transition: all 0.2s ease-out;
      transform: translateY(0);
    }

    & .archive-store-animation__abbr--header {
      transform: translate(-50%, -50vh);
      width: 70px;
      left: 50%;
      padding-top: 8px;
      opacity: 0;
      transition: all 0.2s ease-out;
    }

    &.--is-active {
      & .archive-store-animation__full {
        opacity: 0;
      }

      & .archive-store-animation__abbr {
        opacity: 1;
      }
    }

    &.--is-last {
      & .archive-store-animation__abbr {
        transform: translateY(-55vh);
        transition: all 0.2s ease-in;
      }

      & .archive-store-animation__abbr--header {
        opacity: 1;
      }
    }
  }
}


/* Modal */

.modal-content__modal-wrapper {
  padding: 1rem;
  background-color: #fff;
  height: 100%;

  & p {
    margin-bottom: 2rem;
  }

  & p:empty {
    display: none;
  }
}

.modal-content__modal {
  position: fixed;
  top: 0;
  right: -100vw;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-out;
  pointer-events: none;
  backdrop-filter: none;
}

.modal-content__modal--active {
  right: 0;
  opacity: 1;
  pointer-events: all;
  transition: right 0.3s ease-in;
  backdrop-filter: blur(60px);
}

.modal-content__modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;

  & > * {
    margin: 0;
  }
}


.modal-content__modal.--is-hidden {
  display: none;
}

.modal-content__modal:not(.--is-hidden) {
  display: block;
}

@media screen and (min-width: 992px) {
  .modal-content__modal-wrapper {
    padding: 1rem;
    max-width: 50%;
    margin-left: 50%;
    transform: translateX(100%);
  }
}

#shopify-section-header {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

body:has(.modal-content__modal--active) {
  #shopify-section-header {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 992px) {
  .modal-content__modal {
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }

  .modal-content__modal.--animate {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
  
  .modal-content__modal-box {
    transform: translateX(0);
    transition: transform 0.3s ease-in;
  }

  .modal-content__modal-box--hidden {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }
}


.template-article {
  @media screen and (max-width: 991px) {
    & .main > .shopify-section:first-of-type .image-section {
      align-items: flex-start;
      padding-top: 50vh;
      
      & .image-container {
        max-width: 100vw;
      }

      & .image-section__text {
        bottom: auto;
        top: 50vh;
        transform: translate(-50%, -100%);
        padding-bottom: 15px;

        & p {
          margin-bottom: 0;
        }
      }
    }
  }
}