/** Shopify CDN: Minification failed

Line 160:19 Expected identifier but found whitespace
Line 160:21 Unexpected "{"
Line 160:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0;
  margin: 0;
}
.custom-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  padding: 2.5rem;
}
.custom-left h2 {
  font-weight: bold;
  margin: 0;
}
.custom-left a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
  background: transparent;
  transition: color 0.3s ease;
  text-decoration: none;
  z-index: 1;
}
.custom-left a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.custom-left a:hover::before {
  transform: translateX(0);
}
.custom-left a:hover {
  color: #fff;
}

.custom-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.custom-collection-card {
  border-top: 1px solid #000;
  padding: 2.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.custom-collection-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.custom-collection-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.custom-collection-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-collection-title {
  font-weight: bold;
  margin-top: 1rem;
}
.custom-collection-title a {
  text-decoration: none;
}
.custom-collection-title a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .custom-grid {
    grid-template-columns: 1fr;
    padding: 0 !important;
    margin: 0 !important;
  }
  .custom-left {
    padding: 1.5rem;
    border-left: none;
    border-right: none;
  }
  .custom-left a {
    margin-top: 40px;
  }
  .custom-collections {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 1.5rem 0;
  }
  .custom-collection-card {
    width: 85vw;
    scroll-snap-align: start;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    padding: 2.5rem;
    transition-delay: 0.3s;
  }
  .custom-collections .custom-collection-card:last-child {
    border-right: none;
  }
}

@media screen and (min-width: 769px) {
  .custom-collection-card:nth-child(1) { transition-delay: 0.1s; }
  .custom-collection-card:nth-child(2) { transition-delay: 0.3s; }
  .custom-collection-card:nth-child(3) { transition-delay: 0.5s; }
  .custom-collection-card:nth-child(4) { transition-delay: 0.7s; }
  .custom-collection-card:nth-child(5) { transition-delay: 0.9s; }
  .custom-collection-card:nth-child(6) { transition-delay: 1.1s; }
}
.footer-custom-wrapper-outer {
  width: 100%;
  border-top: 1px solid #000;
}

.footer-custom-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
  background-color: {{ section.settings.background_color }};
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4rem;
  border-right: 1px solid #000;
}

.footer-left .footer-text {
  line-height: 1.6;
}

.footer-left .footer-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4rem;
}

.footer-menus {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 1rem;
}

.list-unstyled.list-social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-unstyled.list-social li {
  display: inline-flex;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .footer-custom-wrapper {
    display: block;
    height: auto;
    padding: 0;
  }

  .footer-left,
  .footer-right {
    padding: 2.4rem 1.5rem;
    border-right: none;
  }

  .footer-left .footer-image {
    margin-top: 1.5rem;
    max-width: 100px;
    height: 100px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
  }

  .list-unstyled.list-social {
    justify-content: flex-start;
  }

  .footer-right {
    border-top: 1px solid #000;
  }
}
.responsive-banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.responsive-banner-wrapper picture,
.responsive-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
  font-family: var(--font-body-family, inherit);
  text-align: center;
}

.content-layer.left-top    { justify-content: flex-start; align-items: flex-start; text-align: left; }
.content-layer.center-top  { justify-content: flex-start; align-items: center;     text-align: center; }
.content-layer.right-top   { justify-content: flex-start; align-items: flex-end;   text-align: right; }
.content-layer.left-center { justify-content: center;      align-items: flex-start; text-align: left; }
.content-layer.center-center { justify-content: center;    align-items: center;     text-align: center; }
.content-layer.right-center { justify-content: center;     align-items: flex-end;   text-align: right; }
.content-layer.left-bottom  { justify-content: flex-end;   align-items: flex-start; text-align: left; }
.content-layer.center-bottom{ justify-content: flex-end;   align-items: center;     text-align: center; }
.content-layer.right-bottom { justify-content: flex-end;   align-items: flex-end;   text-align: right; }

.banner-subtitle,
.banner-title {
  font-weight: bold;
  font-size: 4.4rem;
  margin: 0;
  color: #ffffff !important;
}

.banner-description {
  font-size: 1.6rem;
  max-width: 800px;
  color: #ffffff !important;
}

@media screen and (max-width: 768px) {
  .banner-subtitle,
  .banner-title {
    font-size: 3rem;
  }
  .banner-description {
    font-size: 1.4rem;
  }
}