/** Shopify CDN: Minification failed

Line 584:30 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-main (INDEX:2) */
.collection-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
  }

  .collection-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .collection-header h1 {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.1;
  }

  .collection-header .filter {
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 3vw, 2rem);
    align-items: start;
  }

  @media (min-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (min-width: 1100px) {
    .product-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .product-card {
    min-width: 0;
  }

  .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .product-image-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
    touch-action: pan-y pinch-zoom;
  }

  .product-image-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .product-image-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
  }

  .product-image-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }

  .product-image-slider:hover .slider-btn,
  .product-image-slider:focus-within .slider-btn {
    opacity: 1;
    pointer-events: auto;
  }

  @media (hover: none) {
    .slider-btn {
      opacity: 1;
      pointer-events: auto;
    }
  }

  .slider-prev {
    left: 0.5rem;
  }

  .slider-next {
    right: 0.5rem;
  }

  .slider-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    z-index: 2;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .slider-dot.is-active {
    background: #fff;
  }

  .product-info {
    margin-top: 0.75rem;
  }

  .product-info h3 {
    margin: 0 0 0.25rem;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    line-height: 1.3;
    word-break: break-word;
  }

  .product-info span { .product-info__price {
    margin: 0;
    display: auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
  }
  .product-info__price > span:first-child {
    font-size: 0.9rem;
  }
  .product-info__sold-out {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
  }
  .product-card--sold-out .product-info h3 {
    color: #666;
  }


  .product-image-slider.is-dragging .product-image-track {
    transition: none;
  }
/* END_SECTION:collection-main */

/* START_SECTION:header (INDEX:6) */
.site-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
  }

  .site-header .logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-header .logo a {
    display: block;
    font-size: clamp(0.85rem, 3.5vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #1a3a8f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-nav {
    display: none;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 3vw, 2rem);
    min-width: 0;
  }

  .header-nav a {
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #1a3a8f;
    white-space: nowrap;
    pointer-events: auto;
  }

  .header-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 0.65rem;
    flex: 0 0 auto;
    min-width: 0;
  }

  .header-right a {
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
    text-decoration: none;
    color: #111;
    white-space: nowrap;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #111;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.25rem 1rem 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 99;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #1a3a8f;
    border-bottom: 1px solid #f0f0f0;
    pointer-events: auto;
    cursor: pointer;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .site-header {
      padding: 1rem 1.5rem;
      gap: 1.5rem;
    }

    .header-nav {
      display: flex;
    }

    .mobile-toggle {
      display: none;
    }

    .mobile-menu,
    .mobile-menu.is-open {
      display: none !important;
    }

    .header-right a {
      font-size: 0.85rem;
    }
  }

  @media (min-width: 1024px) {
    .site-header {
      padding: 1rem 2rem;
    }

    .header-nav {
      gap: 2.25rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:product-main (INDEX:8) */
.product-main {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
  }

  .product-main__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-main__block {
    width: 100%;
    min-width: 0;
  }

  .product-main__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: 1.15;
    word-break: break-word;
  }

  .product-main__description {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-main__description p {
    margin: 0 0 0.75rem;
  }

  .product-main__meta {
    margin: 0.35rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
  }

  .product-main__meta-label {
    font-weight: 600;
  }

  .product-main__delivery {
    margin-top: 1rem;
    border-top: 1px solid #e5e5e5;
    padding-top: 0.75rem;
  }

  .product-main__delivery summary {
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    list-style: none;
  }

  .product-main__delivery summary::-webkit-details-marker {
    display: none;
  }

  .product-main__delivery-body {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .product-main__gallery {
    width: 100%;
  }

  .product-image-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    background: #f7f7f7;
    touch-action: pan-y pinch-zoom;
  }

  .product-image-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .product-image-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
  }

  .product-image-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }

  .slider-prev {
    left: 0.5rem;
  }

  .slider-next {
    right: 0.5rem;
  }

  .slider-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }

  .slider-dot.is-active {
    background: #111;
  }

  .product-image-slider.is-dragging .product-image-track {
    transition: none;
  }

  .product-main__price {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 600;
  }

  .product-main__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-main__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-main__option {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .product-main__option-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .product-main__select {
    width: 100%;
    max-width: 280px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    appearance: auto;
  }

  .product-main__add-to-cart {
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    border: none;
    cursor: pointer;
  }

  .product-main__add-to-cart:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  @media (min-width: 768px) {
    .product-main {
      max-width: 560px;
      padding: 2rem 1.5rem;
    }

    .product-main__inner {
      gap: 2rem;
    }
  }
/* END_SECTION:product-main */