/** Shopify CDN: Minification failed

Line 21:33 Unexpected "{"
Line 21:42 Expected ":"
Line 284:35 Unexpected "{"
Line 284:44 Expected ":"

**/
/* Ensure gallery-image inside cards uses Shopify's default sizing and allows focal point */
.shape-gallery-image-card .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  max-height: 100%;
  /* Do not set object-position here; allow Shopify's inline style to take precedence for focal point */
}
.section-shape-gallery {
}
.section-shape-gallery .section-{{ section.id }}-padding {
  position: relative;
  box-shadow: none !important;
}
.shape-gallery-section__heading {
  margin: 0;
  text-align: left;
  white-space: normal;
  font-family: var(--font-heading-family, inherit);
  font-size: 2.1rem;
  font-weight: var(--font-heading-weight, 700);
  color: #414141;
  line-height: 1.08;
  position: relative;
  padding: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em !important;
}
.shape-gallery-section__heading.desktop-h0 { font-size: 4rem !important; }
.shape-gallery-section__heading.desktop-h1 { font-size: 4.5rem !important; }
.shape-gallery-section__heading.desktop-h2 { font-size: 3.5rem !important; }
.shape-gallery-section__heading.desktop-h3 { font-size: 2.5rem !important; }
.shape-gallery-section__heading.desktop-h4 { font-size: 2.2rem !important; }
.shape-gallery-section__heading.desktop-h5 { font-size: 1.4rem !important; }
@media screen and (max-width: 749px) {
  .shape-gallery-section__heading,
  .shape-gallery-section__heading.desktop-h0,
  .shape-gallery-section__heading.desktop-h1,
  .shape-gallery-section__heading.desktop-h2,
  .shape-gallery-section__heading.desktop-h3,
  .shape-gallery-section__heading.desktop-h4,
  .shape-gallery-section__heading.desktop-h5 {
    font-size: 2.1rem !important;
  }
}
.shape-gallery-section__heading p {
  display: inline;
  background: none;
  margin: 0;
  padding: 0;
  line-height: inherit;
  white-space: normal;
  position: relative;
  margin-bottom: 0;
  letter-spacing: -0.03em !important;
}
.shape-gallery-section__heading p:last-child {
  position: relative;
  margin-bottom: 0;
}
.shape-gallery-row-heading-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.shape-gallery-row-heading-highlight > * {
  position: relative;
  z-index: 2;
}
.shape-gallery-row-heading-highlight::before {
  content: '';
  position: absolute;
  left: -0.1em;
  right: -0.25em;
  bottom: -0.04em;
  height: 48%;
  background: #E0DCE9;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 750px) {
  .shape-gallery-section__heading {
    font-size: 2.5rem;
  }
  .shape-gallery-row-heading-highlight::before {
    height: 52%;
  }
}
.section-shape-gallery .shape-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 0.8fr 1.2fr;
  grid-template-areas:
    'a b'
    'c b'
    'c d';
  gap: 6px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  height: auto;
}
.section-shape-gallery .shape-gallery-image-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #f6f6f6;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
/* .section-shape-gallery .shape-gallery-image-card:hover, .section-shape-gallery .shape-gallery-image-card:focus {
  transform: scale(1.045);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  z-index: 2;
} */

.section-shape-gallery .shape-gallery-image-card.card-a { grid-area: a; aspect-ratio: 1/1.1; }
.section-shape-gallery .shape-gallery-image-card.card-b { grid-area: b; aspect-ratio: 1/1.2; }
.section-shape-gallery .shape-gallery-image-card.card-c { grid-area: c; aspect-ratio: 1.2/1; }
.section-shape-gallery .shape-gallery-image-card.card-d { grid-area: d; aspect-ratio: 1/1.2; }
.section-shape-gallery .shape-gallery-image-card.card-e,
.section-shape-gallery .shape-gallery-image-card.card-f { display: none !important; }

.section-shape-gallery .shape-gallery-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.section-shape-gallery .shape-gallery-modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInModal 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.section-shape-gallery .shape-gallery-modal {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: scaleInModal 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes scaleInModal {
  from { transform: scale(0.96); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.section-shape-gallery .shape-gallery-modal-image {
  max-width: 98vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
  background: #fff;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
.section-shape-gallery .shape-gallery-modal-image.visible {
  opacity: 1;
}
@media (max-width: 750px) {
  .section-shape-gallery .shape-gallery-modal-image { max-width: 96vw; max-height: 60vh; }
}
.section-shape-gallery .shape-gallery-modal {
  border-radius: 0;
}
.section-shape-gallery .shape-gallery-modal-close {
  position: absolute;
  top: 2vw;
  right: 2vw;
  background: #fff;
  border: none;
  color: #111;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 0.5em;
  line-height: 1;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.section-shape-gallery .shape-gallery-modal-close:hover, .section-shape-gallery .shape-gallery-modal-close:focus {
  background: #f2f2f2;
  color: #000;
}
@media (max-width: 750px) {
  .section-shape-gallery .shape-gallery-modal-close {
    top: 1vw;
    right: 1vw;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
}
.section-shape-gallery .shape-gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  z-index: 10;
  padding: 0.2em 0.5em;
  border-radius: 50%;
  transition: background 0.15s;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-shape-gallery .shape-gallery-modal-nav svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #fff;
  transition: transform 0.2s;
}
.section-shape-gallery .shape-gallery-modal-nav.right svg {
  transform: rotate(180deg);
}
.section-shape-gallery .shape-gallery-modal-nav.left { left: 1vw; }
.section-shape-gallery .shape-gallery-modal-nav.right { right: 1vw; }
@media (max-width: 750px) {
  .section-shape-gallery .shape-gallery-modal-image { max-width: 96vw; max-height: 60vh; }
  .section-shape-gallery .shape-gallery-modal-close { top: 1vw; right: 1vw; font-size: 2rem; }
  .section-shape-gallery .shape-gallery-modal-nav { font-size: 2rem; }
}
@media screen and (min-width: 990px) {
  .section-shape-gallery .shape-gallery-grid {
    max-width: none;
    width: 100%;
    aspect-ratio: 2.2/1;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 0.7fr 1fr;
    gap: 24px;
  }
}
@media screen and (min-width: 990px) {
  .section-shape-gallery .section-{{ section.id }}-padding {
    height: 600px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-left: 96px;
    padding-right: 96px;
    width: 100%;
    overflow: visible;
  }
}
@media (hover: none) and (pointer: coarse) {
  .section-shape-gallery .shape-gallery-image-card:hover, .section-shape-gallery .shape-gallery-image-card:focus {
    transform: none;
    box-shadow: none;
    z-index: auto;
  }
  .section-shape-gallery .shape-gallery-image-card {
    transition: none;
  }
}

.shape-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media screen and (min-width: 480px) {
  .shape-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 990px) {
  .shape-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}
.shape-gallery-image-card {
  border-radius: 20px 50px 20px 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  background: #f6f6f6;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.section-shape-gallery[class*="-padding"] {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-padding-top-mobile, 36px) !important;
  padding-bottom: var(--section-padding-bottom-mobile, 36px) !important;
  padding-left: var(--section-padding-left-mobile, 24px) !important;
  padding-right: var(--section-padding-right-mobile, 24px) !important;
}
@media screen and (min-width: 750px) {
  .section-shape-gallery[class*="-padding"] {
    padding-top: var(--section-padding-top-desktop, 48px) !important;
    padding-bottom: var(--section-padding-bottom-desktop, 60px) !important;
    padding-left: var(--section-padding-left-desktop, 96px) !important;
    padding-right: var(--section-padding-right-desktop, 96px) !important;
  }
}
@media (max-width: 749px) {
  .hide-bg-container-mobile {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}
