/** Shopify CDN: Minification failed

Line 14:13 Expected identifier but found whitespace
Line 14:15 Unexpected "{"
Line 14:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-collection-grid (INDEX:17) */
.custom-collection-wrap {
  background: {{ section.settings.background }};
  padding: 0 20px;
}

.custom-collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
  margin-bottom: 5rem;
}

@media (min-width: 750px) {
  .custom-collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.collection-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.3s ease;
}

.collection-card:hover .collection-card__overlay {
  background: rgba(0, 0, 0, 0.34);
}

.collection-card__content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.collection-card__title {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.collection-card__title::after {
  content: "→";
  font-size: .95em;
  transition: transform .3s ease;
}

.collection-card:hover .collection-card__title::after {
  transform: translateX(4px);
}

.collection-card__subtitle {
  font-size: 0.95rem;
  margin-top: 0.35rem;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.22,.61,.36,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-collection-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  color: #F26D50;
}

/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 749px) {

  .custom-collection-wrap {
    padding: 0 30px;
    padding-bottom: 5rem;
  }

  .custom-collection-title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -.03em;
  }

  .custom-collection-grid {
    gap: 1rem;
    padding: 1rem 0 3rem;
    margin-bottom: 0;
  }

  .collection-card {
    width: 100%;
    max-width: none;
    border-radius: 0 !important;
  }

  .collection-card img {
    border-radius: 0 !important;
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
  }

  .collection-card__overlay {
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.48) 0%,
        rgba(0,0,0,.18) 45%,
        rgba(0,0,0,0) 100%
      );
  }

  .collection-card__content {
    left: 1.25rem;
    bottom: 1.15rem;
  }

  .collection-card__title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
  }

  .collection-card__title::after {
    font-size: .9em;
  }

  .collection-card__subtitle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-card img,
  .fade-up,
  .collection-card__title::after {
    transition: none !important;
  }
}
/* END_SECTION:custom-collection-grid */

/* START_SECTION:hero-slideshow (INDEX:30) */
/* =========================================
   HERO SLIDER BASE
========================================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.85s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* =========================================
   DESKTOP LAYOUT
========================================= */

.hero-slide__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: left;
}

.hero-slide__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-slide__title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* =========================================
   BUTTON STYLE
========================================= */

.hero-slide__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide__button::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.hero-slide__button:hover {
  background: #fff;
  color: #F26D50;
  transform: translateY(-2px);
}

.hero-slide__button:hover::after {
  transform: translateX(5px);
}

/* Button variants */
.hero-slide__button--primary {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.hero-slide__button--primary:hover {
  background: #fff;
  color: #000;
}

.hero-slide__button--secondary {
  border-color: #000;
  background: #fff;
  color: #000;
}

.hero-slide__button--secondary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* =========================================
   CARD (OVERLAY IMAGE) — BASE
========================================= */

.hero-slide__image-overlay {
  max-width: 350px;
  height: auto;
  transition: all 0.4s ease;
}

/* Hover effect (desktop) */
.hero-slide__content-link:hover .hero-slide__image-overlay {
  transform: scale(1.05);
}

/* =========================================
   DOTS NAVIGATION
========================================= */

.hero-slider__dots {
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 4;
}

.hero-slider__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-slider__dot.active {
  opacity: 1;
}

/* =========================================
   MOBILE ONLY — FIX CARD + TITLE OVERLAP
========================================= */
@media (max-width: 768px) {
  .hero-slide {
    min-height: 76vh;
    padding: 0;
    background-position: center center;
  }

  .hero-slide__inner {
    min-height: 76vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 20px 72px;
  }

  .hero-slide__image-overlay {
    order: 1;
    display: block;
    width: clamp(170px, 58vw, 260px);
    max-width: 260px;
    height: auto;
    margin: 0 auto 22px;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0,0,0,.22));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .hero-slide__content {
    order: 2;
    width: 100%;
    max-width: 330px;
    align-items: center;
    text-align: center;
  }

  .hero-slide__title {
    font-size: var(--mobile-size) !important;
    max-width: 330px;
    margin: 0 auto 14px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .hero-slide__button {
    order: 3;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-slider__dots {
    text-align: center;
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    z-index: 4;
  }

  .hero-slider__dot {
    width: 6px;
    height: 6px;
    margin: 0 4px;
    opacity: .45;
    transition: opacity .25s ease, transform .25s ease;
  }

  .hero-slider__dot.active {
    opacity: 1;
    transform: scale(1.25);
  }

  .hero-slide__title,
  .hero-slide__image-overlay,
  .hero-slide__button {
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity .75s ease,
      transform .75s cubic-bezier(.22,.61,.36,1);
  }

  .hero-slide__image-overlay {
    transform: translateX(20px) scale(.98);
  }

  .hero-slide__title.is-visible,
  .hero-slide__button.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .hero-slide__image-overlay.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .hero-slide__title {
    transition-delay: 0s;
  }

  .hero-slide__button {
    transition-delay: .12s;
  }

  .hero-slide__image-overlay {
    transition-delay: .22s;
  }
}

/* Small iPhone safety */
@media (max-width: 390px) {
  .hero-slide {
    min-height: 74vh;
  }

  .hero-slide__inner {
    min-height: 74vh;
    padding: 40px 18px 66px;
  }

  .hero-slide__title {
    font-size: min(var(--mobile-size), 34px) !important;
    max-width: 300px;
    line-height: 1.08;
  }

  /* Tablet / large phones */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-slide__image-overlay {
    max-width: clamp(260px, 34vw, 340px);
  }

  .hero-slide__inner {
    padding: 0 2rem;
    gap: 2rem;
  }
}

/* Small phones + Messenger browser safety */
@media (max-width: 430px) {
  .hero-slide__image-overlay {
    width: clamp(155px, 54vw, 215px);
    max-width: 215px;
    margin-bottom: 18px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-slide__image-overlay {
    width: clamp(145px, 50vw, 185px);
    max-width: 185px;
  }
}
}
/* END_SECTION:hero-slideshow */