/** Shopify CDN: Minification failed

Line 203:18 Unexpected "{"
Line 203:27 Expected ":"
Line 203:34 Unexpected "{"
Line 279:20 Unexpected "{"
Line 279:29 Expected ":"
Line 279:36 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:11-material-feature-section (INDEX:0) */
.material-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background-color: #f5f3f0;
    overflow: hidden;
  }

  .material-image-container {
    position: relative;
    overflow: hidden;
    background-color: #2a3840;
  }

  .material-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .material-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f5f3f0;
  }

  .material-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 30px;
  }

  .material-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
  }

  .material-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    max-width: 500px;
  }

  .material-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 0;
  }

  .spec-item {
    border-top: 1px solid #ddd;
    padding-top: 20px;
  }

  .spec-value {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .spec-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
  }

  /* Tablet Adjustments */
  @media (max-width: 1024px) {
    .material-section {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .material-image-container {
      min-height: 400px;
    }

    .material-content {
      padding: 50px 40px;
    }

    .material-title {
      font-size: 2.5rem;
    }

    .material-specs {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .material-section {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .material-image-container {
      min-height: 300px;
    }

    .material-content {
      padding: 40px 20px;
    }

    .material-label {
      font-size: 0.65rem;
      margin-bottom: 20px;
    }

    .material-title {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .material-description {
      font-size: 0.95rem;
      margin-bottom: 30px;
      max-width: 100%;
    }

    .material-specs {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .spec-value {
      font-size: 1.5rem;
    }

    .spec-label {
      font-size: 0.65rem;
    }
  }

  /* Hover Effects */
  .material-image {
    transition: transform 0.8s ease-out;
  }

  .material-image-container:hover .material-image {
    transform: scale(1.05);
  }

  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .material-content {
    animation: fadeInUp 0.8s ease-out;
  }
/* END_SECTION:11-material-feature-section */

/* START_SECTION:about-second (INDEX:2) */
:root {
    --bg-cream: #f4f1ea; /* Matching the specific warm beige in the image */
    --text-main: #111111;
    --text-muted: #888888;
    --font-serif: "ITC Caslon", "Libre Baskerville", serif;
    --font-mono: "Courier New", Courier, monospace;
  }

  .story-section-{{ section.id }} {
    background-color: var(--bg-cream);
    padding: 100px 6%;
    color: var(--text-main);
  }

  .story-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Image & Caption */
  .story-image-wrap {
    position: relative;
  }

  .story-image-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .story-caption {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 20px;
    display: block;
  }

  /* Content Side */
  .story-content {
    max-width: 520px;
  }

  .story-subtitle {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 30px;
    display: block;
  }

  .story-heading {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    margin: 0 0 40px 0;
    font-weight: 400;
  }

  .story-body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
  }

  .story-body p {
    margin-bottom: 25px;
  }

  /* Mobile Layout */
  @media (max-width: 990px) {
    .story-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    .story-section-{{ section.id }} {
      padding: 60px 20px;
    }
  }
/* END_SECTION:about-second */

/* START_SECTION:s-category (INDEX:71) */
.categories-section {
  padding: 80px 20px;
  background-color: white;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

.categories-header {
  margin-bottom: 60px;
}

.categories-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 15px;
}

.categories-title {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.categories-title-italic {
  font-style: italic;
  font-weight: 200;
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* STAGGER */
.categories-grid .category-card:nth-child(2),
.categories-grid .category-card:nth-child(4) {
  transform: translateY(-50px);
}

/* CARD */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

/* IMAGE */
.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* OVERLAY */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, transparent 50%, rgba(0,0,0,0.5));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
  transition: all 0.4s ease;
}

/* TEXT */
.category-name {
  font-size: 2.5rem;
  font-family: Fraunces, Georgia, serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.category-count {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.category-arrow {
  transition: transform 0.3s ease;
}

/* ✨ PREMIUM HOVER */
.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  background: linear-gradient(210deg, transparent 30%, rgba(0,0,0,0.65));
}

.category-card:hover .category-name,
.category-card:hover .category-count {
  transform: translateY(0);
}

.category-card:hover .category-arrow {
  transform: translateX(6px);
}
a.category-link {
    color: #fff;
    text-decoration: none;
}

/* TABLET */
@media (max-width: 1024px) {
  .categories-title { font-size: 2.5rem; }
  .category-name { font-size: 1.5rem; }
}

/* MOBILE */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid .category-card {
    transform: none !important;
  }
}
/* END_SECTION:s-category */