/** Shopify CDN: Minification failed

Line 326:0 All "@import" rules must come first

**/
/* ─── Sol Fountain — Collections Grid ──────────────────── */
/* Section 3: Find Your Sanctuary                           */
/* Spec: CLAUDE.md — 3-col asymmetric grid + glassmorphism  */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --sol-white:       #F8F6F2;
  --sol-stone:       #E8E3DC;
  --sol-pebble:      #C4BAB0;
  --sol-slate:       #5C5752;
  --sol-charcoal:    #2A2724;
  --sol-gold:        #C9A84C;
  --sol-gold-light:  #E8D5A3;
  --sol-green:       #6B8C6E;
  --sol-water:       rgba(255,255,255,0.08);
}

/* ─── Section wrapper ─────────────────────────────────────── */
.sol-collections {
  background: var(--sol-white);
  padding: 5rem 0 6rem;
  overflow: hidden;
}

/* ─── Header ──────────────────────────────────────────────── */
.sol-collections__header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
}

.sol-collections__eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 1rem !important;
  letter-spacing: 0.25em;
  color: var(--sol-gold);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sol-collections__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--sol-charcoal);
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sol-collections__subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem) !important;
  color: var(--sol-slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Grid ────────────────────────────────────────────────── */
.sol-collections__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Tile 1 — large, spans 2 rows */
.sol-collections__tile:nth-child(1) {
  grid-row: span 2;
}

/* Tile 4 & 5 — bottom row, equal width */
.sol-collections__tile:nth-child(4),
.sol-collections__tile:nth-child(5) {
  grid-column: span 1;
}

/* Tiles 4+5 sit in columns 2 and 3 of row 2 */
.sol-collections__grid {
  grid-template-areas:
    "tile1 tile2 tile3"
    "tile1 tile4 tile5";
}

.sol-collections__tile:nth-child(1) { grid-area: tile1; }
.sol-collections__tile:nth-child(2) { grid-area: tile2; }
.sol-collections__tile:nth-child(3) { grid-area: tile3; }
.sol-collections__tile:nth-child(4) { grid-area: tile4; }
.sol-collections__tile:nth-child(5) { grid-area: tile5; }

/* ─── Tile ────────────────────────────────────────────────── */
.sol-collections__tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
}

/* Aspect ratio per tile */
.sol-collections__tile:nth-child(1) .sol-collections__image-wrap {
  aspect-ratio: auto;
  height: 100%;
}

.sol-collections__tile:nth-child(2) .sol-collections__image-wrap,
.sol-collections__tile:nth-child(3) .sol-collections__image-wrap {
  aspect-ratio: 1 / 1;
}

.sol-collections__tile:nth-child(4) .sol-collections__image-wrap,
.sol-collections__tile:nth-child(5) .sol-collections__image-wrap {
  aspect-ratio: 1 / 1;
}

/* ─── Image wrap ──────────────────────────────────────────── */
.sol-collections__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sol-collections__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sol-collections__tile:hover .sol-collections__image {
  transform: scale(1.04);
}

/* ─── Gradient overlay ────────────────────────────────────── */
.sol-collections__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 39, 36, 0.72) 0%,
    rgba(42, 39, 36, 0.1) 50%,
    rgba(42, 39, 36, 0) 100%
  );
  transition: opacity 0.4s ease;
}

.sol-collections__tile:hover .sol-collections__overlay {
  opacity: 0.85;
}

/* ─── Glassmorphism label ─────────────────────────────────── */
.sol-collections__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: rgba(42, 39, 36, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.sol-collections__tile:hover .sol-collections__label {
  background: rgba(42, 39, 36, 0.6);
  transform: translateY(-4px);
}

.sol-collections__label-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sol-gold);
}

.sol-collections__label-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--sol-white);
  line-height: 1.2;
}

.sol-collections__label-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--sol-gold-light);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.sol-collections__tile:hover .sol-collections__label-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Gold hairline divider above section ─────────────────── */
.sol-collections::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--sol-gold);
  opacity: 0.5;
  margin: 0 auto 3rem;
}

/* ─── Mobile — horizontal scroll ─────────────────────────── */
@media (max-width: 749px) {
  .sol-collections {
    padding: 3.5rem 0 4rem;
  }

  .sol-collections__header {
    padding: 0 1.25rem;
    margin-bottom: 2rem;
  }

  .sol-collections__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 0 1.25rem 1rem;
    scrollbar-width: none;
  }

  .sol-collections__grid::-webkit-scrollbar {
    display: none;
  }

  .sol-collections__tile {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }

  .sol-collections__tile .sol-collections__image-wrap {
    aspect-ratio: 3 / 4 !important;
  }

  .sol-collections__label-cta {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Tablet ──────────────────────────────────────────────── */
@media (min-width: 750px) and (max-width: 1099px) {
  .sol-collections__grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "tile1 tile2"
      "tile1 tile3"
      "tile4 tile5";
    padding: 0 1.5rem;
  }
}

/* ─── Load Google Fonts ───────────────────────────────────── */
.sol-collections__tile:nth-child(1) .sol-collections__image-wrap {
  height: 100%;
}

.sol-collections__tile:nth-child(1) .sol-collections__image {
  height: 100%;
  object-fit: cover;
}
.sol-collections__label-eyebrow {
  font-size: 0.85rem !important;
  letter-spacing: 0.15em;
  color: var(--sol-gold);
}

.sol-collections__label-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 500;
  color: var(--sol-white);
}

.sol-collections__label-cta {
  font-size: 0.95rem !important;
  color: var(--sol-gold-light);
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.sol-collections__label {
  background: rgba(42, 39, 36, 0.65) !important;
  border: 1px solid rgba(201, 168, 76, 0.45) !important;
  padding: 1rem 1.25rem !important;
}
.sol-collections__eyebrow {
  font-size: 1.6rem !important;
  letter-spacing: 0.3em !important;
  color: var(--sol-gold) !important;
  opacity: 1 !important;
}

.sol-collections__subtext {
  font-size: 1.6rem !important;
  max-width: 600px !important;
  color: var(--sol-slate) !important;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');