/** Shopify CDN: Minification failed

Line 406:30 Expected "}" to go with "{"

**/
/* ==========================================================================
   JS Silk Boutique London — luxury boutique theme
   Design tokens are exposed as CSS variables and driven by theme settings.
   ========================================================================== */

:root {
  --ivory: #FBF9F5;
  --background: var(--ivory);
  --surface: #F4EFE7;
  --foreground: #2E2A26;
  --muted: #8A8178;
  --border: #E5DED2;
  --primary: #4A4139;
  --primary-foreground: #FBF9F5;
  --gold: #B08D57;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 2px;
  --page: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--background); padding: .75rem 1rem; }

.page { max-width: var(--page); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden; }
.section--tint { background: var(--surface); }
.eyebrow {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .26em;
  color: var(--muted); margin-bottom: .9rem;
}
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); margin: .9rem 0 0; }
.muted { color: var(--muted); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border: 1px solid var(--primary); background: var(--primary);
  color: var(--primary-foreground); border-radius: var(--radius); cursor: pointer;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 500;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.btn:hover { background: #35302a; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--foreground); border-color: var(--foreground); }
.btn--ghost:hover { background: var(--foreground); color: var(--primary-foreground); }
.btn--light { background: var(--background); color: var(--foreground); border-color: var(--background); }
.btn--full { width: 100%; }
.link-underline { border-bottom: 1px solid currentColor; padding-bottom: 2px; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }

/* --- Header --- */
.header { border-bottom: 1px solid var(--border); background: var(--background); position: sticky; top: 0; z-index: 40; }
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; }
.header__logo { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: .04em; }
.header__logo img { max-height: 46px; width: auto; }
.header__nav { display: none; gap: 1.75rem; }
.header__nav a { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--foreground); }
.header__nav a:hover { color: var(--gold); }
.header__actions { display: flex; align-items: center; gap: .35rem; }
.icon-btn { background: none; border: 0; padding: .5rem; cursor: pointer; color: var(--foreground); position: relative; }
.cart-count {
  position: absolute; top: 0; right: 0; min-width: 17px; height: 17px; border-radius: 999px;
  background: var(--gold); color: #fff; font-size: .62rem; line-height: 17px; text-align: center;
}
.header__mobile-nav { display: block; border-top: 1px solid var(--border); padding: .5rem 0 1rem; }
.header__mobile-nav a { display: block; padding: .6rem 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; }
.header__mobile-nav[hidden] { display: none; }
@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__menu-toggle, .header__mobile-nav { display: none !important; }
}

/* --- Announcement / marquee --- */
.announcement { background: var(--primary); color: var(--primary-foreground); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; text-align: center; padding: .6rem 1rem; }
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; padding: .9rem 0; }
.marquee__track { display: flex; width: max-content; animation: marquee var(--marquee-speed, 38s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 1.6rem; padding: 0 1.6rem; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee__dot { width: 4px; height: 4px; border-radius: 999px; background: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --- Hero --- */
.hero { position: relative; min-height: clamp(420px, 68vh, 680px); display: grid; align-items: center; background: var(--surface); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,14,.62), rgba(20,17,14,.18)); }
.hero__inner { position: relative; padding: clamp(3rem, 8vw, 6rem) 0; max-width: 640px; }
.hero--light .hero__inner { color: #FBF9F5; }
.hero--light .eyebrow { color: rgba(251,249,245,.8); }
.hero__inner p { margin: 1.1rem 0 1.9rem; font-size: 1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Grids --- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(1, 1fr); }
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Product card --- */
.card { position: relative; }
.card__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface); border-radius: var(--radius); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge { position: absolute; top: .75rem; left: .75rem; background: var(--background); color: var(--foreground); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; padding: .35rem .6rem; }
.card__quick { position: absolute; left: .75rem; right: .75rem; bottom: .75rem; opacity: 0; transform: translateY(6px); transition: all .3s ease; }
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__body { padding: .9rem .25rem 0; text-align: center; }
.card__title { font-family: var(--font-serif); font-size: 1.05rem; }
.card__price { margin: .3rem 0 0; font-size: .85rem; letter-spacing: .04em; }
.card__price s { color: var(--muted); margin-right: .4rem; }
@media (max-width: 699px) { .card__quick { opacity: 1; transform: none; position: static; margin-top: .75rem; } }

/* --- Collection tiles --- */
.tile { position: relative; display: block; overflow: hidden; border-radius: var(--radius); }
.tile img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; transition: transform .8s ease; }
.tile:hover img { transform: scale(1.04); }
.tile__caption { position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.25rem; background: linear-gradient(transparent, rgba(20,17,14,.7)); color: #FBF9F5; }
.tile__caption h3 { font-size: 1.35rem; }
.tile__caption span { font-size: .66rem; text-transform: uppercase; letter-spacing: .2em; opacity: .85; }
.tile--empty { display: grid; place-items: center; aspect-ratio: 4/5; background: var(--surface); color: var(--muted); }

/* --- Highlights --- */
.highlight { text-align: center; padding: 1.5rem 1rem; }
.highlight svg { margin: 0 auto .9rem; color: var(--gold); }
.highlight h3 { font-size: 1.05rem; }
.highlight p { color: var(--muted); font-size: .88rem; margin: .5rem 0 0; }

/* --- Testimonials --- */
.review { border: 1px solid var(--border); background: var(--background); padding: 1.75rem; border-radius: var(--radius); }
.stars { display: flex; gap: .2rem; color: var(--gold); margin-bottom: .9rem; }
.review blockquote { margin: 0; font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.5; }
.review footer { margin-top: 1.1rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }

/* --- Bespoke / split feature --- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.checks { list-style: none; margin: 1.5rem 0; padding: 0; }
.checks li { display: flex; gap: .75rem; padding: .4rem 0; color: var(--muted); font-size: .92rem; }
.checks svg { color: var(--gold); flex: none; margin-top: .3rem; }
.note { border-left: 2px solid var(--gold); padding: .25rem 0 .25rem 1rem; font-size: .88rem; color: var(--muted); }

/* --- Floral decoration --- */
.floral { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .05; color: var(--gold); }
.floral svg { width: 100%; height: 100%; }
.section > .page { position: relative; z-index: 1; }
.floral-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); opacity: .35; padding: 2.5rem 0; }
.floral-divider span { height: 1px; width: min(120px, 20vw); background: currentColor; }

/* --- Product page --- */
.product { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding: 2.5rem 0 4rem; }
@media (min-width: 900px) { .product { grid-template-columns: 1.1fr 1fr; } }
.breadcrumbs { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 1.25rem 0 0; }
.breadcrumbs a:hover { color: var(--foreground); }
.gallery__main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--surface); }
.gallery__thumbs { display: flex; gap: .6rem; margin-top: .6rem; flex-wrap: wrap; }
.gallery__thumbs button { border: 1px solid var(--border); background: none; padding: 0; width: 72px; cursor: pointer; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--gold); }
.gallery__thumbs img { aspect-ratio: 3/4; object-fit: cover; }
.product__price { font-size: 1.25rem; margin: .75rem 0 1.25rem; }
.product__desc { color: var(--muted); }
.product__desc a { text-decoration: underline; }
.field { display: block; margin-bottom: 1.1rem; }
.field > span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-bottom: .5rem; }
select, input[type='number'], input[type='search'] {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--border); background: var(--background);
  color: var(--foreground); border-radius: var(--radius); font: inherit;
}
.trust-row { display: grid; gap: .75rem; margin: 1.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--border); }
.trust-row div { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.trust-row svg { color: var(--gold); flex: none; margin-top: .15rem; }

/* --- Accordion --- */
.accordion { margin-top: 2rem; border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0; display: flex; align-items: center; gap: .75rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 500;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev { margin-left: auto; transition: transform .25s ease; color: var(--muted); }
.accordion details[open] summary .chev { transform: rotate(180deg); }
.accordion .accordion__body { padding: 0 0 1.4rem; color: var(--muted); font-size: .9rem; }
.accordion .accordion__body p { margin: 0 0 .75rem; }

/* --- Cart drawer --- */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer[aria-hidden='false'] { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(20,17,14,.45); opacity: 0; transition: opacity .3s ease; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--background); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s ease;
}
.drawer[aria-hidden='false'] .drawer__scrim { opacity: 1; }
.drawer[aria-hidden='false'] .drawer__panel { transform: none; }
.drawer__head, .drawer__foot { padding: 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.drawer__foot { border-bottom: 0; border-top: 1px solid var(--border); display: block; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.line-item { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.line-item img { aspect-ratio: 3/4; object-fit: cover; }
.line-item__title { font-family: var(--font-serif); font-size: 1rem; }
.line-item__meta { font-size: .78rem; color: var(--muted); }
.line-item form { display: inline; }
.line-item button.remove { background: none; border: 0; padding: 0; color: var(--muted); font-size: .72rem; text-decoration: underline; cursor: pointer; }
.subtotal { display: flex; justify-content: space-between; font-size: .95rem; margin-bottom: .5rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--border); background: var(--background); padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h2 { font-family: var(--font-sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 500; }
.footer ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.footer li { padding: .3rem 0; color: var(--muted); font-size: .88rem; display: flex; gap: .6rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--foreground); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .75rem; color: var(--muted); }

/* --- Misc --- */
.pagination { display: flex; gap: .75rem; justify-content: center; padding: 2.5rem 0; font-size: .8rem; }
.pagination a, .pagination span { padding: .4rem .7rem; border: 1px solid var(--border); }
.rte h2, .rte h3 { margin: 2rem 0 .75rem; }
.rte ul { padding-left: 1.2rem; }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
/* Fix product title overlap and spacing */
.card__content,
.card-information,
.product-card__info {
  padding-top: 14px !important;
  padding-bottom: 32px !important;
}

.card__heading,
.product-card__title,
.card-information__text {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  margin-bottom: 10px !important;
}

.product-grid,
.collection__product-grid,
.grid {
  row-gap: 40px !important;
}

.card-wrapper,
.product-card-wrapper,
.card,
.grid__item {
  height: auto !important;
  overflow: visible !important;
}

/* Show complete product titles and prevent overlap */
.card__heading,
.card__heading a,
.card-information__text,
.product-card__title,
.product-title,
.product-card a {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  line-clamp: unset !important;
  line-height: 1.35 !important;
}

/* Give the title and price enough room */
.card__content,
.card-information,
.product-card__info {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding-top: 14px !important;
  padding-bottom: 35px !important;
}

/* Prevent the next product from covering the title */
.card-wrapper,
.product-card-wrapper,
.grid__item {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  margin-bottom: 35px !important;
}

/* Increase space between product rows */
.product-grid,
.collection__product-grid,
.grid {
  row-gap: 45px !important;
}

/* FINAL FIX: stop product cards and titles overlapping */

.product-grid,
.collection__product-grid,
ul.product-grid,
.grid {
  grid-auto-rows: auto !important;
  align-items: start !important;
  row-gap: 55px !important;
}

.product-grid > *,
.collection__product-grid > *,
.grid__item {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  align-self: start !important;
}

.card-wrapper,
.product-card-wrapper,
.card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.card__content,
.card-information,
.product-card__info {
  position: static !important;
  display: block !important;
  height: auto !important;
  min-height: 85px !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 14px 8px 28px !important;
}

.card__heading,
.card__heading a,
.card-information__text,
.product-card__title,
.product-title {
  position: static !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;