/** Shopify CDN: Minification failed

Line 117:11 Unexpected "{"
Line 117:16 Expected ":"
Line 118:11 Unexpected "{"
Line 118:16 Expected ":"

**/
/* =========================================================
   WAC Landing Index — Countries/Passions
   Structure:
   1) Root & container
   2) Header (H1/intro/pills)
   3) Country/Passion column card
   4) Rows of 3 (mobile swipe → desktop grid)
   5) Featured row (product/collection)
   6) Small typography helpers
   ========================================================= */


.only-mobile { display: none; }
.only-desktop { display: block; }

@media (max-width: 767px){
  .only-mobile { display: block !important; }
  .only-desktop { display: none !important; }
}


/* ============== 1) Root & container ============== */
.wac-index{
  --r:16px;
  --sh:0 16px 40px rgba(0,0,0,.12);
  --line:rgba(0,0,0,.06);
  --muted:#6b7280;
  max-width:1160px;
  margin:0 auto;
  padding:0 16px;
}

.wac-index__subhead{
  margin: 5px 0 -20px;  /* ↑ add more space above and below */
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.3;
  font-weight: 700;
}


/* ===== Header layout ===== */
.wac-landing-header__inner{
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;   /* ~66% : ~34% */
  align-items: center;
  column-gap: 24px;
}

.wac-landing-header__left{ min-width: 0; }  /* allow H1 to use its column */
.wac-landing-header__right{ justify-self: end; }

@media (max-width: 767px){
  .wac-landing-header__inner{
    grid-template-columns: 1fr;      /* stack on mobile */
    row-gap: 16px;
  }
  .wac-landing-header__right{ justify-self: start; }
}

/* pills container */
.wac-passions__labels{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}
.wac-landing-header__right {
  background-color: #fff8ef;   /* same as border */
  border: 10px solid #fff8ef;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  padding: 8px;
  margin-top:28px;
  padding-left: 15px
}
/* Bigger title inside the passions panel */
.wac-landing-header__right .wac-col__group-title.wac-pill-group-heading{
  font-size: 14px !important;   /* try 24–28px if you want larger */
  line-height: 1.2 !important;
  font-weight: 800 !important;
  margin-bottom: 24px;
  margin-top: 0px;
}

/*See all passions cta*/
/* wrapper handles positioning */
.top-right-cta-wrap {
  display: flex;
  justify-content: flex-end;  /* moves the whole button to the right */
  margin-top: 10px;
}
top-right-cta-countries{
  margin-top: 30px !important;
}

/* button handles size */
.top-right-cta {
  font-size: 13px;
  padding: 4px 14px;
  line-height: 1.6;
  border-radius: 999px;
  min-height: auto !important;
  height: auto !important;
}



/* ===== Passion labels ===== */
.sa-wrap--{{ sid }} .passion-labels{ margin-top:8px; display:flex; flex-wrap:wrap; gap:6px; }
.sa-wrap--{{ sid }} .passion-chip{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:500;
  color:var(--ink);
  border:1px solid currentColor;
  background:transparent;
  opacity:.9;
}



/* === Landing-only pills (overrides without deleting other rules) === */

/* shared container spacing (header + cards) */
section.wac-landing-index .wac-passions__labels{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

/* unified chip look */
section.wac-landing-index .passion-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  background:#fff !important;           /* beat any transparent backgrounds */
  border:1px solid currentColor !important;
  border-radius:9999px;
  text-decoration:none;
  line-height:1.2;
  font-weight:600;
}

/* slightly smaller inside country cards */
section.wac-landing-index .wac-col .passion-chip{
  padding:5px 10px;
  border-width:1.25px;
  font-size:13px;
}

/*========== Top right heading for passions index page ========*/

/* Override passion-chip style for countries */
.wac-country-chips .passion-chip {
  background: #f9f9f9 !important;   /* light grey background */
  border: 1px solid #ccc !important;
  color: #333 !important;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.wac-country-chips .passion-chip:hover {
  background: #ececec !important;
}

.button button--primary top-right-cta {
  margin-top: 40px;
}

/* ============== 3) Country/Passion column card ============== */
.wac-col{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--sh);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  padding:0; /* let image go edge-to-edge; content pads below */
  margin-top: 30px;
}

/* Top media */
.wac-col__media{
  display:block;
  background:#f2f2f2;
  overflow:hidden;
  border-radius:calc(var(--r) - 2px) calc(var(--r) - 2px) 0 0;
  isolation:isolate;
}
.wac-col__img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:16/10;          /* larger, cinematic feel */
  object-fit:cover;
  transform:scale(1.0001);
  transition:transform .35s ease;
}

/* Content blocks */
.wac-col__title,
.wac-col__group{ padding:6px 8px 0; }

.wac-col__title {
  margin-top:10px !important;
}

.wac-col__title{
  margin:0;
  font-size:clamp(18px, 2.2vw, 20px);
  line-height:1.25;
  font-weight:800;
  letter-spacing:.1px;
  margin-bottom: 10px;
}
.wac-col__title a{ text-decoration:none; color:inherit; }
.wac-col__title a:hover{ text-decoration:underline; }

.wac-col__group{ margin-top:6px; }
.wac-col__group-title{
  font-weight:800;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--muted);
  margin:-6px 0 6px;
}


.wac-col__list{
  list-style:none;
  padding:0;
  margin:0 0 10px;
  display:grid;
  gap:6px;
}
.wac-col__item + .wac-col__item{ margin-top:0; }
.wac-col__item a{
  text-decoration:none;
  color:inherit;
  display:block;
  padding:6px 8px;
  border-radius:10px;
  transition:background-color .15s ease;
    font-size:14px;
  line-height:1.35;
}
.wac-col__item a:hover{ background:rgba(0,0,0,.035); }

.wac-passions__labels{
  margin-bottom: 10px;
}

/* Passion pills section sits at the bottom for equal card heights */
.wac-passions{ padding:0 16px 14px; margin-top:auto; }

/* Hover affordance */
.wac-col:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.16);
  border-color:rgba(0,0,0,.08);
}
.wac-col:hover .wac-col__img{ transform:scale(1.03); }


/* Favourites: smaller link text */
.wac-index .wac-col__list--numbered .wac-col__item a{
  font-size:14px;
  line-height:1.35;
}

/* ===== Numbered baged before each item (no counters/logic) ====== */
.wac-index .wac-col__list--numbered .wac-col__item a{
  position: relative;
  padding-left: 38px;               /* room for badge */
}
.wac-index .wac-col__list--numbered .wac-col__item a::before{
  content: counter(rank);
  position: absolute;
  left: 4px;
  top: 55%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 9999px;
  border: 1px solid var(--muted, #6b7280);
  background: #fff;
  color: var(--muted, #6b7280);
  font-weight: 700;
  font-size: 12px; line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

/* keep list edge aligned with "Top passions" */
.wac-index .wac-col__list--numbered{ padding:0; margin:0 0 10px; }

.wac-index .wac-col__list--numbered{ counter-reset: rank; }
.wac-index .wac-col__list--numbered .wac-col__item{ counter-increment: rank; }

/* ==== see all buttons ==== */

/* wrapper aligns the button */
.wac-col__see-all {
  padding: 12px 16px 16px;
  display: flex;
  justify-content: center;   /* center the button horizontally */
}

/* style the button itself */
.wac-col__see-all .button.button--primary {
  font-size: 14px;
  padding: 10px 20px;         /* smaller vertical size */
  border-radius: 999px;      /* keep pill shape */
  line-height: 1.1;
  display: inline-block;     /* make sure it's only as wide as content */
    vertical-align: middle;  /* extra safeguard */
    min-height: auto !important;   /* override theme min-height */
  height: auto !important;       /* force shrink to content */
  margin-bottom: 6px;
}

.wac-col__see-all a{
  font-size:14px;
  font-weight:400;
  text-decoration:none;
  
}
.wac-col__see-all a:hover{ text-decoration:underline; }

.wac-col {
  display: flex;
  flex-direction: column;
}
.wac-col__see-all {
  margin-top: auto;           /* pushes it to the bottom */
  padding: 12px 16px 16px;
  display: flex;
  justify-content: center;
}



/* ============== 4) Rows of 3 (mobile swipe → desktop grid) ============== */

.wac-colwrap {
  margin-bottom:60px;
}

@media (max-width:699px){
  .wac-colwrap{
    display:flex;
    gap:12px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    padding-bottom:4px;
    margin-bottom: -5px;
  }
  .wac-colwrap > .wac-col{
    min-width:82vw;
    scroll-snap-align:start;
  }
}
@media (min-width:700px){
  .wac-colwrap{
    display:grid;
    gap:22px;
    grid-template-columns:repeat(3, minmax(260px, 1fr));
  }
  .wac-colwrap > .wac-col{ min-width:auto; }
}
/* ===========SR polaroid ==============*

/* === keep these wrapper rules as-is === */
.wac-index .wac-feature--full .wac-polaroids,
.wac-index .wac-feature--full .wac-polaroids .xp-track,
.wac-index .wac-feature--full .wac-polaroids .xp{
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  margin-bottom: 0px !important;
  margin-top: 30px !important;
}

/* Desktop split — TOP align items (not center), card will stretch to row height */
@media (min-width: 900px){
  .wac-index .wac-feature--full .wac-polaroids .xp{
    display: grid !important;
    grid-template-columns: 460px minmax(560px, 1fr) !important; /* keep/adjust numbers */
    column-gap: 16px !important;     /* was 24px: brings card closer to image */
    align-items: start !important;    /* top-align both items */
  }
  .wac-index .wac-feature--full .wac-polaroids .xp__polaroid{
    align-self: start !important;     /* keep the photo at natural height */
      position: relative;   /* enable offsets */
    left: 22px;            /* + moves right, − moves left */
    top: 34px;            /* − moves up, + moves down */
  }
}


/* Copy tile — stretch to full row height, NO margins here */
.wac-index .wac-feature--full .wac-polaroids .xp__copy{
  grid-column: auto !important;
  width: 100% !important;
  max-width: none !important;
  max-inline-size: none !important;
  min-width: 0 !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  height: 100% !important;           /* ← ensures full row height */
  display: flex !important;          /* optional: keep internals tidy */
  flex-direction: column !important;
  margin: 0 !important;              /* keep spacing on the container, not the card */
}


/* Inner wrappers shouldn't re-cap the width */
.wac-index .wac-feature--full .wac-polaroids .xp__copy > *,
.wac-index .wac-feature--full .wac-polaroids .xp__copy .rte,
.wac-index .wac-feature--full .wac-polaroids .xp__copy .rte > *{
  width: 100% !important;
  max-width: none !important;
  max-inline-size: none !important;
}

/* Add vertical spacing to the WHOLE feature block instead */
.wac-feature{
  margin: 40px 0 56px;                      /* was 14px 0 */
}


/* Landing → Feature (polaroids): narrow image, wide copy */
@media (min-width:900px){
  /* Left column = just big enough for the polaroid; right column gets the rest */
  .wac-index .wac-feature--full .wac-polaroids .xp{
    display: grid !important;
    grid-template-columns: 340px minmax(0, 1fr) !important; /* 340 ≈ 300 image + frame */
    column-gap: 12px !important;
    align-items: start !important;
  }

  /* Lock the polaroid back to its native size (beats any earlier width:100%) */
  .wac-index .wac-feature--full .wac-polaroids .xp__polaroid{
    width: 300px !important;       /* native card width */
    max-width: 300px !important;
    align-self: start !important;
  }

  /* Let the copy fill the remaining space and the row height */
  .wac-index .wac-feature--full .wac-polaroids .xp__copy{
    min-width: 0 !important;       /* allow text to wrap instead of forcing width */
    align-self: stretch !important;
  }
}

/* Optional: vertical spacing for the whole block (not between image & card) */
.wac-feature{ margin: 40px 0 56px; }


/* === Compact mini cards: square images === */
.wac-mini-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:900px){
  .wac-mini-grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .wac-mini-grid--5{ grid-template-columns:repeat(5,minmax(0,1fr)); }
}
.wac-mini-card{
  display:block;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  overflow:hidden;
  text-decoration:none;
}
.wac-mini-card__media{
  position:relative;
  width:100%;
  aspect-ratio:1/1;             /* square */
  overflow:hidden;
  border-radius:20px 20px 0 0;
}
.wac-mini-card__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.wac-mini-card__title{
  padding:14px 16px;
  font-weight:800;
  line-height:1.2;
  color:var(--color-ink,#3a0f1d);
}
.wac-mini-cta{ margin-top:18px; text-align:center; }
.button--wide{ min-width:260px; }

/* Extra space below the cross-sell strip */
.wac-index__group.wac-index__group--xsell{
  margin-bottom: 42px;   /* adjust to taste */
}




/* ============== 6) Small typography helpers ============== */
.wac-col__title a{ overflow-wrap:anywhere; hyphens:auto; }
/* Thumbs (kept from your original) */
.wac-col__thumbs{ display:grid; grid-template-columns:1fr; gap:10px; }
@media (min-width:900px){ .wac-col__thumbs{ grid-template-columns: repeat(3, 1fr); } }
.wac-thumb{ display:flex; flex-direction:column; gap:6px; text-decoration:none; background:#fff; border-radius:12px; box-shadow: var(--sh); overflow:hidden; }
.wac-thumb__img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/3; }
.wac-thumb__ph{ display:block; width:100%; aspect-ratio:4/3; background:#f2f2f2; }
.wac-thumb__title{ display:block; padding:8px 10px 10px; font-size:.95rem; line-height:1.25; }

/* Toggle (kept) */
.wac-passions__toggle{
  margin-top:8px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  padding:6px 10px;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.wac-passions__labels .is-hidden{ display:none; }

/* Responsive tweaks for smaller screens */
@media (max-width:899.98px){
  .wac-col__img{ aspect-ratio:4/3; }
  .wac-col__title{ font-size:18px; }
}


/* ============= MOBILE ADJUSTMENTS =============*/
/* ---------- utilities ---------- */
.only-mobile { display: none; }
.only-desktop { display: block; }
@media (max-width: 767px){
  .only-mobile { display: block !important; }
  .only-desktop { display: none !important; }
}

/* ---------- MOBILE pills behaviour ---------- */
@media (max-width: 767px){

  /* remove header panel styling so pills flow inline with body */
  .wac-landing-header__right{
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: -25px !important;   /* tighter above pills */
    margin-left: -5px;              /* keep your left adjust */
    margin-bottom: 10px;            /* spacing below */
  }

  /* intro paragraph tighter */
  .wac-landing-intro{
    margin: -10px;                  /* your earlier tweak */
    padding-left: 15px;             /* align with pills */
  }

  /* heading inline with body (mobile only) */
  .wac-landing-header__right .wac-col__group-title.wac-pill-group-heading{
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: inherit !important;
    margin: 8px 0 4px !important;   /* tighter above/below */
  }

  /* collapse to ~2 rows (≈ 6 pills) */
  .wac-passions__labels.is-collapsed{
    max-height: none;
    overflow: hidden;
    margin-top: 16px !important;    /* restore spacing above */
    margin-bottom: 4px !important;  /* tighten below */
  }
  .wac-passions__labels.is-collapsed .passion-link:nth-child(n+7){
    display: none !important;       /* show only first 6 */
  }

  /* Show more link styled as plain text */
  .wac-passions__toggle-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: 6px;               /* sit beside last pill */
    margin-top: 4px;                /* balance row spacing */
    text-decoration: underline;
  }
  .wac-passions__toggle-pill:hover{
    text-decoration: underline;
  }

  /* Ensure Show more always visible while collapsed */
  .wac-passions__labels.is-collapsed .wac-passions__toggle-pill{
    display: inline-flex !important;
  }

  /* hide the CTA (see all) while collapsed */
  .wac-col__group:not(.is-expanded) .top-right-cta-wrap{
    display: none !important;
    margin-top: 36px !important;

  }

  /* bring first card closer so its shadow doesn’t float */
  .wac-col{ margin-top: 10px !important; }   /* was 30px */
}

.wac-col__group.is-expanded .wac-passions__labels{
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}

/* h2 subheading*/
.wac-index__subhead{
  margin: 16x 0 70px !important;  /* ↑ add more space above and below */
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 20px;
}

/* polaroids mobile */
.wac-polaroids{
  margin-top: 40px !important;
  margin-bottom: -35px !important;
}

.wac-passions_labels .wac-country-chips {
  margin-top: 10px !important;
}

.wac-country-chips .passion-chip {

  margin-bottom: -4px;}



@media (max-width: 767px){
  .wac-landing-header__right
  .wac-col__group-title.wac-pill-group-heading.wac-country-heading{
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: inherit !important;
    margin: 8px 0 6px !important;
  }
}


/* Mobile: country chips heading */
@media (max-width: 767px){
  .wac-landing-header__right
  .wac-col__group > .wac-col__group-title.wac-pill-group-heading.wac-country-heading{
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;     /* lighter than the passions heading */
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: inherit !important;
    margin: 14px 0 16px !important;     /* adjust spacing above/below */
  }
}
