/** Shopify CDN: Minification failed

Line 251:12 Unexpected "{"
Line 251:21 Expected ":"
Line 252:16 Expected identifier but found whitespace
Line 252:18 Unexpected "{"
Line 252:27 Expected ":"
Line 252:78 Expected ":"
Line 253:19 Expected identifier but found whitespace
Line 253:21 Unexpected "{"
Line 253:30 Expected ":"
Line 253:84 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:featured-sculptures (INDEX:19) */
.featured-sculptures {
    padding-top: var(--section-padding-top, 72px);
    padding-bottom: var(--section-padding-bottom, 72px);
  }

  .featured-sculptures__container {
    max-width: var(--page-width, 1480px);
    margin: 0 auto;
    padding: 0 24px;
  }

  .featured-sculptures__heading {
    margin: 0 0 32px 0;
  }

  .featured-sculptures__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  @media (max-width: 989px) {
    .featured-sculptures__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }
  }

  @media (max-width: 480px) {
    .featured-sculptures__grid {
      grid-template-columns: 1fr;
    }
  }

  .featured-sculptures__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 200ms ease;
  }

  .featured-sculptures__card:hover .featured-sculptures__image,
  .featured-sculptures__card:focus-visible .featured-sculptures__image {
    transform: scale(1.02);
  }

  .featured-sculptures__card:hover .featured-sculptures__arrow,
  .featured-sculptures__card:focus-visible .featured-sculptures__arrow {
    transform: translateX(4px);
  }

  .featured-sculptures__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
  }

  .featured-sculptures__image,
  .featured-sculptures__placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
  }

  .featured-sculptures__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
  }

  .featured-sculptures__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(var(--color-foreground, 18 18 18));
    color: rgb(var(--color-background, 255 255 255));
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
  }

  .featured-sculptures__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .featured-sculptures__title {
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .featured-sculptures__arrow {
    display: inline-block;
    transition: transform 200ms ease;
    opacity: 0.6;
  }

  .featured-sculptures__price {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.75;
  }
/* END_SECTION:featured-sculptures */

/* START_SECTION:product-cross-sell (INDEX:50) */
.cross-sell-section {
    width: 100%;
  }

  .cross-sell-wrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .cross-sell-card {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 0.875rem;
    border: 1px solid rgba(var(--color-foreground, 18, 18, 18), 0.12);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: rgb(var(--color-background, 255, 255, 255));
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cross-sell-card:hover,
  .cross-sell-card:focus-visible {
    border-color: rgba(var(--color-foreground, 18, 18, 18), 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--color-foreground, 18, 18, 18), 0.08);
  }

  .cross-sell-card__image {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(var(--color-foreground, 18, 18, 18), 0.04);
  }

  .cross-sell-card__image img,
  .cross-sell-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cross-sell-card__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }

  .cross-sell-card__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
    margin: 0;
    line-height: 1.2;
  }

  .cross-sell-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .cross-sell-card__price {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
  }

  .cross-sell-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-top: 0.15rem;
  }

  .cross-sell-card:hover .cross-sell-card__cta,
  .cross-sell-card:focus-visible .cross-sell-card__cta {
    opacity: 1;
  }

  @media (max-width: 480px) {
    .cross-sell-card__image {
      flex: 0 0 88px;
      width: 88px;
      height: 88px;
    }
    .cross-sell-card__title {
      font-size: 0.95rem;
    }
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }
/* END_SECTION:product-cross-sell */

/* START_SECTION:three-pillars (INDEX:55) */
.three-pillars {
    padding-top: var(--section-padding-top, 72px);
    padding-bottom: var(--section-padding-bottom, 72px);
  }
  .three-pillars__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .three-pillars__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
  }
  .three-pillars__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0 0 0.75rem;
    opacity: 0.75;
  }
  .three-pillars__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 1rem;
  }
  .three-pillars__description {
    font-size: 1.0625rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
  }
  .three-pillars__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .three-pillars__column {
    text-align: center;
  }
  .three-pillars__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .three-pillars__icon svg,
  .three-pillars__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .three-pillars__column-heading {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    letter-spacing: 0.01em;
  }
  .three-pillars__column-body {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0 auto;
    max-width: 22rem;
  }
  @media (min-width: 750px) {
    .three-pillars__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.25rem;
    }
    .three-pillars__column-body {
      max-width: none;
    }
  }
/* END_SECTION:three-pillars */