/** Shopify CDN: Minification failed

Line 2125:13 Expected ")" to end URL token
Line 2140:13 Expected ")" to end URL token
Line 2154:13 Expected ")" to end URL token
Line 2168:13 Expected ")" to end URL token

**/
/* Some css class in defined in critical css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:is(
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    select,
    textarea,
    .input-style
  ):focus {
  outline: 0;
  border-color: var(--color-heading);
}
input[type="checkbox"] {
  display: inline-block;
  margin-block-end: 0.5rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; /* Remove default styling */
  position: relative;
  height: 15px; /* Size of your custom icon */
  width: 15px;
  background: url("icon-close.png") no-repeat center center;
  background-size: 10px;
  cursor: pointer;
  transition: var(--duration-short);
}
.search-modal__form.loading input[type="search"]::-webkit-search-cancel-button {
  opacity: 0;
  visibility: hidden;
}
/* Style the checkmark/indicator */
.checkmark:before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid var(--color-color, #ebebeb);
  background-color: var(--grey-color);
  position: relative;
  top: 2px;
  transition: var(--bls-transition);
}
.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: var(--transition);
}

/* Show the checkmark when checked */
input[type="checkbox"]:checked + .checkmark:after {
  opacity: 1;
}

input[type="checkbox"]:checked + .checkmark:before {
  background-color: var(--color-link);
  border-color: var(--color-link);
}
.pointer-events-none {
  pointer-events: none;
}

.transition-size {
  --timing: 0.5s;
  transition: width var(--timing) linear(0, 0.033 1.1%, 0.139 2.4%, 0.947 9.3%, 1.09 11.6%, 1.151 14%, 1.155 15.2%, 1.145 16.5%, 1.012 23.9%, 0.987 26.3%, 0.977 28.8%, 1.004 43.5%, 1), height var(--timing) linear(0, 0.033 1.1%, 0.139 2.4%, 0.947 9.3%, 1.09 11.6%, 1.151 14%, 1.155 15.2%, 1.145 16.5%, 1.012 23.9%, 0.987 26.3%, 0.977 28.8%, 1.004 43.5%, 1), top var(--timing) linear(0, 0.033 1.1%, 0.139 2.4%, 0.947 9.3%, 1.09 11.6%, 1.151 14%, 1.155 15.2%, 1.145 16.5%, 1.012 23.9%, 0.987 26.3%, 0.977 28.8%, 1.004 43.5%, 1), left var(--timing) linear(0, 0.033 1.1%, 0.139 2.4%, 0.947 9.3%, 1.09 11.6%, 1.151 14%, 1.155 15.2%, 1.145 16.5%, 1.012 23.9%, 0.987 26.3%, 0.977 28.8%, 1.004 43.5%, 1);
}
.w-auto {
  width: auto;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.flex-100 {
  flex: 100%;
  width: 100%;
}
.items-center {
  align-items: center;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.top-min-30 {
  top: -30px;
}
.left-mid {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.pillow-stand {
  top: -15%;
  left: -15%;
}
.pillow-flat {
  top: -15%;
  left: -15%;
}
.group:hover {
  border-radius: 0;
  transition: border-radius 0.1s ease-in-out;
}
.group:hover .pillow-stand {
  width: 110%;
  height: 107.5%;
  top: -3.5%;
  left: -5%;
}
.group:hover .pillow-flat {
  width: 108%;
  height: 112%;
  top: -6%;
  left: -4%;
}
.rotate-0 {
  transition: transform 0.3s ease-in-out;
}
.max-w-fit {
  max-width: fit-content;
}
.group:hover .rotate-0 {
  transform: rotate(10deg);  
}
.hover-border-blue-light {
  transition: outline 0.1s ease-in-out;
}
.group:hover .hover-border-blue-light {
  outline: 4px solid #DEF0F8;
}
.hover-blue-overlay {
  position: relative;
  overflow: hidden;
}
.hover-blue-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: radial-gradient(circle at center, transparent 0%, #1E94D0 100%);
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.group:hover .hover-blue-overlay:after {
  opacity: 0;
}

.grow-0 {
  flex-grow: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-stretch {
  align-items: stretch;
}
.flex-col {
  flex-direction: column;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.p-1 {
  padding: 4px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pb-32 {
  padding-bottom: 32px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-64 {
  padding-bottom: 64px;
}
.pt-16 {
  padding-top: 1rem;
}
.pt-32 {
  padding-top: 32px;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.text-placeholder-blue::placeholder {
  color: #1A3B78;
  opacity: 60%;
}
@media screen and (min-width: 1025px) {
  .min-h-product-title {
    min-height: 213px;
  }
}
#search-template {
  max-width: 0;
  transition: max-width 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.border-none {
  border: none !important;
}
.border-blue-light {
  border-top: 1px solid rgba(255, 255, 255, 0,2);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.container-min {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}
.search-active {
  width: auto;
  max-width: 200px !important;
  padding: var(--input-padding, 1rem 1rem 1rem 4.5rem);
  opacity: 1;
  visibility: visible;
}
.bg-white {
  background-color: white;
}
.bg-blue-light {
  background-color: #DEF0F8;
}
.bg-green {
  background-color: #2EB95C;
}
.bg-orange {
  background-color: #CF4D00;
}
.bg-red {
  background-color: #FF0000;
}
.bg-dark-blue-gray {
  background-color: #1A3B780D;
}
.p-24 {
  padding: 24px;
}
.p-32 {
  padding: 32px;
}
.p-56 {
  padding: 56px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}
.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}
.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.py-60 {
  padding-top: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
  padding-bottom: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
}
.mt-16 {
  margin-top: 16px;
}
.mt-24{
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
@media screen and (max-width: 1025px) {
  .mt-40-1025 {
    margin-top: 40px;
  } 
}
.mt-48{
  margin-top: 48px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-64 {
  margin-bottom: 64px;
}
.gap-2 {
  gap: 8px;
}
.gap-4 {
  gap: 16px;
}
.gap-6 {
  gap: 24px;
}
.gap-8{
  gap: 32px;
}
.gap-16{
  gap: 64px;
}
.w-0 {
  width: 0;
}
.w-15 {
  width: 15px;
}
.w-20 {
  width: 20px;
}
.w-55 {
  width: 5.5rem;
}
.w-100 {
  width: 10rem;
}
.w-130 {
  width: 130%;
}
.w-3rd {
  width: 33.333333%;
} 
.w-full {
  width: 100%;
}
.w-1\/2 {
  width: 50%;
}
.w-4\/5 {
  width: 80%;
}
.min-w-10 {
  min-width: 10px;
}
.min-w-20 {
  min-width: 20px;
}
.min-w-30 {
  min-width: 30px;
}
.min-w-600 {
  min-width: 600px;
}
.min-w-800 {
  min-width: 800px;
}
.min-w-full {
  min-width: 100%;
}
.min-w-fit {
  min-width: fit-content;
}
.max-w-15 {
  max-width: 15px;
}
.max-w-30 {
  max-width: 30px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-1\/4 {
  max-width: 25%;
}
.max-w-1\/2 {
  max-width: 50%;
}
.max-w-full {
  max-width: 100%;
}
.h-0 {
  height: 0;
}
.h-15 {
  height: 15px;
}
.h-20 {
  height: 2rem;
}
.h-30 {
  height: 30px;
}
.h-55 {
  height: 5.5rem;
}
.h-130 {
  height: 130%;
}
.h-140 {
  height: 140px;
}
.h-full {
  height: 100%;
}
.h-auto {
  height: auto;
}
.min-h-30 {
  min-height: 30px;
}
.min-h-50 {
  min-height: 50px;
}
.min-h-full {
  min-height: 100%;
}
.max-h-240 {
  max-height: 240px;
}
.max-h-full {
  max-height: 100%;
}
.max-h-fit {
  max-height: fit-content;
}
.size-3 {
  width: 12px;
  height: 12px;
}
.mt-6 {
  margin-top: 24px;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.text-dark {
  color: #0F172A;
}
@media screen and (max-width: 1600px) {
  .overflow-hidden-1600 {
    overflow: hidden;
  }
}
.overflow-hidden {
  overflow: hidden;
}
.user-select-none,
.swiper-slide {
  user-select: none;
  -webkit-user-select: none;
}
.toolbar-sorter{
  text-wrap: nowrap;
}
.banner__media.collection-media {
  position: relative;
}
.banner__media.collection-media:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media screen and (max-width: 1025px) {
  .mobile-btn {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 12px 22px !important;
  }
  
}
.mega-menu-collection-title{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.cursor-pointer {
  cursor: pointer;
}
.padding-slider {
  padding: 70px 64px
}
.text-white {
  color: white;
}

/* Apply form */ 
section[data-testid="form-container"]{
  margin: 0 auto;
}



/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0003;
}

.modal-content {
  background-color: var(--color-background);
  height: 90vh;
  width: 100%;
  max-height: 600px;
  max-width: 850px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
}

.close-modal:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .modal-content {
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
  }
  .close-modal {
    color: white;
  }

  .desktop-text {
    display: none;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .max-md-flex-col {
    flex-direction: column;
  }
  
}


.booking-left {
  background-color: #1A3B78;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.border-blue-2 {
  border: 2px solid #DEF0F8;
}
.booking-right {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .booking-right {
    max-height: 100vh;
    background-color: #1A3B78;
  }
  .modal-item {
    background-color: white;
    color: #0F172A;
    border: none;
  }
  .modal-item-details h3 {
    font-size: 18px !important;
  }
  .variant-item {
    background-color: white;
  }
  .variant-item h3  {
    color: #0F172A;
  }
}

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

.modal-item-details {
  flex: 1;
}
.variants-container {
  margin-top: 16px;
  gap: 16px;
}
.variant-item {
  display: flex;
  gap: 20px;
  cursor: pointer;
  height: 92px;
}
/* Einde modal */
@media screen and (min-width: 1025px) {
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 768px) {
  .sm-max-w-1\/4 {
    max-width: 25%;
  }
  .sm-w-1\/2 {
    width: 50%;
  }
  .sm-min-w-800 {
    min-width: 800px;
  }
  .sm-w-1\/2 {
    width: 50%;
  }
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm-px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sm-flex {
    display: flex;
  }
  .sm-hidden {
    display: none;
  }
}
@media (max-width: 767px) {
  .max-sm-flex-col {
    flex-direction: column;
  }
  .max-sm-flex-col-reverse {
    flex-direction: column-reverse;
  }
  .max-sm-w-600 {
    width: 600px;
  }
  .max-sm-w-full {
    width: 100%;
  }
  .max-sm-mb-40- {
    margin-bottom: -40px;
  }
  
  .max-sm-rounded-b {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .max-sm-rounded-t {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .padding-slider {
    padding: 64px 32px 32px !important;
  }
  .background-blue-lighter{
    background-color: #1A3B78;
  }
  .max-sm-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .max-sm-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .max-sm-px-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .max-sm-text-center {
    text-align: center;
  }
  .max-sm-text-dark {
    color: #0F172A;
    strong {
      color: #0F172A;
    }
  }
  .max-sm-row-gap-0 {
    row-gap: 0;
  }
  .max-sm-justify-center {
    justify-content: center;
  }
  .max-sm-mb-32 {
    margin-bottom: 32px;
  }
  .max-sm-mb-64 {
    margin-bottom: 64px;
  }
  .menu-col-mobile {
    --col-number: 2 !important;
  }
  .max-sm-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .max-sm-text-small {
    font-size: 18px !important;
  }
  .max-sm-justify-center {
    justify-content: center;
  }
  .max-sm-flex-wrap {
    flex-wrap: wrap;
  }
}
.sec__content ul {
  padding-left: 1.25rem;
}

.btn-filter-padding{
  padding: 4px 17px;
}
.btn-filter{
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 400;
  color: white;
  background-color: #1A3B78;
}

.btn-filter path {
  transition: color 0.3s ease;
  fill: white;
}

.btn-filter:hover {
  background-color: #DEF0F8;
  color: #0F172A;
  cursor: pointer;
}

.btn-filter:hover path {
  fill: #0F172A;
}

.rotate-5 {
  transform: rotate(5deg);
}
.rotate-neg-5 {
  transform: rotate(-5deg);
}

/* Google reviews */ 
.grp-entangle--root {
  max-width: calc(var(--fluid-container-width) + var(--bs-gutter-x) * 2) !important;
  margin-inline: auto;
  border-radius: 16px;
  padding: 64px 70px !important;
  margin-bottom: 90px !important;
  background-color: #DEF0F8;
  background-image: url("data:image/svg+xml,%3Csvg width='1376' height='523' viewBox='0 0 1376 523' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.15' d='M1461 314.962C538.022 489.527 45.759 223.056 -85 68V620H1461V314.962Z' fill='%231A3B78' stroke='%231A3B78' stroke-width='49'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .grp-entangle--root {
    padding: 32px 16px !important;
  }
  .grp_custom_heading {
    margin-bottom: 0 !important;
  }
  .grp-entangle-badge-stars {
    position: absolute !important;
    top: 70px !important;
    right: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.grp-entangle-rating-container {
  background-color: transparent !important;
}
.grp-entangle-badge-stars {
  position: absolute !important;
  top: 70px !important;
  right: 15% !important;
}
.grp-entangle-badge-stars::before {
  content: '4,5' !important;
  margin-top: 3px !important;
  margin-right: 10px !important;
}
.grp-entangle-heading--small {
  display: none !important;
}
.grp-main-hyper-link {
  display: none !important;
}
.grp-entangle-badge-thumbnail {
  display: none !important;
}
.grp-entangle-swiper-wrap {
  padding: 0 !important;
}
.grp-entangle-swiper-container {
  height: 100% !important;
}
.grp-entangle-swiper-container .swiper-wrapper .swiper-slide {
  min-width: 33.333333% !important;
}
.grp-entangle-swiper-button-prev {
  display: none !important;
}
.grp-entangle-swiper-button-next {
  display: none !important;
}
.grp-entangle-swiper-container .swiper-pagination.swiper-pagination-bullets {
  display: none !important;
}
.grp-entangle-write-div {
  justify-content: center !important;
  margin-top: 4px !important;
}
.grp-entangle-write {
  margin: 0 !important;
}
.grp-entangle-item {
  min-height: 363px !important;
  padding: 32px !important;
  justify-content: space-between !important;
  margin: 0 16px !important;
}
.grp-entangle-item-head {
  order: 3 !important;
}
.grp-entangle-item-body {
  margin-top: 60px !important;
}
.grp-entangle-item-body-review {
  font-size: 16px !important;
  font-weight: 500 !important;
}
.grp-entangle-item-body-stars {
  position: absolute;
  top: 32px;
  left: 48px;
}
.grp-entangle-item-head-logo-wrapper {
  position: absolute;
  top: 32px;
  right: 48px;
}

.grp-entangle-all-review {
  svg {
    display: none !important;
  }
  padding: 12.5px 24px;
  background-color: #e75e0d;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  border-radius: 9999px;
}
.grp-entangle-all-review:hover {
  background-color: #1E94D0;
  color:#0F172A !important;
} 



/* Hover */
@media (min-width: 1025px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is(
      .btn-outline,
      .btn-primary,
      .btn-hover,
      .btn-white,
      button.shopify-payment-button__more-options,
      .dmp_discount-form button
    ):hover {
    --btn-bg: var(--btn-primary-hover-bg-color);
    --btn-color: white;
    --btn-border-color: var(--btn-primary-hover-bg-color);
  }
  .logo-position:not(.show-search-form) {
    grid-template-columns: auto 1fr;
  }
  :where(.btn-primary, .btn-outline, .btn, .btn-white) {
    padding: 12.5px 24px;
  }
  .btn-hover:hover {
    color: var(--btn-color);
    background-color: var(--btn-bg);
    border-color: var(--btn-border-color);
  }
  .btn-link {
    font-weight: 600;
  }
  .btn-link:hover {
    color: var(--btn-link-hover-color);
  }
  .btn-link::before {
    height: 1px;
    transition: none;
  }
  .btn-link:hover::before {
    width: calc(100% - 3px);
    transition: var(--transition);
    background-color: var(--btn-primary-bg-color);
    animation: 1s infinite btnLinkAnimation;
    height: 1px;
  }
  .btn-link.load-more {
    color: #1A3B78;
  }
  .smooth-padding-hover:hover {
    padding-inline-start: 1rem;
  }
  .hover-effect {
    will-change: transform;
  }
  .hover-effect :is(img, .placeholder-image, picture) {
    transition: var(--transition);
    will-change: transform;
  }
  .hover_zoom .hover-effect:hover :is(img, .placeholder-image, picture) {
    transform: var(--zoom-transform, scale(1.05));
  }
  .hover_fade .hover-effect:hover :is(img, .placeholder-image, picture) {
    opacity: 0.8;
  }
  .hover_fade .hover-effect:hover .secondary-image {
    opacity: 1;
  }
  .tooltip-content {
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1;
    max-width: 360px;
    z-index: 2;
    text-align: center;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.3s;
    will-change: transform;
    padding: 7px 15px;
    transform: var(--tooltip-transform, translateY(-100%) translateX(-50%));
    left: var(--left, 50%);
    right: var(--right, auto);
    top: var(--top, 0);
  }
  .tooltip-content:before {
    border: 5px solid transparent;
    content: "";
    height: 0;
    width: 0;
    top: var(--tooltip-y, 100%);
    bottom: var(--tooltip-bottom, auto);
    margin-left: 0;
    -webkit-transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform-origin: 0;
    border-top-color: var(--color-dark);
    position: absolute;
    left: var(--tooltip-left, 50%);
    right: var(--tooltip-right, auto);
  }
  .tooltip:not(.open):hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: var(
      --tooltip-hover-transform,
      translateY(calc(-100% - 10px)) translateX(-50%)
    );
  }
  .tooltip-left {
    --tooltip-transform: translateY(-50%);
    --left: auto;
    --right: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(-10px) translateY(-50%);
    --tooltip-left: 100%;
    --tooltip-y: 50%;
    --tooltip-before: rotate(-90deg) translateY(50%);
  }
  .tooltip-right {
    --tooltip-transform: translateY(-50%);
    --left: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(10px) translateY(-50%);
    --tooltip-left: auto;
    --tooltip-right: 100%;
    --tooltip-y: 12%;
    --tooltip-before: rotate(90deg) translateY(-50%);
  }
  .tooltip-bottom {
    --tooltip-transform: translateY(100%) translateX(-50%);
    --top: auto;
    bottom: 0;
    --tooltip-hover-transform: translateY(calc(100% + 10px)) translateX(-50%);
    --tooltip-y: auto;
    --tooltip-bottom: 100%;
  }
  .tooltip-bottom::before {
    border-bottom-color: var(--color-dark);
    border-top-color: transparent;
  }
  .instagram-item__media--ratio .instagram-icon {
    transform: scale(0.8);
    will-change: transform;
  }
  .instagram-item__media--ratio:hover .instagram-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  @keyframes btnLinkAnimation {
    0% {
      left: 0;
      width: 100%;
    }

    33% {
      left: 100%;
      width: 0;
    }

    66% {
      left: 0;
      width: 0;
    }

    100% {
      right: 0;
      width: 100%;
    }
  }
  @keyframes progress {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -60px -60px;
    }
  }
  .hover-svg-zoom:hover svg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}
.button-close:not(:hover) {
  opacity: 0.7;
  color: var(--color-heading);
}
.btn-search-close{
  display: inline-flex;
  align-items: center;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar {
  width: 4px;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-track {
  background: var(--border-color-base);
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb:hover {
  background: #555;
  width: 6px;
}
.translateY-100 {
  transform: translateY(-100%);
}
.transition-short {
  transition: var(--duration-short);
  -webkit-transition: var(--duration-short);
}
.transition {
  transition: var(--transition);
  -webkit-transition: var(--transition);
}
.transition-popup {
  transition: var(--transition-popup);
  -webkit-transition: var(--transition-popup);
}
/* Rounded */
.rounded-custom {
  border-radius: var(--rounded-custom);
}
.bottom-25 {
  bottom: 2.5rem;
}
.top-20 {
  top: 2rem;
}
.top-30 {
  top: 3rem;
}
.top-100 {
  top: 100%;
}
.top-128 {
  top: 12.8rem;
}
.right-45 {
  right: 4.5rem;
}
.right-50 {
  right: 5rem;
}
.icon-load {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: calc(var(--loader-width, 1.4rem) / 2 * -1);
  margin-left: calc(var(--loader-height, 1.4rem) / 2 * -1);
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading {
  pointer-events: none;
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  .hidden-on-load {
  opacity: 0;
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  > .icon-load {
  opacity: 1;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: 0.8s linear infinite spin;
  animation: 0.8s linear infinite spin;
}
/* Global style */
.w-custom-svg svg {
  height: auto;
  width: var(--custom-width);
}
.bls__spacing {
  height: var(--mobile-height);
}
@media (min-width: 768px) {
  .bls__spacing {
    height: var(--desktop-height);
  }
}
:is(.open-drawer, .nav-open) {
  overflow: hidden;
}
.overlay::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--overlay-bg);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
  z-index: 12;
  cursor: url(cursor-close.png), pointer;
}
/* :is(.open-drawer, .nav-open, .open-sidebar) .open.overlay::after {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
} */
.open-drawer .tingle-enabled {
  position: static;
  overflow: auto;
}
#search_mini_form.loading .loading-icon {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1025px) {
  .header-bold h1, h2, h3, h4, h5, h6 {
    font-size: 25px !important;
    line-height: 36px !important;
  }
  .header-bold {
    font-size: calc(var(--font-size) * 0.7px) !important;
    line-height: calc(var(--font-size) * 0.7px) !important;
  }
  .mb-custom {
    margin-bottom: 16px !important;
  }
}
@media (min-width: 1025px) {
  .footer__localization.lang__currency-desktop .disclosure__list {
    top: auto;
    left: 0;
    right: auto;
    bottom: calc(100% + 30px);
  }
  .footer__localization.lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    bottom: calc(100% + 10px);
    top: auto;
  }
  .lang__currency-desktop .disclosure__button::after,
  .minicart__action.show-overlay:after,
  .lang__currency-desktop .disclosure__list icon-close {
    display: none;
  }
  .lang__currency-desktop .disclosure__list {
    top: calc(100% + 30px);
    max-height: 60vh;
    padding: 2rem 2.5rem;
    left: auto;
    min-width: 25rem;
    overflow: auto;
  }
  .lang__currency-desktop .button-localization.open + .disclosure__list {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .topbar
    .lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    top: calc(100% + calc(var(--section-pb) * 1px));
  }
  .rounded-style :is(.topbar, .section-header) .disclosure__list {
    border-radius: 0 0 5px 5px;
  }
  .rounded-style
    .footer__localization.lang__currency-desktop
    .disclosure__list {
    border-radius: 5px;
  }
  body:has(.shopify-section-header-sticky) .sticky.top-30 {
    top: calc(var(--height-header, 0px) + 30px);
    transition: var(--transition);
  }
  body:has(.layout-2.shopify-section-header-sticky) .sticky.top-30 {
    top: 80px;
  }
  body:has(.shopify-section-header-hidden) .sticky.top-30 {
    top: 30px;
  }
}
.header__menu::before {
  content: "";
  display: none;
}
.header-icon:hover {
  color: var(--color-primary);
}
.header-bold {
  font-size: calc(var(--font-size)* 1px);
  line-height: calc(var(--font-size) * 1px);
}
.header-bold ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-bold li {
  display: flex;
}

.header-bold li::before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 11px;
  margin-right: 8px;
  margin-top: 8px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7002 1.5L5.45019 9.75L1.7002 6' stroke='%23CF4D00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.font-bold {
  font-weight: 700;
}
.font-fontin {
  font-family: var(--heading-font);
}
.header-bold strong {
  font-family: var(--heading-font);
  font-weight: 700;
  display: inline-block;
}
.blog-header strong {
  color: #1A3B78;
}
.rounded-half {
  border-radius: var(--btn-radius);
}
.rounded-full {
  border-radius: 9999px;
}
/* Sticky header */
header {
  box-shadow: var(--shadow);
}
.shopify-section-header-sticky {
  position: sticky;
  z-index: 11;
  top: 0;
}
.shopify-section-header-sticky header.header {
  box-shadow: var(--shadow);
}
.shopify-section-header-sticky .header__normal-logo {
  display: block;
}
.shopify-section-header-sticky .header__transparent-logo {
  display: none;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--height-header));
}
.section-header.animate {
  transition: top 0.35s ease-in-out;
}
.header-sticky .gradient {
  background-attachment: unset;
}
.shopify-section-header-sticky.gradient {
  background-attachment: unset;
}
@media screen and (max-width: 1024.98px) {
  [data-sticky-mobile="false"].shopify-section-header-sticky {
    position: unset;
  }
  header-search #search-form .search__button {
    color: var(--color-heading);
  }
  :where(.lang__currency-on-nav, .lang__currency-desktop, .popup_cart)
    icon-close {
    transform: translateY(calc(-100% - 15px));
  }
}
.fadeIn {
  animation: 0.3s fadeIn;
}
.fadeInForwards { 
  animation: 0.3s fadeIn forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.shopify-section-header-sticky.animate:not(.scroll-up) {
  animation-name: fadeInSticky;
  animation-duration: 0.5s;
  animation-fill-mode: inherit;
  animation-fill-mode: forwards;
}
@keyframes fadeInSticky {
  0% {
    opacity: 0;
    top: calc(var(--height-header, 100%) * -1);
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.fadeOut {
  animation: 0.3s fadeOut forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#header_size_guide {
  display: none;
}
.white-gradient:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.gradient-overlay-bottom {
  background: linear-gradient(0deg, #1A3B78 0%, #1A3B7800 100%);
}

/* Fake order */
@keyframes progressbar {
  0% {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fake-order-progressbar {
  border-radius: 0 0 var(--rounded) var(--rounded);
}
.fake-order-progressbar span {
  height: 2px;
  display: block;
  width: 100%;
}
.success,
.warning {
  padding: 1.2rem 2rem;
  position: relative;
}
.success,
.message-success {
  --color-success: #137f24;
  --border-color-success: #b4deb0;
  --background-success: #dcf0d8;
  --color-link: var(--color-success);
  margin-bottom: 2rem;
  color: var(--color-success);
  background-color: var(--background-success);
  border: 1px solid var(--border-color-success);
  border-radius: 5px;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}

.errors,
.error,
.message-error,
.dmp_error-message {
  --color-error: #d0473e;
  --border-color-error: #eabdbd;
  --background-error: #fadfdf;
  --color-link: var(--color-error);
  padding: 11px 2rem;
  background: var(--background-error);
  border: 1px solid var(--border-color-error);
  color: var(--color-error);
  text-align: left;
  border-radius: 5px;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}
.dmp_error-message {
  display: block;
  margin-top: 1rem;
}
.text-overflow-ellipsis {
  text-overflow: ellipsis;
}
/* Message */
.message-info,
.warning {
  color: #907341;
  --color-link: #907341;
  --btn-link-color: #907341;
  border: 1px solid #e9d7b8;
  background: #faf0df;
  padding: 1.5rem 2rem;
  font-weight: var(--subheading_weight, 500);
  border-radius: 5px;
  line-height: 1.5;
  font-size: var(--body-font-size);
}
:is(.message-info, .message-success, .message-error) a {
  color: currentColor;
}
:is(
    .message-info,
    .success,
    .message-success,
    .message-error,
    .warning,
    .errors,
    .error
  )
  svg {
  width: 1.8rem;
  flex: 0 0 1.8rem;
}
@keyframes al-loading {
  0% {
    width: 0;
  }

  to {
    width: 80%;
  }
}
@keyframes al-loading-finish {
  0% {
    width: 80%;
  }

  to {
    width: 100%;
  }
}
.select-custom__content {
  top: calc(100% + 15px);
  max-height: 60vh;
  min-width: 22rem;
  overflow: hidden;
  overflow-y: scroll;
}
.select-custom.active .select-custom__content {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.select-collection-tab.active .select-custom__content {
  top: calc(100% + 2px);
}
:is(.horizontal-filter collapsible-block, .select-custom).active
  .active-rotated {
  transform: rotate(-180deg);
}
.pagination__item--current {
  color: var(--btn-primary-color);
  background-color: #1A3B78;
  border-color: #1A3B78;
}
.loading .loading-overlay {
  opacity: 0.7;
  visibility: visible;
}
body.loading::after {
  background: var(--color-primary);
  content: "";
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 11;
  animation: al-loading 1s cubic-bezier(0.43, 0.27, 0.36, 0.83) forwards;
  transition: width 1s linear, opacity 0.35s linear 0.35s;
}
body.loading.finish::after {
  width: 100%;
  animation: al-loading-finish 0.3s cubic-bezier(0.43, 0.27, 0.36, 0.83)
    forwards;
}
/* Start customer style */
.customer-forgot#recover {
  display: none;
}

.customer-forgot#recover:target {
  display: block;
}

.customer-forgot#recover:target + .customer-login {
  display: none;
}

.form-group textarea,
.form-group input {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.subtext {
  margin-bottom: 1rem;
}

.subtext.mb-20 {
  margin-bottom: 2rem;
}

.bls__tab-header > div,
.bls-login-popup {
  display: none;
}

.bls__tab-header > div[aria-hidden="false"],
.bls-login-popup[aria-hidden="false"] {
  display: block;
}

label.form-label {
  color: var(--color-link);
}

.title-customer {
  --font-h3: 2.4rem;
  font-size: clamp(2rem, 3vw, var(--font-h3));
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.forget-password,
.link-forgot {
  color: rgb(var(--base-color));
}

@media (min-width: 1024px) {
  [class*="customer-"] .row {
    --bs-gutter-x: 8rem;
  }
}
.open-drawer .bls__drawer.open {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
.show-overlay::after {
  content: "";
  background: var(--show-overlay-bg, rgba(255, 255, 255, 0.9));
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  visibility: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}
.open {
  display: flex;
}
.open.show-overlay::after {
  opacity: 1;
  visibility: visible;
}
.toast {
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 999999;
  top: 3rem;
  right: 3rem;
  font-size: 17px;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}
.show-tooltip {
  overflow: visible;
}
.show-tooltip:not(.reveal_on_scroll) .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
  pointer-events: none;
}
body .swiper-button-next.swiper-button-disabled,
body .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

.error-message a{
   color: red;
   text-decoration: none;
}
/* idea product */
.btn-idea:hover{
  transition: var(--transition);
  -webkit-transition: var(--transition);
}
.idea-product-list{
  --color-text: #444444;
  --color-heading: #111111;
  min-width: 390px;
  max-width: 100%;
  bottom: 3rem;
  left: 3rem;
  border-radius: var(--rounded-radius);
  top: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  transform: translateY(3rem);
}

.idea-product.active .idea-product-list{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.idea-product-list .close svg {
  color: var(--color-text);
}
@media (min-width: 1200px) {
  .products-idea-limit .idea-product-list{
    min-width: unset;
    right: 3rem;
  }
}
@media (max-width: 1199.98px) {
  .idea-product-list{
    right: 2rem;
    left: 2rem;
    bottom: 2rem;
    min-width: auto;
  }
}
@media (min-width: 768px) {
  .btn-idea{
    --btn-padding-x: 3rem;
  }
}
.idea-product .idea-product-list_header{
  padding: 0 2rem 1.7rem;
  margin-left: -2rem;
  margin-right: -2rem;
  line-height: 1;
}
.idea-product .close{
  transform: translateY(3px);
}
.idea-product .custom-scrollbar{
  max-height: 330px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-inline-end: 0.2rem;
}
.idea-product  .idea-product-list .custom-scrollbar > div:not(:last-child){
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.idea-product .product-item__inner{
  max-width: 60px;
}
.idea-product .product-item__inner > a{
  border-radius: 5px;
}
@media (max-width: 1024.98px) {
  .idea-product-list{
    padding: 1.5rem;
  }
  .idea-product .idea-product-list_header{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .idea-product .custom-scrollbar{
    max-height: 200px;
  }
  .outfit-timer countdown-timer{
    gap: 5px;
  }
  .outfit-timer .count-timer{
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .outfit_idea  .flex-cols > *{
    width: 100%;
  }  
  .idea-product .view_idea_product{
    right: 0;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.view_idea_product{
   transition: opacity 0.5s ease-in;
   width: max-content;
}
/* testimonial products style */

.testimonials_design-morden .testimonial_wraper{
  border: 0;
}
.testimonials_design-morden slide-section{
  width: 1000px;
  max-width: 100%;
  margin: auto;
}
.testimonials_design-morden  .testimonial_info{
  width: 650px;
  max-width: 100%;
  margin: auto;
}
.testimonials_design-morden  .testimonial_info .testimonials-quote{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.41;
  color: var(--color-heading);
}
.testimonials_design-morden  .testimonial_info  > div{
    padding:  0 1rem;
}
@media (min-width: 1024px) {
  .testimonials_design-morden  .testimonial_info .testimonials-quote{
    font-size: 2.4rem;
  }

}
/* testimonial style */
.testimonials_morden slide-section {
  width: 1030px;
  max-width: 100%;
  margin: auto;
}
.testimonials_morden .testimonials-quote{
  font-family: var(--heading-font);
  color: var(--color-heading);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.testimonials_morden .rate-info{
  display: flex;
  flex-direction: column-reverse; 
}
.testimonials_morden .testimonial_wraper{
  gap: 0;
}
.testimonials_morden .testimonials-rating{
  margin: 0 0 5px;
}
.testimonials_morden .testimonials-group{
  margin: 0;
}
.testimonials_morden .author-infor{
  gap: 5px;
}
.testimonials_morden .icon-quote{
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .testimonials_morden .testimonials-quote{
    font-size: 2rem;
  }
}

/* products-grid banner */
.product-grid__banner-content{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}
.banner-content-inner{
  pointer-events: auto;
}
@media (min-width: 768px) {
  .product-grid__banner-content [class*="btn-"] {
    --btn-padding-x: 4.6rem;
  }
}
@media (min-width: 1200px) {
  .product-grid__banner-content .sec__content-heading{
    font-size: 4rem;
  }
}

/* comparison-slider */
.sec__image-comparison-slider .img-container  .align-self-start{
  align-self: unset;
  display: flex;
  flex-direction: column;
}
.sec__image-comparison-slider .img-container  .align-self-start .testimonial-product_comparison{
  margin-top: auto;
}
.sec__image-comparison-slider .testimonial-product_comparison .product-item__wrapper{
  background-color: var(--grey-color);
  border-radius: var(--rounded-radius);
  overflow: hidden;
}
.sec__image-comparison-slider .testimonial-product_comparison .product__media{
  border-radius: 0;
  aspect-ratio: 3/4 !important;
}
@media (min-width: 992px) {
  .sec__image-comparison-slider .col-md-w-custom {
      flex: 0 0 auto;
      width: var(--col-width, 50%);
  }
}
@media (max-width: 991.98px) {
  .sec__image-comparison-slider .col-md-w-custom {
      flex: 0 0 auto;
      width: 100%;
  }
}
@media (min-width: 768px) {
  .min-sm-hidden {
    display: none;
  }
  .sm-py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 768px) {
  .max-sm-hidden {
    display: none;
  }
  .py-custom {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .max-sm-relative {
    position: relative;
  }
  .col-w-custom {
    width: var(--col-width, 50%);
  }
}

@font-face {
  font-family: 'Fontin-Regular';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url({{'Fontin-Regular' | asset_url }}) format('woff2');
}

@font-face {
  font-family: 'Fontin-Regular';
  font-style: normal;
  font-weight: normal;
  font-display: fallback;
  src: url('https://cdn.shopify.com/s/files/1/0914/5892/8939/files/Fontin-Regular.woff2?v=1737447153') format('woff2');
}

@font-face {
  font-family: 'Fontin-Italic';
  font-style: normal;
  font-weight: normal;
  src: url({{'Fontin-Italic' | asset_url }}) format('woff2');
}

@font-face {
  font-family: 'Fontin-Italic';
  font-style: normal;
  font-weight: normal;
  src: url('https://cdn.shopify.com/s/files/1/0914/5892/8939/files/Fontin-Italic.woff2?v=1737447156') format('woff2');
}

@font-face {
  font-family: 'Fontin-Bold';
  font-style: normal;
  font-weight: normal;
  src: url({{'Fontin-Bold' | asset_url }}) format('woff2');
}

@font-face {
  font-family: 'Fontin-Bold';
  font-style: normal;
  font-weight: normal;
  src: url('https://cdn.shopify.com/s/files/1/0914/5892/8939/files/Fontin-Bold.woff2?v=1737447159') format('woff2');
}

@font-face {
  font-family: 'Fontin-SmallCaps';
  font-style: normal;
  font-weight: normal;
  src: url({{'Fontin-SmallCaps' | asset_url }}) format('woff2');
}

@font-face {
  font-family: 'Fontin-SmallCaps';
  font-style: normal;
  font-weight: normal;
  src: url('https://cdn.shopify.com/s/files/1/0914/5892/8939/files/Fontin-SmallCaps.woff2?v=1737447151') format('woff2');
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
}

.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.close-video-modal {
  position: absolute;
  right: -40px;
  top: 0;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }
  
  .close-video-modal {
    right: 0;
    top: -40px;
  }
}

.store-location:hover .store-location-heading {
  text-decoration: underline !important;
}
