/** Shopify CDN: Minification failed

Line 2855:3 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.collection-header-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 210px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.collection-header-bg-video video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  min-width: 100vw;
  min-height: 100%;
  display: block;
}
.collection-header-spacer {
  height: 210px;
  width: 100vw;
  display: block;
}

.collection-title {
  font-family: 'Duckie';
  font-weight: normal;
  font-size: 3rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  color: #111;
  letter-spacing: 0em;
  position: relative;
  z-index: 2;
}

.collection-products-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.collection-product-row {
  display: flex;
  align-items: center;
  min-width: 340px;
  max-width: 520px;
  width: 100%;
  text-decoration: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0.5rem 0;
  transition: none;
  position: relative;
  cursor: pointer;
  flex: 1 1 340px;
  gap: 2rem;
}

.collection-product-image {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin-right: 0.5rem;
}

.collection-product-info {
  flex: 1 1 200px;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: none;
  color: #111;
  min-height: 120px;
}

.collection-product-info h2 {
  font-family: 'Gibson';
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 0.4rem 0;
  color: #111;
  letter-spacing: 0.02em;
  background: none;
}

.collection-product-description {
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.5rem;
  background: none;
}

.collection-product-arrow {
  margin-top: 0.1rem;
  height: 16px;
  width: 36px;
  display: flex;
  align-items: center;
}

.arrow-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: arrow-animate 1.2s cubic-bezier(.4,2.3,.3,1) forwards;
}

.collection-product-row:hover .arrow-path {
  animation: arrow-animate-hover 0.7s cubic-bezier(.4,2.3,.3,1) forwards;
}

@keyframes arrow-animate {
  to { stroke-dashoffset: 0; }
}
@keyframes arrow-animate-hover {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

.collection-pagination {
  flex-basis: 100%;
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .collection-product-row {
    min-width: 260px;
    max-width: 100%;
    flex: 1 1 260px;
    gap: 1rem;
  }
  .collection-product-image {
    max-width: 100px;
    max-height: 100px;
  }
}

@media (max-width: 600px) {
  .collection-header-spacer {
    height: 120px;
  }
  .collection-title {
    font-size: 2rem;
  }
  .collection-products-row {
    gap: 1rem;
    padding: 1rem 0;
  }
  .collection-product-row {
    flex-direction: column;
    align-items: stretch;
    min-width: 90vw;
    max-width: 98vw;
    margin: 0.5rem auto;
    gap: 0.5rem;
  }
  .collection-product-image {
    max-width: 100%;
    max-height: 120px;
    margin: 0 auto;
  }
  .collection-product-info {
    align-items: center;
    text-align: center;
    padding: 0.7rem 0.5rem 1rem 0.5rem;
    min-height: 0;
  }
}@media (max-width: 700px) {
  .collection-header-bg-video {
    height: 130px; /* Shorter for mobile header */
  }
}.collection-product-image {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-right: 0.5rem;
}@media (max-width: 900px) {
  .collection-product-image {
    max-width: 180px;
    max-height: 180px;
  }
}
@media (max-width: 600px) {
  .collection-product-image {
    max-width: 98vw;
    max-height: 220px;
    margin: 0 auto;
  }
}.collection-product-image {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-right: 0.5rem;
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* Hero */

.colors-hero {
  position: relative;
  width: 100%;
  height: 48vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
}
.colors-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Reduced blur & removed brightness that caused light halo */
  filter: blur(18px) saturate(1.3);
  transform: scale(1.04);
}
.colors-hero-overlay {
  position: absolute;
  inset: 0;
  /* Removed radial (white) gradient; keep subtle dark fade only */
  background: linear-gradient(to top, rgba(0,0,0,.38), rgba(0,0,0,.05));
}
.colors-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  width: 100%;
  color: #fff;
  font-family: 'Gibson', serif;
}
.colors-hero-title {
  font-family: 'Duckie' !important;
  font-size: 5.2rem;
  font-weight: normal;
  margin: 0 0 .5rem;
  color: #fff;
}

.back-to-product-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  font-size: .95rem;
  color: #fff;
  background: rgba(0,0,0,.35);
  padding: .5rem .95rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background .25s;
}
.back-to-product-link:hover { background: rgba(0,0,0,.55); }

.selected-color-label {
  font-size: 1.05rem;
  letter-spacing: .5px;
  color: #fff;
  font-weight: 500;
}

/* Grid */
.more-colors-container {
  max-width: 1400px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  font-family: 'Gibson', serif;
}
.more-colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
  gap: 2.3rem 2rem;
}

/* Cards */
.color-card {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: center;
}

/* Swatch */
.swatch {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.swatch-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
  box-shadow: 0 0 0 0 transparent;
  transition: transform .3s, box-shadow .25s;
}
.swatch:hover .swatch-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  box-shadow: 0 0 0 3px #111, 0 4px 14px rgba(0,0,0,.25);
  transform: translateY(-2px);
}

/* Info */
.color-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}
.color-card-title {
  font-weight: 600;
  font-size: .95rem;
  color: #222;
  letter-spacing: .5px;
}
.color-card-select-btn {
  display: inline-block;
  background: #16171c;
  color: #fff;
  padding: .55rem 1.3rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .5px;
  transition: background .3s, transform .3s;
}
.color-card-select-btn:hover {
  background:#000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 900px){
  .colors-hero-title { font-size: 3.4rem; }
}
@media (max-width: 820px){
  /* Reduce hero height instead of enlarging */
  .colors-hero {
    height: 38vh;
    min-height: 300px;
  }
  .colors-hero-title { font-size: 3rem; }
  .more-colors-grid { gap:1.8rem 1.4rem; }
}
@media (max-width: 640px){
  /* Force exactly 3 columns on mobile */
  .more-colors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem 1rem;
  }
  .swatch-circle {
    width:58px;
    height:58px;
  }
  .colors-hero {
    height: 32vh;
    min-height: 240px;
  }
  .colors-hero-title { font-size: 2.45rem; }
  .more-colors-container { padding:0 1.1rem; }
}
@media (max-width: 420px){
  .swatch-circle {
    width:52px;
    height:52px;
  }
  .more-colors-grid {
    gap:1.1rem .8rem;
  }
}.more-colors-grid {
  display: grid;
  justify-content: center;          /* centers the whole grid block */
  justify-items: center;            /* centers each card horizontally */
  grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
  gap: 2.3rem 2rem;
}
/* Each card fixed width to keep perfect centering rows */
.color-card { width:150px; }

/* Mobile: force exactly 3 columns & keep centered */
@media (max-width: 640px){
  .more-colors-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;               /* keeps the 3-col block from stretching too wide */
    margin-left: auto;
    margin-right: auto;
    gap: 1.4rem 1rem;
  }
  .color-card { width:auto; }
  .swatch-circle { width:58px; height:58px; }
}
/* Very small */
@media (max-width: 420px){
  .more-colors-grid {
    max-width: 100%;
    gap:1.1rem .8rem;
  }
  .swatch-circle { width:52px; height:52px; }
}.colors-hero {
  align-items: center;              /* center vertically */
  justify-content: center;
}

.colors-hero-video {
  transform: scale(1.07);           /* extra scale hides any blur edge “border” */
}

.colors-hero-overlay {
  background: rgba(0,0,0,.32);      /* flat dark veil (no top fade / no white halo) */
}

.colors-hero-inner {
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;          /* center contents vertically */
  align-items: center;
}

.colors-hero-title {
  margin: 0 0 1rem;
}

@media (max-width: 820px){
  .colors-hero { height: 38vh; }
}
@media (max-width: 640px){
  .colors-hero { height: 32vh; }
}.more-colors-grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit, minmax(150px, 150px)); /* fixed track width */
  justify-content: center;      /* centers full rows & last partial row */
  justify-items: center;        /* centers each card inside its track */
  gap: 2.3rem 2rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.color-card { width:150px; }

/* Mobile: force exactly 3 columns still centered */
@media (max-width: 640px){
  .more-colors-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
    gap: 1.4rem 1rem;
  }
  .color-card { width:100%; }
  .swatch-circle { width:58px; height:58px; }
}

@media (max-width: 420px){
  .more-colors-grid {
    max-width: 100%;
    gap:1.1rem .8rem;
  }
  .swatch-circle { width:52px; height:52px; }
}.more-colors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;          /* centers full and partial rows */
  gap: 2.3rem 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

.color-card {
  flex: 0 0 150px;                  /* fixed width swatch card */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

/* Mobile: force exactly 3 per row */
@media (max-width: 640px){
  .more-colors-grid {
    gap: 1.4rem 1rem;
    max-width: 520px;
  }
  .color-card {
    flex: 0 0 calc((100% - 2rem) / 3); /* 3 columns accounting for horizontal gaps (2 * 1rem) */
  }
  .swatch-circle { width:58px; height:58px; }
}

@media (max-width: 420px){
  .more-colors-grid {
    gap:1.1rem .8rem;
    max-width: 100%;
  }
  .color-card {
    flex: 0 0 calc((100% - 1.6rem) / 3);
  }
  .swatch-circle { width:52px; height:52px; }
}
.swatch-plus {
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#16171c;
  color:#fff;
  text-decoration:none;
  font-size:1.75rem;
  line-height:1;
  font-weight:300;
  letter-spacing:-1px;
  transition:transform .35s cubic-bezier(.4,0,.2,1), background .3s, box-shadow .3s;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
}
.swatch-plus:focus-visible {
  outline:2px solid #fff;
  outline-offset:3px;
}
.swatch-plus:hover,
.swatch-plus:focus {
  transform:scale(.92);
  background:#000;
  box-shadow:0 6px 20px rgba(0,0,0,.28);
}

/* Swatch base (no border; selection still highlighted) */
.swatch-circle {
  width:68px;
  height:68px;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  background-color:#f2f2f2;
  transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  box-shadow:0 0 0 0 transparent;
}

/* Hover: subtle scale down instead of lift */
.swatch:hover .swatch-circle {
  transform:scale(.94);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

/* Active/selected state */
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  box-shadow:0 0 0 3px #111, 0 4px 14px rgba(0,0,0,.25);
  transform:scale(.94);
}

/* Card layout adjustments after removing button */
.color-card {
  gap:.65rem;
}

/* Mobile sizing adjustments remain */
@media (max-width:640px){
  .swatch-circle { width:58px; height:58px; }
  .swatch-plus { width:38px; height:38px; font-size:1.55rem; }
}
@media (max-width:420px){
  .swatch-circle { width:52px; height:52px; }
  .swatch-plus { width:34px; height:34px; font-size:1.4rem; }
}.swatch-plus {
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#16171c;
  color:#fff;
  text-decoration:none;
  font-size:1.5rem;
  line-height:1;
  font-weight:700;
  transition:transform .28s cubic-bezier(.4,0,.2,1), background .25s, box-shadow .25s;
  box-shadow:0 3px 10px rgba(0,0,0,.18);
  user-select:none;
}
.swatch-plus .plus-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  font-weight:700;
  font-size:1.45rem;
  line-height:1;
  transform:translateY(-1px); /* optical centering */
}
.swatch-plus:hover,
.swatch-plus:focus {
  transform:scale(.9);
  background:#000;
  box-shadow:0 6px 18px rgba(0,0,0,.28);
}
.swatch-plus:focus-visible {
  outline:2px solid #fff;
  outline-offset:3px;
}

/* Responsive tweak */
@media (max-width:640px){
  .swatch-plus { width:30px; height:30px; font-size:1.3rem; }
  .swatch-plus .plus-icon { font-size:1.25rem; transform:translateY(-1px); }
}
@media (max-width:420px){
  .swatch-plus { width:26px; height:26px; font-size:1.15rem; }
  .swatch-plus .plus-icon { font-size:1.1rem; }
}.swatch-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  box-shadow: 0 0 0 0 transparent;
}

.swatch:hover .swatch-circle {
  transform: scale(.94);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  box-shadow: 0 0 0 4px #111, 0 6px 18px rgba(0,0,0,.28);
  transform: scale(.94);
}

/* Adjust spacing since swatch grew */
.color-card {
  gap: .75rem;
}

/* Plus button spaced a bit from larger swatch */
.swatch-plus { margin-top: .15rem; }

/* Responsive sizes */
@media (max-width: 900px){
  .swatch-circle { width: 82px; height: 82px; }
}
@media (max-width: 640px){
  .swatch-circle { width: 72px; height: 72px; }
}
.colors-hero-inner,
.more-colors-container,
.more-colors-grid,
.color-card,
.color-card-title,
.selected-color-label,
.back-to-product-link,
.swatch-plus{
  font-family: "Times New Roman", Times, serif !important;
  font-weight: 700; /* Bold */
}.swatch-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;              /* hide text metrics */
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #16171c;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  transition: transform .25s cubic-bezier(.4,0,.2,1), background .25s, box-shadow .25s;
  user-select: none;
}

/* Hide the old text glyph (still there for fallback / screen readers if needed) */
.swatch-plus .plus-icon {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Bold plus built with two bars */
.swatch-plus::before,
.swatch-plus::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
  /* thickness = height, length = width */
  width: 50%;
  height: 15%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swatch-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.swatch-plus:hover,
.swatch-plus:focus {
  transform: scale(.9);
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}

.swatch-plus:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 3px;
}

/* Larger swatch version responsiveness already handled above; adjust plus proportionally */
@media (max-width: 640px){
  .swatch-plus { width: 30px; height: 30px; }
  .swatch-plus::before,
  .swatch-plus::after { width: 62%; height: 20%; }
}
@media (max-width: 420px){
  .swatch-plus { width: 26px; height: 26px; }
  .swatch-plus::before,
  .swatch-plus::after { width: 64%; height: 22%; }
}.swatch-plus {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #18191b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: background .45s cubic-bezier(.4,1,.3,1),
              transform .55s cubic-bezier(.4,1,.3,1),
              box-shadow .45s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* Kill the old bar-built plus */
.swatch-plus::before,
.swatch-plus::after {
  content: none !important;
}

/* Gradient PLUS (base layer) */
.swatch-plus .plus-icon {
  position: relative;
  z-index: 2;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: homeFadeAnimate 20s linear infinite;
  opacity: .45;
  transition: opacity .55s cubic-bezier(.4,1,.3,1);
  pointer-events: none;
  user-select: none;
}

/* Gray overlay copy (sits above, fades out on hover) */
.swatch-plus::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg,rgba(30,30,30,0.55),rgba(80,80,80,0.55));
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: .65;
  z-index: 3;
  transition: opacity .45s cubic-bezier(.4,1,.3,1);
  pointer-events: none;
}

/* Hover / focus */
.swatch-plus:hover,
.swatch-plus:focus {
  background: #000 !important;
  transform: scale(.96);
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
}

.swatch-plus:hover .plus-icon,
.swatch-plus:focus .plus-icon {
  opacity: 1;
}

.swatch-plus:hover::after,
.swatch-plus:focus::after {
  opacity: 0;
  transition-duration: .22s;
}

/* Keyboard outline */
.swatch-plus:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Small screens adjust */
@media (max-width: 640px){
  .swatch-plus,
  .swatch-plus .plus-icon,
  .swatch-plus::after {
    font-size: 1.6rem;
  }
  .swatch-plus {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 420px){
  .swatch-plus,
  .swatch-plus .plus-icon,
  .swatch-plus::after {
    font-size: 1.45rem;
  }
  .swatch-plus {
    width: 34px;
    height: 34px;
  }
}

/* Animation keyframes (add only if not already present) */
@keyframes homeFadeAnimate {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}.swatch-plus .plus-icon,
.swatch-plus::after {
  font-family: 'Duckie' !important;
  font-weight: normal;
  letter-spacing: 0;
}.swatch-plus {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.swatch-plus .plus-icon,
.swatch-plus::after {
  font-size: 1.4rem !important;
  line-height: 1;
}

/* Hover keeps same animation; slight scale tweak for smaller size */
.swatch-plus:hover,
.swatch-plus:focus {
  transform: scale(.94);
}

/* Even smaller on very narrow screens (optional) */
@media (max-width: 420px){
  .swatch-plus {
    width: 26px !important;
    height: 26px !important;
  }
  .swatch-plus .plus-icon,
  .swatch-plus::after {
    font-size: 1.25rem !important;
  }
}.swatch-plus {
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  padding: 0;
  line-height: 1;
}

.swatch-plus .plus-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0;
  font-family: 'Duckie' !important;
  font-size: 1.32rem !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: .48;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: homeFadeAnimate 20s linear infinite;
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}

/* Overlay (fade-out on hover) */
.swatch-plus::after {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Duckie' !important;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  opacity: .72;
  transition: opacity .28s;
  pointer-events: none;
}

.swatch-plus:hover .plus-icon,
.swatch-plus:focus .plus-icon {
  opacity: 1;
}

.swatch-plus:hover::after,
.swatch-plus:focus::after {
  opacity: 0;
}

/* Maintain existing hover scale from prior rule (ensure final) */
.swatch-plus:hover,
.swatch-plus:focus {
  transform: scale(.94) !important;
}

/* Tiny screens tweak */
@media (max-width:420px){
  .swatch-plus,
  .swatch-plus .plus-icon,
  .swatch-plus::after {
    font-size: 1.2rem !important;
  }
}

/* If earlier rules added translateY or other transforms—this kills them */
.swatch-plus .plus-icon[style] {
  transform: translate(-50%, -50%) !important;
}.swatch-circle {
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .08s linear !important;
}

.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  /* Immediate ring appearance */
  transition: transform .12s cubic-bezier(.4,0,.2,1), box-shadow 0s !important;
  box-shadow: 0 0 0 3px #111, 0 4px 14px rgba(0,0,0,.25) !important;
}.swatch {
  position: relative;
}
.swatch-input-visually-hidden {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}.swatch {
  position: relative;
  cursor: pointer;
}
.swatch-input-visually-hidden {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
  z-index: 5; /* Must be higher than circle */
}

/* Ensure proper transition speeds */
.swatch-circle {
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .08s linear !important;
}
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  transition: transform .12s cubic-bezier(.4,0,.2,1), box-shadow 0s !important;
  box-shadow: 0 0 0 3px #111, 0 4px 14px rgba(0,0,0,.25) !important;
}.swatch {
  position: relative;
  cursor: pointer;
}

.swatch-input-visually-hidden {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
}

/* Quick selection transition */
.swatch-circle {
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .05s !important;
}

.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  box-shadow: 0 0 0 3px #111, 0 4px 14px rgba(0,0,0,.25) !important;
  transform: scale(.94) !important;
}

/* Footer spacing guard */
.colors {
  padding-bottom: 80px;
}.swatch-circle {
  transition: transform .65s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow .65s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* More subtle hover shadow */
.swatch:hover .swatch-circle {
  transform: scale(.97) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.12) !important;
}

/* Keep selection ring but with smoother animation */
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  box-shadow: 0 0 0 3px #111, 0 4px 10px rgba(0,0,0,.18) !important;
  transform: scale(.96) !important;
  transition: transform .35s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow .2s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Footer margin guard */
.colors {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}.swatch-circle {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
  box-shadow: 0 0 0 0 transparent;
  transform-origin: center center !important;
  transition: transform .8s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow .8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Hover: scale UP from center (not down) */
.swatch:hover .swatch-circle {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.15) !important;
}

/* Selected: scale from center with ring */
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  transform: scale(1.03) !important;
  box-shadow: 0 0 0 3px #111, 0 6px 16px rgba(0,0,0,.22) !important;
  transition: transform .75s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow .55s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Override any translateY conflicts */
.swatch-circle,
.swatch:hover .swatch-circle,
.swatch.selected .swatch-circle,
input[type="radio"]:checked + .swatch-circle {
  /* Kill any translateY transforms */
  transform-style: flat !important;
}

/* Responsive sizes with !important */
@media (max-width: 900px){
  .swatch-circle { width: 82px !important; height: 82px !important; }
}
@media (max-width: 640px){
  .swatch-circle { width: 72px !important; height: 72px !important; }
}
@media (max-width: 420px){
  .swatch-circle { width: 62px !important; height: 62px !important; }
}

/* === FINAL BACK ARROW BUTTON (REPLACE EXISTING) === */
.back-to-product-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  text-decoration: none;
  font-family: 'Duckie' !important;
  font-weight: normal;
  overflow: hidden;
  transition: background .45s cubic-bezier(.4,1,.3,1),
              transform .35s cubic-bezier(.4,1,.3,1);
  margin-bottom: 1rem;
  cursor: pointer;
}

/* Gradient arrow (base layer - always visible) */
.back-to-product-link::before {
  content: '←';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Duckie' !important;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: homeFadeAnimate 20s linear infinite;
  opacity: .48;
  z-index: 2;
  transition: opacity .45s cubic-bezier(.4,1,.3,1);
  pointer-events: none;
}

/* White overlay (fades out on hover) */
.back-to-product-link::after {
  content: '←';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Duckie' !important;
  color: #fff;
  opacity: .42;
  z-index: 3;
  transition: opacity .35s cubic-bezier(.4,1,.3,1);
  pointer-events: none;
}

/* Hover effects */
.back-to-product-link:hover {
  background: rgba(0,0,0,.55);
  transform: scale(.95);
}

.back-to-product-link:hover::before {
  opacity: 1;
}

.back-to-product-link:hover::after {
  opacity: 0;
  transition-duration: .22s;
}

/* Responsive sizing */
@media (max-width: 640px){
  .back-to-product-link {
    width: 45px;
    height: 45px;
  }
  
  .back-to-product-link::before,
  .back-to-product-link::after {
    font-size: 1.6rem;
  }
}

@media (max-width: 420px){
  .back-to-product-link {
    width: 40px;
    height: 40px;
  }
  
  .back-to-product-link::before,
  .back-to-product-link::after {
    font-size: 1.4rem;
  }
}.back-to-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 90px;
  height: 44px;
  border-radius: 999px; /* pill shape */
  background: rgba(0,0,0,.35);
  padding: 0 1.5em;
  font-size: 1.1rem;
  font-family: 'Duckie' !important;
  font-weight: normal;
  overflow: hidden;
  transition: background .45s cubic-bezier(.4,1,.3,1), transform .35s cubic-bezier(.4,1,.3,1);
  margin-bottom: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.back-to-product-link::before,
.back-to-product-link::after {
  font-size: 1.3em;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.back-to-product-link span {
  margin-left: 1.6em;
}.colors {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  /* Remove display: flex and align-items */
  /* This allows the footer to stay at the bottom */
}
.color-group-title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swatch-row {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: flex-start;
  gap: 1.2rem 2.2rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}.back-to-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  padding: 0 1.5em;
  font-size: 1.1rem;
  font-family: 'Duckie' !important;
  font-weight: normal;
  overflow: hidden;
  transition: background .45s cubic-bezier(.4,1,.3,1), transform .35s cubic-bezier(.4,1,.3,1);
  margin-bottom: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  gap: 0.8em;
}

.back-to-product-link .arrow {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  margin-right: 0.5em;
  font-family: inherit;
  color: inherit;
  background: none;
  padding: 0;
}

.back-to-product-link span {
  margin: 0;
}.back-to-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  padding: 0 1.5em;
  font-size: 1.6rem;
  font-family: 'Duckie' !important;
  font-weight: normal;
  overflow: hidden;
  transition: background .45s cubic-bezier(.4,1,.3,1), transform .35s cubic-bezier(.4,1,.3,1);
  margin-bottom: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  gap: 0.8em;
}

.back-to-product-link .arrow {
  font-size: 1em;
  display: flex;
  align-items: center;
  margin-right: 0.5em;
  font-family: inherit;
  color: inherit;
  background: none;
  padding: 0;
}

.back-to-product-link span {
  margin: 0;
}

/* Remove pseudo-element arrows */
.back-to-product-link::before,
.back-to-product-link::after {
  display: none !important;
  content: none !important;
}.color-group-title {
  font-family: 'Duckie' !important;
  font-weight: normal;
  font-size: 3.2rem;
  text-align: center;
  margin-top: 2.2rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.5px;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: colorTitleGradient 40s linear infinite;
  background-size: 400% 100%;
}

/* RED: smooth loop */
.color-group-title--red {
  background-image: linear-gradient(
    90deg,
    #ff3c3c, #ff5e62, #ffb347, #ff3c3c, #b31217, #ff3c3c, #ff5e62, #ffb347, #ff3c3c, #ff3c3c
  );
}

/* BLUE: smooth loop */
.color-group-title--blue {
  background-image: linear-gradient(
    90deg,
    #00c6ff, #0072ff, #0033ff, #38a1db, #00c6ff, #0072ff, #0033ff, #38a1db, #00c6ff, #00c6ff
  );
}

/* GREEN: smooth loop */
.color-group-title--green {
  background-image: linear-gradient(
    90deg,
    #43e97b, #38f9d7, #11998e, #43e97b, #38f9d7, #11998e, #43e97b, #43e97b
  );
}

/* BLACK: smooth loop */
.color-group-title--black {
  background-image: linear-gradient(
    90deg,
    #444, #222, #111, #444, #222, #111, #444, #444
  );
}

/* WHITE: smooth loop */
.color-group-title--white {
  background-image: linear-gradient(
    90deg,
    #f2f2f2, #e0e0e0, #fff, #e0e0e0, #f2f2f2, #e0e0e0, #fff, #f2f2f2
  );
}

/* METAL: silver → gold → bronze → silver, smooth loop */
.color-group-title--metal {
  background-image: linear-gradient(
    90deg,
    #e0e0e0, #b8b8b8, #ffd700, #e5c16c, #cd7f32, #b87333, #e0e0e0, #b8b8b8, #ffd700, #e0e0e0
  );
  background-size: 400% 100%;
  position: relative;
  overflow: visible;
}
.color-group-title--metal::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 45%,
    rgba(255,255,255,0.2) 55%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode: lighten;
  opacity: 0.7;
  animation: metallicShine 10.5s linear infinite;
  z-index: 2;
}

/* Animate the gradient smoothly */
@keyframes colorTitleGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* Shine animation for the metallic group */
@keyframes metallicShine {
  0% { left: -120%; }
  100% { left: 100%; }
}.colors-hero-title--gradient {
  color: transparent;
  background: linear-gradient(
    90deg,
    #ff3c3c, #ffb347, #fff700, #43e97b, #38f9d7, #00c6ff, #0033ff, #ff00f3, #ff00c4, #b31217, #ff3c3c, #ffb347, #fff700, #43e97b, #38f9d7, #00c6ff, #0033ff, #ff00f3, #ff00c4, #b31217, #ff3c3c
  );
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moreColorsGradient 18s linear infinite;
  font-family: 'Duckie' !important;
  font-weight: normal;
  /* Optional: add a little shadow for readability */
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@keyframes moreColorsGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}.colors-hero-inner {
  max-width: none !important;
  width: 100% !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem 0 !important;
}

.colors-hero-title--gradient {
  width: 100vw;
  max-width: 100vw;
  text-align: center;
  overflow: visible;
  white-space: nowrap;
  margin-left: 50%;
  transform: translateX(-50%);
}.colors-hero-title--gradient {
  color: transparent;
  background: linear-gradient(
    90deg,
    #ff3c3c, #ffb347, #fff700, #43e97b, #38f9d7, #00c6ff, #0033ff, #ff00f3, #ff00c4, #b31217, #ff3c3c, #ffb347, #fff700, #43e97b, #38f9d7, #00c6ff, #0033ff, #ff00f3, #ff00c4, #b31217, #ff3c3c
  );
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moreColorsGradient 18s linear infinite;
  font-family: 'Duckie'!important;
  font-weight: normal;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
  margin: 0 auto 1rem auto;
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  position: static;
  left: auto;
  transform: none;
}.colors-hero-title--gradient {
  margin-top: 4.8rem !important;  /* Add more space above */
  margin-bottom: 1.2rem;
}

.back-to-product-link {
  margin-top: 2.2rem !important;  /* Add space above the back arrow */
  margin-bottom: 1rem;
}@media (max-width: 700px) {
  .swatch-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-content: center;
  }
}/* BROWN */
.color-group-title--brown {
  background-image: linear-gradient(
    90deg,
    #8d5524, #c68642, #e0ac69, #f1c27d, #8d5524, #c68642, #e0ac69, #f1c27d, #8d5524
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* GOLD */
.color-group-title--gold {
  background-image: linear-gradient(
    90deg,
    #ffd700, #ffe066, #ffb347, #ffd700, #ffe066, #ffb347, #ffd700
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* SILVER */
.color-group-title--silver {
  background-image: linear-gradient(
    90deg,
    #e0e0e0, #b8b8b8, #f8f8f8, #e0e0e0, #b8b8b8, #f8f8f8, #e0e0e0
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* BRONZE */
.color-group-title--bronze {
  background-image: linear-gradient(
    90deg,
    #cd7f32, #b87333, #e5c16c, #cd7f32, #b87333, #e5c16c, #cd7f32
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* COPPER */
.color-group-title--copper {
  background-image: linear-gradient(
    90deg,
    #b87333, #c68642, #e0ac69, #b87333, #c68642, #e0ac69, #b87333
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* PURPLE */
.color-group-title--purple {
  background-image: linear-gradient(
    90deg,
    #a259e6, #6a0572, #c774e8, #a259e6, #6a0572, #c774e8, #a259e6
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* ORANGE */
.color-group-title--orange {
  background-image: linear-gradient(
    90deg,
    #ff9800, #ffb347, #ff7f50, #ff9800, #ffb347, #ff7f50, #ff9800
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}

/* YELLOW */
.color-group-title--yellow {
  background-image: linear-gradient(
    90deg,
    #fff700, #ffe066, #fffacd, #fff700, #ffe066, #fffacd, #fff700
  );
  background-size: 400% 100%;
  animation: colorTitleGradient 40s linear infinite;
}
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.footer-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: transparent;
  color: black;
  text-align: center;
  padding: 0;
  font-family: 'Gibson', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  z-index: 100;
  pointer-events: auto;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  top: .2rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer-overlay a {
  text-decoration: none;
  color: black;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-overlay a:hover {
  opacity: 1;
}
@media (max-width: 700px) {
  .footer-overlay {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .footer__links {
    gap: 1rem;
  }
}
.footer-overlay {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: transparent;
  color: black;
  text-align: center;
  padding: 0; /* Remove vertical padding */
  font-family: 'Gibson', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  z-index: 100;
  pointer-events: auto;
  overflow: hidden;
  min-height: 60px; /* Ensure at least video height */
}

.footer-jelly-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 60px; /* Short height for the video */
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.footer-jelly-bg video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  min-width: 100vw;
  min-height: 60px;
  display: block;
}

.footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 60px; /* Match video height */
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-overlay a {
  text-decoration: none;
  color: black;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-overlay a:hover {
  opacity: 1;
}

@media (max-width: 700px) {
  .footer-overlay {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .footer-jelly-bg,
  .footer__content {
    min-height: 38px;
    height: 38px;
  }
  .footer-jelly-bg {
    height: 38px;
  }
  .footer__links {
    gap: 1rem;
  }
}.footer-overlay {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100vw;
  background: transparent;
  color: black;
  text-align: center;
  padding: 0;
  font-family: 'Gibson', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  z-index: 100;
  pointer-events: auto;
  min-height: 60px;
}
@font-face {
  font-family: 'Gibson';
  src: url('{{ "GibsonBold.woff2" | asset_url }}') format('woff2');
  font-weight: bold;
  font-style: normal;
}
/* TEST FADE NAV STYLES */
.fade-test-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.fade-link {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-family: 'Gibson';
  font-weight: bold;
  color: #fff;
  
  text-decoration: none;
  background: none;
  cursor: pointer;
  padding: 0 18px;
  vertical-align: middle;
  overflow: visible;
}
.fade-link-base,
.fade-link-gradient {
  display: block;
  transition: opacity 0.9s cubic-bezier(.4,1,.3,1);
  line-height: 1.1;
  padding: 0;
}
.fade-link-base {
  color: #black;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.fade-link-gradient {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fadeTestAnimate 20s linear infinite;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.fade-link:hover .fade-link-base,
.fade-link:focus .fade-link-base {
  opacity: 0;
}
.fade-link:hover .fade-link-gradient,
.fade-link:focus .fade-link-gradient {
  opacity: 1;
}
@media (max-width: 700px) {
  .fade-test-nav {
    display: none !important;
  }
  
}
@keyframes fadeTestAnimate {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}
.wonder-logo-img {
  max-height: 70px;
  transition: max-height 0.5s cubic-bezier(.4,1,.3,1);
  opacity: .7; /* Try multiply or overlay */
  filter: none;
}

@media (max-width: 700px) {
  .wonder-logo-img {
    max-height: 50px;
  }
  /* When hamburger is visible, make logo a bit bigger */
  .hamburger {
    /* already visible on mobile */
  }
}

@media (max-width: 500px) {
  .wonder-logo-img {
    max-height: 50px;
  }
}

@media (min-width: 701px) {
  .header-row--top {
    margin-bottom: 2rem; /* Add space below logo row */
  }
}
.custom-header {
  position: absolute;
  margin-top: 24px;
  top: 0; left: 0; width: 100vw; 
  z-index: 20;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.header-row {
  width: 100%;
  display: flex;
  align-items: center;
  pointer-events: auto;
}
.header-row--top {
  justify-content: center;
  position: relative;
  height: 4.5rem;
}
.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  flex: 1 1 auto;
  text-align: center;
  z-index: 2;
}
.header-cart {
  position: absolute;
  right: 2rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 2;
  margin-top: 0.5rem;
}
.cart-count {
  background: white;
  color: black;
  border-radius: 50%;
  font-size: 0.9rem;
  padding: 0.2em 0.6em;
  margin-left: 0.3em;
  font-weight: bold;
}
.hamburger {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 101;
  outline: none;
  transition: transform 300ms ease;
    margin-top: 0.5rem;

}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 26px;
  background-color: #fff;
  border-radius: 2px;
  transition: width 200ms ease;
  position: relative;
}
.hamburger span:nth-child(1) {
  width: 80%;
  transition-delay: 200ms;
}
.hamburger span:nth-child(2) {
  width: 100%;
}
.hamburger span:nth-child(3) {
  width: 60%;
  transition-delay: 400ms;
}
.hamburger span:nth-child(4) {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 4px;
  height: 0;
  background: #fff;
  transition: height 400ms, background 400ms;
}

/* Active (toggled) state */
.hamburger.active {
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 400ms;
}
.hamburger.active span:nth-child(1) {
  width: 0;
  transition: 200ms ease;
}
.hamburger.active span:nth-child(3) {
  width: 0;
  transition: 200ms ease;
  transition-delay: 150ms;
}
.hamburger.active span:nth-child(4) {
  height: 60px;
  transition: height 200ms ease;
  transition-delay: 200ms;
}

/* Show hamburger on mobile only */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }
}
@media (min-width: 701px) {
  .hamburger {
    display: none !important;
  }
}
.header-row--bottom {
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.5rem;
  pointer-events: auto;
}

.header-link {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  line-height: 1.1;
  padding: 0 18px;
  margin: 0;
  font-size: 1.6rem;
  font-family: 'Gibson';
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: none;
  cursor: pointer;
  overflow: visible;
  transition: color 0.7s cubic-bezier(.4,2.3,.3,1);
}

.header-link-gradient {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: inherit;
  text-align: inherit;
  background: linear-gradient(90deg, #ff0000, #ffff00, #ff00f3, #0033ff, #ff00c4, #ff0000);
  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: animate 20s linear infinite;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,2.3,.3,1);
}

.header-link:hover .header-link-gradient,
.header-link:focus .header-link-gradient {
  opacity: 1;
}

.header-link:hover,
.header-link:focus {
  color: transparent; /* Hide white text when gradient is visible */
}


  @keyframes animate {
    0% {
      background-position: 0%;
    }
    100% {
      background-position: 400%;
    }
  }
@media (max-width: 700px) {
  .mobile-menu-content .header-link {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}

.header-link-m {
   display: inline-block;
  position: relative;
  vertical-align: middle;
  line-height: 1.1;
  padding: 0 18px;
  margin: 0;
  font-size: 3rem;
  font-family: 'Gibson';
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: none;
  cursor: pointer;
  overflow: visible;
    transition:
    color 0.7s cubic-bezier(.4,2.3,.3,1) 0.25s, /* delay color return */
    -webkit-text-fill-color 0.7s cubic-bezier(.4,2.3,.3,1) 0.25s;
}
/* Responsive styles */
@media (max-width: 900px) {
  .header-row--bottom {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .custom-header {
    align-items: stretch;
  }
  .header-row--top {
    height: 4rem;
    justify-content: center;
  }
  .header-logo {
    font-size: 1.5rem;
    text-align: center;
    flex: 1 1 auto;
  }
  .header-cart {
    right: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .header-row--bottom {
    display: none !important;
  }
  .mobile-menu-overlay {
    display: block;
  }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(10, 10, 20, 0.92);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,2.3,.3,1);
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInMenu 0.35s;
}
.mobile-menu-overlay.fading-out {
  display: block;
  opacity: 0;
  pointer-events: none;
  animation: fadeOutMenu 0.35s;
}
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutMenu {
  from { opacity: 1; }
  to { opacity: 0; }
}
.mobile-menu-content {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.mobile-menu-content .header-link {
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s;
}


.header-cart {
  position: relative;
}
.header-cart .cart-gradient-overlay {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,2.3,.3,1);
}
.header-cart:hover .cart-gradient-overlay,
.header-cart:focus .cart-gradient-overlay {
  opacity: 1;
}

.header-row--top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
}

.header-logo {
  flex: 0 1 auto;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-cart {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 2;
  margin-top: 0;
}

.hamburger {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  margin-top: 0;
}
.header-link {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  transition: color 0.3s cubic-bezier(.4,2.3,.3,1), -webkit-text-fill-color 0.3s cubic-bezier(.4,2.3,.3,1);
}
.header-link-gradient {
  /* Gradient is hidden by default */
  opacity: 0;
  pointer-events: none;
}.header-link:hover,
.header-link:focus {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.header-link:hover .header-link-gradient,
.header-link:focus .header-link-gradient {
  opacity: 1;
  background: linear-gradient(90deg,
        #3a1c3a,
    #5a234a,
    #2a2359,
    #1a3a66,
    #1a665a,
    #3a1c3a
  );
  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: animate 20s linear infinite;
  transition: opacity 0.7s cubic-bezier(.4,2.3,.3,1), background 0.3s cubic-bezier(.4,2.3,.3,1);
}
@keyframes mobileMenuGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutMenu {
  from { opacity: 1; }
  to { opacity: 0; }
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg,
    #3a1c3a,
    #5a234a,
    #2a2359,
    #1a3a66,
    #1a665a,
    #3a1c3a
  );
  background-size: 400% 400%;
  background-position: 0% 50%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.mobile-menu-overlay.active {
  display: block;
  pointer-events: auto;
  animation: fadeInMenu 0.35s, mobileMenuGradient 20s linear infinite;
  opacity: 1;
}

.mobile-menu-overlay.fading-out {
  display: block;
  pointer-events: none;
  animation: fadeOutMenu 0.35s, mobileMenuGradient 20s linear infinite;
  opacity: 0;
}body.menu-open .hamburger {
  display: flex !important;
  z-index: 101;
}.header-link {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transition: color 0.7s cubic-bezier(.4,2.3,.3,1), -webkit-text-fill-color 0.7s cubic-bezier(.4,2.3,.3,1);
}
.header-link-gradient {
  opacity: 0 !important;
  transition: opacity 0.7s cubic-bezier(.4,2.3,.3,1) !important;
}
.header-link:hover .header-link-gradient,
.header-link:focus .header-link-gradient {
  opacity: 1 !important;
}
.header-link:hover,
.header-link:focus {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.fade-link {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-family: 'Gibson' ;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: none;
  cursor: pointer;
  padding: 0 18px;
  vertical-align: middle;
  overflow: visible;
}
.fade-link-base,
.fade-link-gradient,
.fade-link-dark {
  display: block;
  line-height: 1.1;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: opacity 0.9s cubic-bezier(.4,1,.3,1);
}
.fade-link-base {
  color: #fff;
  opacity: 1;
  pointer-events: auto;
}
.fade-link-gradient,
.fade-link-dark {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.fade-link-gradient {
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fadeTestAnimate 20s linear infinite;
  transition: opacity 0.9s cubic-bezier(.4,1,.3,1);
}
.fade-link-dark {
  background: linear-gradient(90deg,rgba(30,30,30,0.7),rgba(80,80,80,0.7));
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  transition: opacity 0.18s cubic-bezier(.4,1,.3,1); /* Fast fade out */
  z-index: 3;
}

.fade-link:hover .fade-link-base,
.fade-link:focus .fade-link-base {
  opacity: 0;
}
.fade-link:hover .fade-link-gradient,
.fade-link:focus .fade-link-gradient {
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(.4,1,.3,1);
}
.fade-link:hover .fade-link-dark,
.fade-link:focus .fade-link-dark {
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(.4,1,.3,1); /* Slower fade in */
}
.fade-link:not(:hover) .fade-link-dark {
  transition: opacity 0.3s cubic-bezier(.4,1,.3,1); /* Fast fade out */
}

@keyframes fadeTestAnimate {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}
.fade-test-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0rem; /* Lower this value to move up */
  position: relative;
  top: -1.2rem;        /* Add or increase this negative value to move up further */
}.fade-link.active-link .fade-link-base {
  opacity: 0;
}
.fade-link.active-link .fade-link-gradient {
  opacity: 1;
}

/* Fade active link when hovering others */
.fade-test-nav:hover .active-link .fade-link-gradient {
  opacity: 0.4; /* dimmed when hovering the nav */
  transition: opacity 0.4s ease;
}
.fade-test-nav:hover .active-link:hover .fade-link-gradient {
  opacity: 1; /* full opacity when hovering the active link itself */
}

/* Mobile menu active styles */
.mobile-menu-content .header-link-m.active-link {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fadeTestAnimate 20s linear infinite;
}/* Active link styles - show gradient with grey overlay by default */
.fade-link.active-link .fade-link-base {
  opacity: 0; /* Hide base white text */
}

.fade-link.active-link .fade-link-gradient {
  opacity: 1; /* Show gradient */
}

.fade-link.active-link .fade-link-dark {
  opacity: 0.65; /* Show grey overlay on active links */
  transition: opacity 0.5s cubic-bezier(.4,1,.3,1);
}

/* On hover, fade out the grey overlay */
.fade-link.active-link:hover .fade-link-dark {
  opacity: 0; /* Hide overlay on hover */
  transition-duration: 0.18s; /* Fast fade out */
}

/* Fix previous hover styles that might interfere */
.fade-test-nav:hover .active-link .fade-link-gradient {
  opacity: 1; /* Keep gradient visible */
  transition: opacity 0.4s ease;
}

/* Mobile menu active styles */
.mobile-menu-content .header-link-m.active-link {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(90deg,#ff0000,#ffff00,#ff00f3,#0033ff,#ff00c4,#ff0000);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fadeTestAnimate 20s linear infinite;
  position: relative;
}

/* Add grey overlay for mobile active links too */
.mobile-menu-content .header-link-m.active-link::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg,rgba(30,30,30,0.55),rgba(80,80,80,0.55));
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.25;
  transition: opacity 0.5s cubic-bezier(.4,1,.3,1);
}

.mobile-menu-content .header-link-m.active-link:hover::after {
  opacity: 0;
  transition-duration: 0.18s;
}.mobile-menu-content {
  height: 100vh;
  width: 100vw;
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Only show when menu is active */
.mobile-menu-overlay.active .mobile-menu-content {
  display: flex;
  opacity: 1;
}.hamburger {
  width: 38px;  /* or your desired width */
  height: 32px; /* adjust height as needed */
}
.hamburger span {
  width: 38px;  /* match the .hamburger width */
}
.hamburger span:nth-child(1) { width: 80%; }
.hamburger span:nth-child(2) { width: 100%; }
.hamburger span:nth-child(3) { width: 60%; }

.center-logo-img {
  width: 54vw;
  max-width: 600px;
  min-width: 400px;
  height: auto;
  opacity: 0.7;
  mix-blend-mode: lighten;
  filter: blur(1px) saturate(1.8) brightness(1.1) drop-shadow(0 2px 16px rgba(0,0,0,0.12));
  margin-bottom: 3rem;
  margin-top: 0;
  display: block !important;
  transition: max-width 0.5s cubic-bezier(.4,1,.3,1), margin 0.3s;
  
} .logo-blur-mask {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54vw;
  max-width: 600px;
  min-width: 400px;
  height: 150px;
  z-index: 2;
  /* Only blur the video behind */
  backdrop-filter: blur(24px) saturate(2.2);
  -webkit-backdrop-filter: blur(24px) saturate(2.2);
  /* Mask to logo shape (SVG or PNG) */
  mask-image: url('{{ "wonderlogo.png" | asset_url }}');
-webkit-mask-image: url('{{ "wonderlogo.png" | asset_url }}');mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background: transparent;
}.logo-blur-mask {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54vw;
  max-width: 600px;
  min-width: 400px;
  height: 150px;
  z-index: 2;
  /* Much darker background for better visibility */
  background: rgba(255,255,255,0.18);
  /* Stronger blur effect */
  backdrop-filter: blur(32px) saturate(2.6) brightness(0.9);
  -webkit-backdrop-filter: blur(32px) saturate(2.6) brightness(0.9);
  /* Mask to logo shape */
  mask-image: url('{{ "wonderlogo.png" | asset_url }}');
  -webkit-mask-image: url('{{ "wonderlogo.png" | asset_url }}');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  /* Remove the margin-top adjustment */
  margin: 0;
  /* Add subtle shadow for depth */
  box-shadow: 0 0 60px rgba(0,0,0,0.15);
}

/* Hide the original PNG logo */
.center-logo-img {
  opacity: 0;
  visibility: hidden;
}.logo-blur-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 4rem;
  width: 65vw; /* Increased from 54vw */
  max-width: 300px; /* Increased from 600px */
  min-width: 200px; /* Increased from 400px */
  height: 180px; /* Increased from 150px */
  margin-bottom: 4rem; /* Added bottom margin */
  z-index: 2;
  /* Darker background for better visibility
  background: rgba(10,10,15,0.55);
  */
  background: rgba(120, 120, 120, 0.25); /* Increased from rgba(82, 80, 80, 0.18) */
  /* Adjusted blur for brighter effect */
  backdrop-filter: blur(22px) saturate(2.6) brightness(1.2); /* Increased brightness from 0.7 to 1.2 */
  -webkit-backdrop-filter: blur(22px) saturate(2.6) brightness(1.2);
  /* Mask to logo shape */

  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  box-shadow: 0 0 60px rgba(0,0,0,0.15);
  
}@media (max-width: 700px) {
  .logo-blur-mask {
  width: 35vw;

  top: 3rem;
}
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }