/** Shopify CDN: Minification failed

Line 482:8 Unexpected "{"
Line 482:17 Expected ":"
Line 784:8 Unexpected "{"
Line 784:17 Expected ":"
Line 784:24 Unexpected "{"

**/
/* ═══════════════════════════════════════════════════════════════
   CUSTOM PRODUCT PAGE — Wakefit-inspired clean layout
   File: assets/custom-product-page.css
   ═══════════════════════════════════════════════════════════════ */

/* ── PRODUCT LAYOUT OVERRIDES ─────────────────────────────────── */
.template-product .product.grid--2-col-tablet {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: start !important;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 989px) {
  .template-product .product.grid--2-col-tablet {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* Hide the default media gallery */
.template-product .product__media-wrapper > media-gallery {
  display: none !important;
}

/* ── CPG WRAPPER ──────────────────────────────────────────────── */
.cpg-wrapper {
  width: 100%;
  position: relative;
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP GALLERY
══════════════════════════════════════════════════════════════ */
.cpg-desktop {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

@media screen and (max-width: 749px) {
  .cpg-desktop {
    display: none !important;
  }
}

/* ── Thumbnail column ─────────────────────────────────────────── */
.cpg-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 80px;
  flex-shrink: 0;
  max-height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
  padding-right: 2px;
}

.cpg-thumbs::-webkit-scrollbar {
  width: 3px;
}
.cpg-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

.cpg-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1.5px solid #e5e5e5;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.cpg-thumb:hover {
  border-color: #999;
  transform: translateX(2px);
}

.cpg-thumb.is-active {
  border-color: #222;
  border-width: 2px;
}

.cpg-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cpg-thumb__badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Main image area ──────────────────────────────────────────── */
.cpg-main {
  flex: 1;
  position: relative;
  border-radius: 16px; /* Made corners rounder */
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cpg-main__track {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 990px) {
  .cpg-main__track {
    aspect-ratio: unset;
    min-height: unset;
    max-height: unset;
  }
}

.cpg-main__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cpg-main__slide.is-active {
  opacity: 1;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.cpg-main__img-wrap {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  background: none;
  padding: 0;
}

.cpg-main__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.cpg-main__video-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.cpg-main__video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FAB group (desktop) ──────────────────────────────────────── */
.cpg-fab-group {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

/* ── FAB buttons (shared) ─────────────────────────────────────── */
.cpg-fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}

.cpg-fab:hover {
  background: #fff;
  transform: scale(1.1);
  color: #222;
}

.cpg-fab--wish.is-wishlisted {
  color: #e05c5c;
  background: #fff0f0;
}
.cpg-fab--wish.is-wishlisted svg {
  fill: #e05c5c;
  stroke: #e05c5c;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE GALLERY (Edge-to-Edge)
══════════════════════════════════════════════════════════════ */
.cpg-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  
  /* Force edge-to-edge outside of page padding */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media screen and (max-width: 749px) {
  .cpg-mobile {
    display: block;
  }
}

.cpg-mobile__track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.cpg-mobile__track:active {
  cursor: grabbing;
}

.cpg-mobile__slide {
  min-width: 100vw;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cpg-mobile__img-wrap {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
}

.cpg-mobile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── Mobile dots (Floating over image) ────────────────────────── */
.cpg-mobile__dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.cpg-mobile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.cpg-mobile__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* ── Mobile fabs ──────────────────────────────────────────────── */
.cpg-mobile__fabs {
  position: absolute;
  bottom: 30px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

/* ══════════════════════════════════════════════════════════════
   WAKEFIT-STYLE LIGHTBOX "PAGE"
══════════════════════════════════════════════════════════════ */
.cpg-lightbox {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2147483647 !important; /* Max z-index to guarantee top layer */
  background-color: #ffffff !important; /* Bulletproof solid white background */
}

.cpg-lightbox.is-open {
  display: block !important;
}

/* Top-Left Back Button */
.cpg-lightbox__back {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.cpg-lightbox__back:hover {
  background: rgba(0,0,0,0.8);
}

.cpg-lightbox__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cpg-lightbox__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.cpg-lightbox__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media screen and (max-width: 749px) {
  .cpg-lightbox__slide {
    padding: 0;
  }
}

.cpg-lightbox__img-wrap {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.cpg-lightbox__img-wrap.zoomed {
  cursor: zoom-out;
}

.cpg-lightbox__img {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

/* Bottom Center Counter Pill */
.cpg-lightbox__counter-pill {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT INFO — Right column refinements
══════════════════════════════════════════════════════════════ */

/* Vendor / brand text */
.product__info-container .product__text {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.55);
  letter-spacing: 0.05rem;
  margin-bottom: 0.4rem;
}

/* Title */
.product__title h1,
.product__title .h1 {
  font-size: clamp(2rem, 3vw, 2.6rem) !important;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

/* Hide duplicate h2 title link */
.product__title > a.product__title {
  display: none !important;
}

/* Price section */
#price-{{ section.id }} .price,
.product .price--large {
  margin-bottom: 0.4rem;
}

.price--large .price__regular .price-item--regular,
.price--large .price__sale .price-item--sale {
  font-size: 2.4rem !important;
  font-weight: 700;
  color: #111;
}

.price--large .price__regular .price-item--regular {
  /* no strikethrough for regular price */
}

.price--large .price__sale .price-item--regular {
  font-size: 1.5rem !important;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.6rem;
}

/* Discount badge */
.price .badge--sale {
  background: #dcfce7 !important;
  color: #16a34a !important;
  border-color: transparent !important;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  margin-left: 0.8rem;
}

/* Tax text */
.product__tax {
  font-size: 1.2rem !important;
  color: #888 !important;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

/* Inventory status */
.product__inventory {
  font-size: 1.3rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/* Divider between price and variants */
.product__info-container .product-form__input,
.product__info-container .product-form__quantity {
  margin-top: 2rem;
}

/* Variant picker */
.product-form__input .form__label,
.quantity__label.form__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02rem;
}

/* Dropdown variant */
.product-form__input .select {
  border-radius: 8px;
}

.product-form__input .select .select__select {
  height: 44px;
  border-radius: 8px;
  font-size: 1.4rem;
  padding-left: 1.4rem;
}

/* Button-style variants */
.product-form__input .swatch-input__button,
.product-form__input .variant-input-wrap button {
  border-radius: 8px;
  border: 1.5px solid #ddd;
  font-size: 1.3rem;
  transition: border-color 0.15s, background 0.15s;
}

.product-form__input .swatch-input__button:hover,
.product-form__input .variant-input-wrap button:hover {
  border-color: #222;
}

/* Quantity selector */
.quantity {
  border-radius: 10px;
  height: 46px;
}

/* ── Add to Cart button ────────────────────────────────────────── */
.product-form .shopify-payment-button,
.product-form product-form > div,
.product-form .product-form__buttons {
  margin-top: 2rem;
}

.product-form__cart-submit,
button[name="add"] {
  width: 100% !important;
  height: 52px !important;
  border-radius: 12px !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04rem !important;
  transition: filter 0.2s ease, transform 0.1s ease !important;
  position: relative;
  overflow: hidden;
}
/* Fixes the pixelated outline by rounding the theme's hidden border boxes */
.product-form__cart-submit::after,
.product-form__cart-submit::before,
button[name="add"]::after,
button[name="add"]::before {
  border-radius: 12px !important;
}

/* Also apply to the Buy It Now button to keep everything perfectly uniform */
.shopify-payment-button__button--unbranded,
.shopify-payment-button__button--unbranded::after,
.shopify-payment-button__button--unbranded::before {
  border-radius: 12px !important;
}

.product-form__cart-submit:not([disabled]):hover,
button[name="add"]:not([disabled]):hover {
  filter: brightness(0.92) !important;
}

.product-form__cart-submit:active,
button[name="add"]:active {
  transform: scale(0.98) !important;
}

/* ── Rating ───────────────────────────────────────────────────── */
.rating-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

/* ── Collapsible tabs ─────────────────────────────────────────── */
.product__accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.product__accordion summary {
  padding: 1.4rem 0;
}

.product__accordion summary .h4 {
  font-size: 1.4rem;
}

/* ── Share + view details ─────────────────────────────────────── */
.product__view-details {
  font-size: 1.3rem;
  margin-top: 1.8rem;
}

/* ── Description ──────────────────────────────────────────────── */
.product__description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.75);
  margin-top: 1.6rem;
}

/* ── Icon with text blocks ────────────────────────────────────── */
.product__info-container .icon-with-text {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

/* ══════════════════════════════════════════════════════════════
   STICKY ADD TO CART — Mobile only
══════════════════════════════════════════════════════════════ */
.cpg-sticky-atc {
  display: none !important; /* Hides completely on Desktop */
}

@media screen and (max-width: 749px) {
  .cpg-sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 1.6rem 1.4rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.07);
    display: none !important;
    align-items: center;
    gap: 1.2rem;
  }

  .cpg-sticky-atc.is-visible {
    display: flex !important;
    animation: cpgSlideUp 0.25s ease forwards;
  }

  @keyframes cpgSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  .cpg-sticky-atc__info {
    flex: 1;
    min-width: 0;
  }

  .cpg-sticky-atc__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cpg-sticky-atc__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-top: 0.1rem;
  }

  .cpg-sticky-atc__btn {
    flex-shrink: 0;
    height: 46px;
    padding: 0 2.4rem;
    border-radius: 10px;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    transition: filter 0.15s;
  }

  .cpg-sticky-atc__btn:hover {
    filter: brightness(0.9);
  }

  /* Give bottom padding so sticky bar doesn't cover content */
  .template-product .product__info-container {
    padding-bottom: 8rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   TABLET (750–989px) — stacked, full-width gallery
══════════════════════════════════════════════════════════════ */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .cpg-desktop {
    display: flex !important;
  }

  .cpg-mobile {
    display: none !important;
  }

  .cpg-thumbs {
    width: 64px;
    max-height: 400px;
  }

  .cpg-thumb {
    width: 64px;
    height: 64px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SMOOTH SCROLL
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.product__tax {
  margin-top: 2px !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

#price-{{ section.id }} {
  margin-bottom: 0 !important;
}

.price--large {
  margin-bottom: 0 !important;
}

.price__container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.price__sale {
  margin-bottom: 0 !important;
}
/* Hide slideshow button but keep the link active for JS */
.slideshow__slide .button--primary {
  display: none !important;
}
/* Fix product image cut off */
.product__media img,
.product__media .media img {
  object-fit: contain !important;
  object-position: center !important;
  height: 100% !important;
  width: 100% !important;
}

.product__media,
.product__media .media {
  height: auto !important;
  overflow: visible !important;
}

/* Fix main image container */
.product-media-container,
.product__media-wrapper {
  overflow: visible !important;
}