/** Shopify CDN: Minification failed

Line 17:2 Unexpected "{"
Line 17:3 Expected identifier but found "%"
Line 17:48 Unexpected "{"
Line 17:49 Expected identifier but found "%"
Line 174:2 Unexpected "{"
Line 174:3 Expected identifier but found "%"
Line 174:63 Unexpected "{"
Line 174:64 Expected identifier but found "%"

**/
/* ── PAGE WRAPPER ───────────────────────────────────────────── */
.sp-pdp {
  background: #f9fafb;
  padding: 20px 28px 15px;
  {% comment %} min-height: calc(100vh - 56px); {% endcomment %}
}

/* ── PRODUCT GRID ───────────────────────────────────────────── */
.sp-pdp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 0 28px;
}

/* ── LEFT: thumbnails + main image ─────────────────────────── */
.sp-pdp__media {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sp-pdp__thumbs-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 78px;
  flex-shrink: 0;
}

.sp-pdp__thumb-arrow {
  width: 78px; height: 28px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #374151;
  transition: all 0.18s; flex-shrink: 0;
}
.sp-pdp__thumb-arrow:hover { background: #e91e8c; border-color: #e91e8c; color: #fff; }
.sp-pdp__thumb-arrow svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

.sp-pdp__thumbs {
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden; max-height: calc(5 * 78px + 4 * 8px);
  padding: 8px 0; flex: 1;
}

.sp-pdp__thumb {
  width: 78px; height: 78px; border-radius: 10px; overflow: hidden;
  border: 2px solid #e5e7eb; background: #f9fafb;
  cursor: pointer; transition: border-color 0.18s; flex-shrink: 0;
}
.sp-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-pdp__thumb.is-active, .sp-pdp__thumb:hover { border-color: #e91e8c; }

.sp-pdp__main-img-wrap {
  flex: 1; background: #ffffff; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1 / 1; display: flex; align-items: center;
  justify-content: center; position: relative;
}
.sp-pdp__main-img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.25s ease;
}
.sp-pdp__main-img.sp-fade { opacity: 0; }

/* ── RIGHT: product info ────────────────────────────────────── */
.sp-pdp__info { display: flex; flex-direction: column; gap: 0; }

.sp-pdp__brand {
  font-size: 13px; font-weight: 600; color: #e91e8c;
  text-decoration: none; margin-bottom: 6px; display: inline-block;
}
.sp-pdp__brand:hover { text-decoration: underline; }

.sp-pdp__title {
  font-size: 26px; font-weight: 700; color: #111827;
  line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.01em;
  margin-top: 0;
}

/* Stars */
.sp-pdp__reviews { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.sp-pdp__stars { display: flex; gap: 2px; }
.sp-pdp__star { width: 16px; height: 16px; fill: #f59e0b; }
.sp-pdp__star--empty { fill: #e5e7eb; }
.sp-pdp__star--half { fill: url(#sp-half-star-gradient); }
.sp-pdp__review-text { font-size: 13px; color: #6b7280; }

/* Price */
.sp-pdp__price-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.sp-pdp__price-now { font-size: 26px; font-weight: 700; color: #111827; }
.sp-pdp__price-was { font-size: 15px; color: #9ca3af; text-decoration: line-through; }
.sp-pdp__price-badge {
  background: #fce7f3; color: #e91e8c; font-size: 12px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
}

/* ── VARIANT PICKER ─────────────────────────────────────────── */
.sp-pdp__variants { margin-bottom: 18px; }

.sp-pdp__variant-group { margin-bottom: 14px; }

.sp-pdp__variant-label {
  font-size: 13px; font-weight: 600; color: #374151;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.sp-pdp__variant-label span { font-weight: 400; color: #6b7280; }

.sp-pdp__swatch-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* Hide the radio input visually — label is the clickable swatch */
.sp-pdp__swatch-input {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
  appearance: none; opacity: 0;
  pointer-events: none;
}

/* Text / size / non-color swatches */
.sp-pdp__swatch {
  min-width: 40px; height: 36px;
  padding: 0 12px; border-radius: 8px;
  border: 1.5px solid #e5e7eb; background: #fff;
  font-size: 13px; font-weight: 500; color: #374151;
  cursor: pointer; transition: all 0.18s; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; user-select: none;
}
.sp-pdp__swatch:hover         { border-color: #e91e8c; color: #e91e8c; }
.sp-pdp__swatch.is-active     { border-color: #e91e8c; background: #fce7f3; color: #e91e8c; font-weight: 700; }
.sp-pdp__swatch.is-unavailable {
  opacity: 0.4; cursor: not-allowed; text-decoration: line-through;
  pointer-events: none;
}

/* Colour swatches — circular with variant image or background-color */
.sp-pdp__swatch--color {
  width: 34px; height: 34px; min-width: 34px;
  padding: 0; border-radius: 50%;
  border: 2px solid #e5e7eb;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.sp-pdp__swatch--color:hover {
  border-color: #e91e8c;
}
/* Active state: outer ring matches old theme's checked indicator */
.sp-pdp__swatch--color.is-active {
  border-color: #e91e8c;
  {% comment %} box-shadow: 0 0 0 2px #fff, 0 0 0 4px #e91e8c; {% endcomment %}
}

/* Dropdown fallback for many options */
.sp-pdp__variant-select {
  width: 100%; height: 42px; padding: 0 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; color: #374151; background: #fff;
  cursor: pointer; outline: none; font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.sp-pdp__variant-select:focus { border-color: #e91e8c; }

/* Short description */
.sp-pdp__short-desc {
  font-size: 14px; color: #6b7280; line-height: 1.65; margin-bottom: 22px;
}

/* CTA buttons */
.sp-pdp__cta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 24px;
}
.sp-pdp__btn-wishlist {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; border-radius: 10px; border: 1.5px solid #e5e7eb;
  background: #fff; color: #374151; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.sp-pdp__btn-wishlist:hover { border-color: #e91e8c; color: #e91e8c; }
.sp-pdp__btn-wishlist.is-wished { background: #fce7f3; border-color: #e91e8c; color: #e91e8c; }
.sp-pdp__btn-wishlist svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.sp-pdp__btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; border-radius: 10px; background: #000000; color: #fff;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; border: none; font-family: inherit;
}
.sp-pdp__btn-cart:hover { background: #e91e8c; }
.sp-pdp__btn-cart:disabled { background: #9ca3af; cursor: not-allowed; }
.sp-pdp__btn-cart svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── INFO TABS ──────────────────────────────────────────────── */
.sp-pdp__tabs-wrap {
  border-radius: 20px; overflow: hidden;
}
.sp-pdp__tab-nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e5e7eb;
}
.sp-pdp__tab-btn {
  padding: 8px 8px; text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280;
  cursor: pointer; background: #f5f5f5; border: none;
  border-right: 1px solid #e5e7eb; border-bottom: 3px solid transparent;
  transition: color 0.18s, background 0.18s; font-family: inherit; border-bottom: 0 none;
  border-radius: 10px;
}
.sp-pdp__tab-btn:last-child { border-right: none; }
.sp-pdp__tab-btn:hover { color: #e91e8c; background: #fdf2f8; }
.sp-pdp__tab-btn.is-active { color: #111827; background: #fff; border-bottom-color: transparent; }
.sp-pdp__tab-panel {
  padding: 20px 18px; display: none; font-size: 14px;
  color: #374151; line-height: 1.7; background: #fff;
}
  .sp-pdp__tabs-wrap {
    padding: 20px;
    background-color: #fff;
  }

  .sp-pdp__tab-nav {
    background-color: #F5F5F5;
    padding: 5px;
    border-radius: 10px;
  }
.sp-pdp__tab-panel.is-active { display: block; }
.sp-pdp__affiliate-info p { margin-bottom: 10px; }

/* ── DISCOVER THE BRAND ─────────────────────────────────────── */
.sp-pdp__discover {
  margin-top: 28px;
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
}

.affiliate-tab-content {
  background-color: #F5F8FF;
  padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    color: #000;
}

.affiliate-tab-content span {
    background-color: #ffffff;
    color: #000000;
    padding: 2px 10px;
    border-radius: 16px;
}
.sp-pdp__tab-panel a.button.button--primary {
    border-radius: 12px;
}

.sp-pdp__tab-panel a.button.button--primary:before, .sp-pdp__tab-panel a.button.button--primary:after {
  border: 0 none;
      box-shadow: none;
}

.sp-pdp__discover-heading {
  font-size: 20px; font-weight: 700; color: #111827;
  margin-bottom: 20px; letter-spacing: -0.01em;
}

.sp-pdp__brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sp-pdp__brand-card {
  background: #fff; border: 1.5px solid #f3f4f6;
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-pdp__brand-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateY(-2px);
}

.sp-pdp__brand-card-img {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
}
.sp-pdp__brand-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s;
}
.sp-pdp__brand-card:hover .sp-pdp__brand-card-img img { transform: scale(1.05); }

.sp-pdp__brand-pill {
  position: absolute; top: 8px; left: 8px;
  background: #e91e8c; color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 8px;
  border-radius: 20px; letter-spacing: 0.04em; z-index: 2;
}

.sp-pdp__brand-wish {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s; z-index: 2;
}
.sp-pdp__brand-wish:hover { transform: scale(1.15); }
.sp-pdp__brand-wish svg {
  width: 13px; height: 13px; stroke: #e91e8c; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sp-pdp__brand-wish.is-wished svg { fill: #e91e8c; }

.sp-pdp__brand-body {
  padding: 10px 12px 12px; display: flex; flex-direction: column; flex: 1;
}

.sp-pdp__brand-title-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 4px; min-height: 44px; margin-bottom: 6px;
}

.sp-pdp__brand-name {
  font-size: 12px; font-weight: 700; color: #111827;
  line-height: 1.4; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.sp-pdp__brand-rating {
  display: flex; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 600; color: #111827; flex-shrink: 0;
}
.sp-pdp__brand-rating svg { width: 11px; height: 11px; fill: #f59e0b; stroke: none; }

.sp-pdp__brand-prices {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.sp-pdp__brand-price-was { font-size: 11px; color: #9ca3af; text-decoration: line-through; }
.sp-pdp__brand-price-now { font-size: 13px; font-weight: 700; color: #111827; }

.sp-pdp__brand-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin-top: auto;
}

.sp-pdp__brand-btn-view {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  padding: 7px 4px; border-radius: 7px; font-size: 10px; font-weight: 600;
  border: 1.5px solid #e5e7eb; background: #fff; color: #374151;
  cursor: pointer; transition: all 0.18s; text-decoration: none;
  white-space: nowrap; font-family: inherit;
}
.sp-pdp__brand-btn-view:hover { border-color: #e91e8c; color: #e91e8c; }

.sp-pdp__brand-btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  padding: 7px 4px; border-radius: 7px; font-size: 10px; font-weight: 600;
  background: #111827; color: #fff; border: none;
  cursor: pointer; transition: background 0.18s;
  white-space: nowrap; font-family: inherit;
}
.sp-pdp__brand-btn-cart:hover { background: #e91e8c; }

.sp-pdp__brand-actions svg {
  width: 10px; height: 10px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Shop the Site CTA */
.sp-pdp__shop-cta-wrap { display: flex; justify-content: center; margin-top: 24px; }
.sp-pdp__shop-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  border: 1.5px solid #e5e7eb; background: #fff;
  font-size: 14px; font-weight: 600; color: #374151;
  text-decoration: none; transition: all 0.2s;
}
.sp-pdp__shop-cta:hover { border-color: #e91e8c; color: #e91e8c; }
.sp-pdp__shop-cta svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.sp-pdp__info-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
      padding-bottom: 0;
    margin-bottom: 10px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
/* ── GLOBAL BOX-SIZING FIX for this section ────────────────── */
.sp-pdp,
.sp-pdp *,
.sp-pdp *::before,
.sp-pdp *::after {
  box-sizing: border-box;
}

/* Prevent horizontal overflow at the section root */
.sp-pdp {
  overflow-x: hidden;
max-width: 100%;
}

/* Ensure every direct child can never be wider than the viewport */
.sp-pdp__inner,
.sp-pdp__discover {
  min-width: 0;
  max-width: 100%;
}

.sp-pdp__tab-panel img{
    max-width: 200px;
    width:100%;
    height:100%;
  }

  .sp-pdp__tab-btn:focus-visible{
    outline:unset;
    box-shadow:unset;
  }

/* ── 1024px: single-column product grid ────────────────────── */
@media (max-width: 1024px) {
  .sp-pdp__inner { grid-template-columns: 1fr; }
  .sp-pdp__brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* ── Outer section ─────────────────────────────────────────── */
  .sp-pdp {
    padding: 12px 12px 32px;     /* tighter side padding on mobile */
  }

  .sp-pdp__inner {
    padding: 16px;               /* was 28px — main overflow culprit */
    gap: 20px;
  }

  /* ── Brand grid ─────────────────────────────────────────────── */
  .sp-pdp__brand-grid { grid-template-columns: repeat(2, 1fr); }

  .sp-pdp__discover {
    padding: 16px;               /* was 28px */
    margin-top: 12px;
  }

  /* Brand grid: 2 columns */
  .sp-pdp__brand-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tabs: single column stacked */
  .sp-pdp__tab-nav    { grid-template-columns: 1fr; }
  .sp-pdp__tab-btn    { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .sp-pdp__tab-btn:last-child { border-bottom: none; }

  /* Swatches: always wrap */
  .sp-pdp__swatch-row { flex-wrap: wrap; }

  /* ── Media: image top, thumbs horizontal below ─────────────── */

  .sp-pdp__media {
    flex-direction: column;
    gap: 12px;
  }

  /* Main image → order 0 = visually first (top) */
  .sp-pdp__main-img-wrap {
    width: 100%;
    order: 0;
    aspect-ratio: 1 / 1;
  }

  /* Thumbs wrap → order 1 = visually second (below main image) */
  .sp-pdp__thumbs-wrap {
    order: 1;
    width: 100%;
    flex-direction: row;          /* ◄ strip ► */
    align-items: center;
    gap: 6px;
  }

  /* Thumb strip: horizontal scroll row */
  .sp-pdp__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;             /* remove vertical height cap */
    height: 68px;
    padding: 0 4px;
    gap: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
        min-width: 0;               /* critical: prevents flex child from overflowing */
  }

  .sp-pdp__thumbs::-webkit-scrollbar { display: none; }

  .sp-pdp__thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  /* Arrows become left / right chevrons */
  .sp-pdp__thumb-arrow {
    width: 32px;
    height: 64px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  /* Up arrow ▲ → left arrow ◄  (rotate -90°) */
  /* #sp-thumb-up-{{ section.id }} svg {
    transform: rotate(-90deg);
  } */

  /* Down arrow ▼ → right arrow ► (rotate +90°) */
  /* #sp-thumb-down-{{ section.id }} svg {
    transform: rotate(-90deg);
  } */
}
/* ── 580px: the reported breakpoint ────────────────────────── */
@media (max-width: 580px) {
  .sp-pdp        { padding: 8px 10px 28px; }
  .sp-pdp__inner { padding: 14px; gap: 14px; }
  .sp-pdp__discover { padding: 14px; }

  /* Reduce large font sizes so text doesn't push layout wide */
  .sp-pdp__title     { font-size: 20px; }
  .sp-pdp__price-now { font-size: 20px; }
  .sp-pdp__price-was { font-size: 13px; }

  /* Tab buttons: reduce letter-spacing which adds hidden width */
  .sp-pdp__tab-btn {
    letter-spacing: 0.03em;
    font-size: 10px;
    padding: 11px 6px;
  }

  .sp-pdp__tab-panel { padding: 14px 12px; }
  

  /* CTA buttons: stack vertically */
  .sp-pdp__cta { grid-template-columns: 1fr; gap: 10px; }

  /* Brand grid: 2 columns with tighter gap */
  .sp-pdp__brand-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Brand card action buttons: reduce padding to fit 2-col grid */
  .sp-pdp__brand-btn-view,
  .sp-pdp__brand-btn-cart {
    font-size: 9px;
    padding: 6px 3px;
    gap: 2px;
  }

  /* Hide action button icons on very small cards to save space */
  .sp-pdp__brand-actions svg { display: none; }

  /* Shop CTA: reduce horizontal padding */
  .sp-pdp__shop-cta {
    padding: 10px 18px;
    font-size: 13px;
  }
  .sp-pdp__inner {
    display: block;
  }
}

/* ── 480px: smallest phones ─────────────────────────────────── */
@media (max-width: 480px) {
  .sp-pdp        { padding: 8px 8px 24px; }
  .sp-pdp__inner { padding: 10px; gap: 12px; }
  .sp-pdp__discover { padding: 10px; }

  .sp-pdp__title     { font-size: 18px; }
  .sp-pdp__price-now { font-size: 18px; }

  /* Thumbs: smaller on tiny phones */
  .sp-pdp__thumb        { width: 52px; height: 52px; }
  .sp-pdp__thumbs       { height: 56px; }
  .sp-pdp__thumb-arrow  { width: 26px; height: 52px; }

  /* Brand grid: still 2 columns, even tighter */
  .sp-pdp__brand-grid { gap: 8px; }
}

@keyframes sp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}