@charset "UTF-8";
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body, h1, h2, h3, h4, h5, h6, p, ol, ul, small {
  margin: 0;
  padding: 0; }

ol, ul {
  list-style: none; }

a,
a img {
  border: 0;
  outline: none;
  background: transparent;
  text-decoration: none; }
  a:active, a:hover,
  a img:active,
  a img:hover {
    outline: 0;
    text-decoration: none; }

figure {
  margin: 0; }

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available; }

header,
footer,
main,
aside,
section,
article {
  position: relative;
  width: 100%; }

.w-100 {
  width: 100%; }

.w-fit {
  width: fit-content; }

.h-100 {
  height: 100%; }

.vh-full {
  min-height: 100vh; }

.dvh-full {
  min-height: 100dvh; }

.h-parent {
  min-height: inherit; }

.f-grid {
  display: grid; }

.relative {
  position: relative; }

.inline-flex {
  display: inline-flex; }

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

.hide {
  display: none; }

.show {
  display: block; }

.block {
  display: block; }

.sticky {
  position: sticky;
  top: 0; }

.flex {
  display: flex;
  align-items: center;
  gap: 18px; }

.f-central {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center; }

.f-auto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px; }

.pos-full {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0; }

.f-row {
  display: flex;
  flex-direction: column; }

.item-top {
  align-items: flex-start; }

.item-middle {
  align-items: center; }

.item-center {
  justify-content: center; }

.item-left {
  justify-content: flex-start; }

.item-right {
  justify-content: flex-end; }

.item-bottom {
  align-items: flex-end; }

.item-around {
  justify-content: space-around;
  align-content: space-around; }

.item-between {
  justify-content: space-between; }

.item-column {
  flex-direction: row; }

.item-row {
  flex-direction: column; }

.item-stretch {
  align-items: stretch; }

.item-grow {
  flex-grow: 1; }

.f-grid {
  gap: 18px; }
  .f-grid.row-afa {
    grid-template-rows: auto 1fr auto; }
  .f-grid.row-af {
    grid-template-rows: auto 1fr; }
  .f-grid.row-fa {
    grid-template-rows: 1fr auto; }
  .f-grid.col-afa {
    grid-template-columns: auto 1fr auto; }
  .f-grid.col-af {
    grid-template-columns: auto 1fr; }
  .f-grid.col-fa {
    grid-template-columns: 1fr auto; }
  .f-grid.col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .f-grid.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .f-grid.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .f-grid.col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .f-grid.col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .f-grid.col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  @media screen and (max-width: 1200px) {
    .f-grid.md-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.md-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.md-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.md-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  @media screen and (max-width: 768px) {
    .f-grid.sm-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.sm-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.sm-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.sm-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  @media screen and (max-width: 576px) {
    .f-grid.xs-col-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .f-grid.xs-col-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .f-grid.xs-col-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .f-grid.xs-col-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.f-span {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px; }
  @media screen and (max-width: 1200px) {
    .f-span {
      grid-template-columns: 1fr;
      gap: 12px; } }
  .f-span > div {
    grid-column: auto / span 2; }
  .f-span .span-1 {
    grid-column: auto/span 1; }
  .f-span .span-2 {
    grid-column: auto/span 2; }
  .f-span .span-3 {
    grid-column: auto/span 3; }
  .f-span .span-4 {
    grid-column: auto/span 4; }
  .f-span .span-5 {
    grid-column: auto/span 5; }
  .f-span .span-6 {
    grid-column: auto/span 6; }
  .f-span .span-7 {
    grid-column: auto/span 7; }
  .f-span .span-8 {
    grid-column: auto/span 8; }
  .f-span .span-9 {
    grid-column: auto/span 9; }
  .f-span .span-10 {
    grid-column: auto/span 10; }
  .f-span .span-11 {
    grid-column: auto/span 11; }
  .f-span .span-12 {
    grid-column: auto/span 12; }
  @media screen and (max-width: 768px) {
    .f-span > div {
      grid-column: auto/span 12 !important; } }

@media screen and (max-width: 768px) {
  .sm-f-reset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px; }
    .sm-f-reset > div {
      width: 100%; } }
@media screen and (max-width: 576px) {
  .xs-f-reset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px; }
    .xs-f-reset > div {
      width: 100%; } }
.modal {
  display: none;
  transition: all ease 0.5s;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none; }
  .modal.active {
    pointer-events: initial;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center; }
  .modal .modal-inner {
    min-width: 360px;
    padding: 24px; }
  .modal.full .modal-inner {
    min-height: 100%;
    width: 100%; }

.modal.full .modal-close {
  position: absolute;
  right: 24px;
  top: 24px; }

body.modal-active {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden; }
  body.modal-active header,
  body.modal-active main,
  body.modal-active footer {
    filter: blur(5px); }

.owl {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1; }
  .owl .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden; }
    .owl .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl .owl-wrapper,
  .owl .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
    .owl .owl-item img {
      display: block;
      width: 100%; }
  .owl .owl-nav.disabled,
  .owl .owl-dots.disabled {
    display: none; }
  .owl .owl-prev,
  .owl .owl-next,
  .owl .owl .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    width: auto; }
  .owl button.owl-btn {
    width: auto; }
  .owl.owl-loaded {
    display: block; }
  .owl.owl-loading {
    opacity: 0;
    display: block; }
  .owl.owl-hidden {
    opacity: 0; }
  .owl.owl-refresh .owl-item {
    visibility: hidden; }
  .owl.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl.owl-rtl {
    direction: rtl; }
  .owl.owl-rtl .owl-item {
    float: right; }
  .owl .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both; }
  .owl .owl-animated-in {
    z-index: 0; }
  .owl .owl-animated-out {
    z-index: 1; }
  .owl .fadeOut {
    animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.no-js .owl {
  display: block; }

.owl-height {
  transition: height 500ms ease-in-out; }

.owl .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl .owl-item .owl-lazy[src^=""], .owl .owl .owl-item .owl-lazy:not([src]) {
  max-height: 0; }
.owl .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl .owl-video-playing .owl-video-tn,
.owl .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.owl.caption-inside .item {
  display: grid; }
  .owl.caption-inside .item > * {
    grid-area: 1 / 1; }
.owl.caption-inside .caption {
  align-self: end;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px; }
.owl.caption-hover .caption {
  transition: all ease 0.3s;
  opacity: 0;
  transform: translateY(-50%); }
.owl.caption-hover .item:hover > .caption {
  opacity: 1;
  transform: translateY(0); }

.owl-dots {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%; }
  .owl-dots .owl-dot {
    min-height: inherit; }
    .owl-dots .owl-dot span {
      display: block;
      transition: opacity 200ms ease;
      width: 20px;
      height: 20px;
      border-radius: 30px;
      opacity: 1;
      border: 2px solid #565658;
      background-color: transparent; }
    .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
      opacity: 1;
      background-color: #565658; }

.bg-dark .owl-dot span {
  background-color: #fff; }

.owl .owl-nav button {
  min-width: 42px;
  height: 42px;
  padding: 0; }
  .owl .owl-nav button i {
    font-size: 32px; }
.owl.nav-center .owl-nav {
  text-align: center; }
  .owl.nav-center .owl-nav .owl-prev,
  .owl.nav-center .owl-nav .owl-next {
    float: none; }
.owl.nav-over .owl-next,
.owl.nav-over .owl-prev, .owl.nav-inner .owl-next,
.owl.nav-inner .owl-prev, .owl.nav-offset .owl-next,
.owl.nav-offset .owl-prev, .owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev, .owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  position: absolute;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%); }
.owl.nav-over .owl-next, .owl.nav-inner .owl-next, .owl.nav-offset .owl-next, .owl.nav-bottom .owl-next, .owl.nav-top .owl-next {
  right: 0; }
.owl.nav-over .owl-prev, .owl.nav-inner .owl-prev, .owl.nav-offset .owl-prev, .owl.nav-bottom .owl-prev, .owl.nav-top .owl-prev {
  left: 0; }
.owl.nav-over .owl-dots, .owl.nav-inner .owl-dots, .owl.nav-offset .owl-dots, .owl.nav-bottom .owl-dots, .owl.nav-top .owl-dots {
  position: absolute;
  width: 100%;
  left: 0; }
.owl.nav-inner {
  padding-left: 72px;
  padding-right: 72px; }
.owl.nav-offset {
  padding-left: 60px;
  padding-right: 60px;
  margin-left: -60px;
  width: calc(100% + 120px); }
.owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev {
  margin: 0;
  bottom: 0;
  top: auto;
  transform: translateY(0); }
.owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  margin: 0;
  top: 0;
  transform: translateY(0); }
.owl.nav-reveal .owl-next {
  opacity: 0;
  right: -40px;
  transition: all ease .5s; }
.owl.nav-reveal .owl-prev {
  opacity: 0;
  left: -40px;
  transition: all ease .5s; }
.owl.nav-reveal:hover .owl-prev {
  left: 0px;
  opacity: 1; }
.owl.nav-reveal:hover .owl-next {
  right: 0px;
  opacity: 1; }

.owl.nearby .item img {
  height: 50vh;
  width: auto; }
.owl.nearby .owl-stage {
  background-color: #000; }

.owl.img-vh-10 .item img {
  height: 10vh; }
.owl.img-vh-20 .item img {
  height: 20vh; }
.owl.img-vh-30 .item img {
  height: 30vh; }
.owl.img-vh-40 .item img {
  height: 40vh; }
.owl.img-vh-50 .item img {
  height: 50vh; }
.owl.img-vh-60 .item img {
  height: 60vh; }
.owl.img-vh-70 .item img {
  height: 70vh; }
.owl.img-vh-80 .item img {
  height: 80vh; }
.owl.img-vh-90 .item img {
  height: 90vh; }
.owl.img-vh-100 .item img {
  height: 100vh; }

.ck-1 {
  color: #1c1c1f; }

.ck-2 {
  color: #e14f3d; }

.ck-3 {
  color: #555; }

.ck-4 {
  color: #F2F2F2; }

.ck-5 {
  color: #fff3c1; }

.ck-white {
  color: #fff; }

.ck-success {
  color: #4BB867; }

.ck-error {
  color: #D94F4F; }

.ck-warning {
  color: #ECBF58; }

.bg-ck-1 {
  background-color: #1c1c1f; }

.bg-ck-2 {
  background-color: #e14f3d; }

.bg-ck-3 {
  background-color: #555; }

.bg-ck-4 {
  background-color: #F2F2F2; }

.bg-ck-5 {
  background-color: #fff3c1; }

.bg-ck-white {
  background-color: #fff; }

.bg-ck-accent {
  background-color: #e14f3d; }

.bg-success {
  background-color: #4BB867; }

.bg-error {
  background-color: #D94F4F; }

.bg-warning {
  background-color: #ECBF58; }

.filter-bw {
  filter: grayscale(100%);
  transition: all ease .3s; }
  .filter-bw:hover {
    filter: grayscale(0); }

:focus:not(:focus-visible) {
  outline: none; }

.btn,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button; }
  .btn::-moz-focus-inner,
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border: 0;
    padding: 0; }

.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  height: 42px;
  line-height: 42px;
  margin: 0;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  padding: 0 18px; }

.btn a,
button a,
.entry .btn {
  text-decoration: none !important; }
  .btn a:hover,
  button a:hover,
  .entry .btn:hover {
    text-decoration: none; }

.btn-full {
  width: 100%; }

.btn-fit {
  width: fit-content; }

.btn-text .btn,
.btn-text {
  padding: 0;
  height: auto;
  line-height: inherit; }

.btn-primary {
  background-color: #e14f3d;
  border: 1px solid #e14f3d; }

body {
  color: #1c1c1f;
  background-color: #fff; }

a, a:hover {
  color: inherit;
  text-decoration: none; }

mark {
  background-color: transparent; }

b, strong {
  font-weight: 600; }

.hover:hover {
  opacity: 0.7;
  cursor: pointer; }

.underline {
  text-decoration: underline; }

.uppercase {
  text-transform: uppercase; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.margin-center {
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 576px) {
  .xs-text-center {
    text-align: center; } }
.la {
  font-size: 22px;
  font-weight: 900; }

.ic-1, .ic-1 i {
  font-size: 12px; }

.ic-2, .ic-2 i {
  font-size: 22px; }

.ic-3, .ic-3 i {
  font-size: 28px; }

.gap-1 {
  gap: 6px; }

.gap-2 {
  gap: 12px; }

.gap-3 {
  gap: 18px; }

.gap-4 {
  gap: 24px; }

.gap-0 {
  gap: 0; }

.page-loading {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  z-index: 999999;
  background-color: #fff; }
  .page-loading:after {
    content: "";
    width: 42px;
    height: 42px;
    position: absolute;
    background-image: url("../images/loader.svg");
    background-repeat: no-repeat;
    background-position: center center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

html.no-js .page-loading {
  display: none; }

hr, .hr {
  height: 0;
  display: block;
  clear: both;
  border: none;
  margin: 0;
  position: relative; }
  hr.line, .hr.line {
    min-height: 1px; }
    hr.line:after, .hr.line:after {
      content: '';
      left: 0;
      border-bottom: 1px solid #ddd;
      width: 100%;
      position: absolute;
      top: 50%;
      margin-top: -0.5px; }

.hr-1 {
  height: 6px; }

.hr-2 {
  height: 12px; }

.hr-3 {
  height: 18px; }

.hr-4 {
  height: 24px; }

.img-resize,
.img-resize img {
  width: 100%;
  display: block;
  height: auto; }

.vid-resize,
.map-resize {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .vid-resize iframe,
  .vid-resize object,
  .vid-resize embed,
  .vid-resize video,
  .map-resize iframe,
  .map-resize object,
  .map-resize embed,
  .map-resize video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.r-1-1,
.r-1-1 img {
  aspect-ratio: 1 / 1; }

.r-4-3,
.r-4-3 img {
  aspect-ratio: 4 / 3; }

.r-3-4,
.r-3-4 img {
  aspect-ratio: 3 / 4; }

.r-16-9,
.r-16-9 img {
  aspect-ratio: 16 / 9; }

.fit-cover,
.fit-contain {
  position: relative; }
  .fit-cover img,
  .fit-cover video,
  .fit-contain img,
  .fit-contain video {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0; }

.fit-cover img {
  object-fit: cover; }

.fit-contain img {
  object-fit: contain; }

.social-links.icon span {
  display: none; }
.social-links.text i {
  display: none; }

.entry > * {
  margin: 0; }
.entry > * + * {
  margin-top: 18px; }
.entry p + p {
  margin-top: 8px; }
.entry h1, .entry h2 {
  margin-bottom: 24px; }
.entry ul, .entry ol {
  padding-left: 18px; }
.entry ul {
  list-style: disc; }
.entry ol {
  list-style: decimal; }
.entry blockquote {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  border-left: 4px solid #e14f3d;
  margin-left: 0;
  padding-left: 24px; }
  .entry blockquote p {
    font-size: inherit;
    font-weight: inherit; }

h1, .fs-1 {
  font-family: "Playfair", serif;
  font-size: clamp(38px, calc(-18.8888888889px + 0.0740740741 * 100vw), 70px);
  line-height: clamp(46px, calc(3.3333333333px + 0.0555555556 * 100vw), 70px); }

h2, .fs-2 {
  font-family: "Playfair", serif;
  font-size: clamp(26px, calc(-2.4444444444px + 0.037037037 * 100vw), 42px);
  line-height: clamp(34px, calc(5.5555555556px + 0.037037037 * 100vw), 50px); }

h3, .fs-3 {
  font-family: "Playfair", serif;
  font-size: 32px;
  line-height: 40px; }

h4, .fs-4 {
  font-size: 18px;
  line-height: 26px; }

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400; }

p, .p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px; }

.wp-nav a {
  font-size: 16px;
  font-weight: 400; }

small, .small {
  font-size: 14px; }

.x-small {
  font-size: 12px; }

.btn.btn-primary {
  background-color: #e14f3d;
  color: #fff;
  border-radius: 4px;
  font-weight: 400; }
  .btn.btn-primary:hover {
    opacity: 0.7; }

.btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  font-weight: 400; }

.ff-secondary {
  font-family: "Inter", sans-serif; }

.btn i {
  font-weight: 900; }

mark, .mark {
  color: #e14f3d; }

.f-row {
  gap: 18px; }

.container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px; }

body.not-home header.header {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 24px;
  background-color: #fff; }
body.not-home footer.footer {
  margin-top: 24px; }

.btn-cart {
  position: relative; }
  .btn-cart i {
    font-size: 32px; }
  .btn-cart .badge {
    position: absolute;
    right: -18px;
    top: -8px;
    z-index: 1;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e14f3d;
    border-radius: 42px;
    font-size: 12px;
    color: #fff; }
    .btn-cart .badge.empty {
      background-color: #F2F2F2;
      color: #1c1c1f; }

.account-badge {
  border-radius: 42px;
  padding-right: 48px;
  padding-left: 18px;
  height: 42px;
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #ddd;
  transition: all ease 0.3s; }
  .account-badge:hover {
    background-color: rgba(225, 79, 61, 0.1);
    box-shadow: inset 0 0 0 1px #e14f3d; }
  .account-badge .avatar {
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    width: 42px;
    background-color: #e14f3d;
    border-radius: 36px;
    font-size: 14px;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center; }

.page-title {
  margin-bottom: 24px; }

header.header .header-main {
  padding-top: 18px;
  padding-bottom: 18px; }
header.header .site-logo {
  width: 120px; }
header.header .navicon {
  display: none; }
  header.header .navicon i {
    font-size: 32px; }
@media screen and (max-width: 768px) {
  header.header .wp-nav,
  header.header .account-badge {
    display: none; }
  header.header .navicon {
    display: block; }
  header.header .nav-desktop {
    width: fit-content;
    flex-grow: 1;
    align-self: end;
    justify-content: end;
    padding-right: 12px; } }

footer.footer {
  background-color: #1c1c1f;
  color: #fff; }
  footer.footer a {
    color: #fff;
    transition: all ease 0.3s; }
    footer.footer a:hover {
      opacity: 0.7; }
  footer.footer .footer-main {
    padding-top: 42px;
    padding-bottom: 42px; }
    footer.footer .footer-main .f-row {
      gap: 24px; }
  footer.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 42px;
    padding-bottom: 42px; }
  footer.footer .site-logo {
    width: 250px; }
  footer.footer .btn-access {
    align-self: end; }
  @media screen and (max-width: 1200px) {
    footer.footer .f-auto {
      flex-direction: column;
      gap: 42px; }
    footer.footer .f-row.item-right .btn-access {
      align-self: center; } }
  @media screen and (max-width: 768px) {
    footer.footer small {
      display: block;
      text-align: center; }
    footer.footer .wp-nav ul {
      flex-direction: column;
      padding: 24px 0; }
      footer.footer .wp-nav ul li {
        padding: 8px 0; } }

.user-dashboard .main-grid {
  gap: 60px; }
  @media screen and (max-width: 768px) {
    .user-dashboard .main-grid {
      display: block; } }
.user-dashboard .aside {
  width: 260px;
  padding: 12px;
  background-color: rgba(255, 243, 193, 0.4);
  border-radius: 12px; }
  @media screen and (max-width: 768px) {
    .user-dashboard .aside {
      width: 100%;
      margin-bottom: 24px; } }
  @media screen and (max-width: 768px) {
    .user-dashboard .aside nav {
      display: none; }
      .user-dashboard .aside nav.active {
        display: block; } }
  .user-dashboard .aside .nav-toggle {
    display: none; }
    @media screen and (max-width: 768px) {
      .user-dashboard .aside .nav-toggle {
        display: block; } }
    .user-dashboard .aside .nav-toggle li {
      padding: 0 8px;
      position: relative; }
    .user-dashboard .aside .nav-toggle .la-angle-down {
      position: absolute;
      right: 0; }
    .user-dashboard .aside .nav-toggle.active {
      border-bottom: 1px solid #ddd;
      margin-bottom: 12px;
      padding-bottom: 8px; }
      .user-dashboard .aside .nav-toggle.active .la-angle-down {
        transform: rotate(180deg); }
  .user-dashboard .aside .nav-dashboard {
    gap: 4px; }
  .user-dashboard .aside li {
    border-radius: 4px;
    padding: 8px; }
    .user-dashboard .aside li.current {
      background-color: #fff; }
  .user-dashboard .aside a {
    display: flex;
    align-items: center;
    gap: 12px; }
    .user-dashboard .aside a i {
      font-size: 24px; }

.events {
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 60px; }
  .events a {
    color: #fff; }
  .events .item {
    align-items: baseline;
    gap: 60px;
    padding: 12px 0; }
    .events .item span {
      width: 220px;
      font-family: "Playfair", serif;
      font-size: 52px;
      opacity: 0.7; }

/*
@media (min-width: $screen-md + 1) and (max-width: 99999px) {
  .lg-hide {
    display: none;
  }
  .md--hide {
    display: none;
  }
}
@media (min-width: $screen-sm + 1) and (max-width: $screen-md) {
  .md-hide {
    display: none;
     background-color: pink!important;
  }
}
@media (min-width: $screen-sm + 1) and (max-width: 99999px) {
  .sm--hide {
    display: none;
  }
}

@media (min-width:$screen-xs + 1) and (max-width: $screen-sm) {
  .sm-hide {
    display: none;
    background-color: pink!important;
  }
}
@media (max-width: $screen-xs) {
  .xs-hide {
    display: none;
    background-color: pink!important;
  }
}
*/
@media (max-width: 576px) {
  .xs-hide {
    display: none; } }
@media (max-width: 768px) {
  .sm-hide {
    display: none; } }
@media (max-width: 1200px) {
  .md-hide {
    display: none; } }
@media (min-width: 577px) {
  .xs--hide {
    display: none; } }
@media (min-width: 769px) {
  .sm--hide {
    display: none; } }
@media (min-width: 1201px) {
  .md--hide {
    display: none; } }
.editor-styles-wrapper,
.editor-styles-wrapper * {
  font-family: "Inter", sans-serif; }

.editor-styles-wrapper {
  --editor-block-gap: 18px; }
  .editor-styles-wrapper .is-layout-flow > * + * {
    margin-block-start: var(--editor-block-gap); }

.editor-styles-wrapper h1 {
  font-family: "Playfair", serif;
  font-size: clamp(38px, calc(-18.8888888889px + 0.0740740741 * 100vw), 70px);
  line-height: clamp(46px, calc(3.3333333333px + 0.0555555556 * 100vw), 70px); }
.editor-styles-wrapper h2 {
  font-family: "Playfair", serif;
  font-size: clamp(26px, calc(-2.4444444444px + 0.037037037 * 100vw), 42px);
  line-height: clamp(34px, calc(5.5555555556px + 0.037037037 * 100vw), 50px); }
.editor-styles-wrapper h3 {
  font-family: "Playfair", serif;
  font-size: 32px;
  line-height: 40px; }
.editor-styles-wrapper p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px; }
.editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6 {
  font-family: "Inter", sans-serif; }

.wp-block-separator.is-style-smpt-sep {
  border: 0;
  width: 300px !important;
  height: 24px;
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px; }
  .wp-block-separator.is-style-smpt-sep:after {
    content: '▲';
    background-color: #fff;
    z-index: 4;
    width: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0 auto;
    right: 0;
    color: #ddd; }
  .wp-block-separator.is-style-smpt-sep:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 1px;
    z-index: 3;
    top: 50%;
    transform: translateY(-1px);
    background-color: #ddd; }

.wp-block-button.is-style-smpt-button .wp-block-button__link {
  height: 42px;
  line-height: 42px;
  margin: 0;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  padding: 0 18px;
  background-color: #e14f3d;
  color: #fff;
  border-radius: 4px;
  font-weight: 400; }
  .wp-block-button.is-style-smpt-button .wp-block-button__link:hover {
    opacity: 0.7; }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  padding: 0; }

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .button {
  margin: 0; }

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce ul.products li.product .button,
.button {
  height: 42px;
  line-height: 42px;
  margin: 0;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  padding: 0 18px;
  background-color: #e14f3d;
  color: #fff;
  border-radius: 4px;
  font-weight: 400; }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
  .woocommerce ul.products li.product .button:hover,
  .button:hover {
    opacity: 0.7; }

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button {
  height: 42px;
  line-height: 42px;
  margin: 0;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  padding: 0 18px; }

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  border-radius: 4px; }
  .wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    color: #fff;
    opacity: 0.7; }

.wc-block-components-button__text {
  border-radius: 4px !important; }

.wc-block-components-checkout-place-order-button__text {
  font-size: 16px;
  text-shadow: none; }

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after {
  position: relative !important;
  top: auto !important;
  right: auto !important; }

body.woocommerce-shop {
  background-color: #f2f2f2; }

body.woocommerce-shop .main > .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px; }

.products .product {
  background-color: #fff;
  padding: 12px !important; }
.products h2 {
  font-size: 32px !important;
  line-height: 40px !important;
  padding: 12px 0 !important; }
.products span.price {
  margin-bottom: 12px !important; }
@media screen and (max-width: 920px) {
  .products .product {
    width: 100% !important;
    margin: 0 0 42px 0 !important;
    float: none; } }
.products .added_to_cart.wc-forward,
.products a.added_to_cart {
  display: none !important; }

.wp-block-woocommerce-checkout-fields-block fieldset h2 {
  font-family: "Inter", sans-serif !important; }

.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  background-color: rgba(255, 243, 193, 0.2);
  border-color: #fff3c1; }

.woocommerce-order .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  padding-bottom: 24px; }

.noscript {
  display: none; }

html.no-js .noscript {
  display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  display: inline-block; }
  .sr-only-focusable:active.sr-link,
  .sr-only-focusable:focus.sr-link {
    padding: 6px 8px; }

:focus,
:focus-visible {
  outline: 2px solid rgba(225, 79, 61, 0.3); }

.sr-link:focus,
.sr-link:focus-visible {
  outline-offset: 0px; }

:focus:not(:focus-visible) {
  outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important; } }
@media (forced-colors: active) {
  :focus-visible {
    outline: 2px solid CanvasText; } }
.sr-link:focus,
.sr-link:focus-visible {
  outline-offset: 0px;
  background-color: #de3b27;
  color: #fff; }

/*# sourceMappingURL=theme.css.map */
