/** Shopify CDN: Minification failed

Line 913:1 Expected "}" to go with "{"

**/
/*
  UNDYZ Theme Enhancements
  File: assets/undyz-theme.css
  Include via: {{ 'undyz-theme.css' | asset_url | stylesheet_tag }}
  Add that line to layout/theme.liquid inside <head>

  Palette:
    --undyz-black  : #0d0d0d
    --undyz-white  : #fafaf8
    --undyz-gold   : #c8a96e
    --undyz-muted  : #6b6b68
    --undyz-border : #e2e0da
    --undyz-green  : #1a5c38
    --undyz-red    : #8b1a1a
*/

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────────────────── */
:root {
  --undyz-black  : #0d0d0d;
  --undyz-white  : #fafaf8;
  --undyz-off    : #f4f3ef;
  --undyz-gold   : #c8a96e;
  --undyz-gold-lt: #f5edd8;
  --undyz-muted  : #6b6b68;
  --undyz-border : #e2e0da;
  --undyz-green  : #1a5c38;
  --undyz-green-lt: #eaf4ee;
  --undyz-red    : #8b1a1a;
  --undyz-red-lt : #fdf0f0;
  --undyz-radius : 6px;
  --undyz-radius-lg: 12px;
  --undyz-font   : inherit;     /* inherits your theme's font */
}


/* ─── BADGES (shared across collection + product) ───────────────────────── */
.undyz-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1;
}

.undyz-badge--veteran {
  background: var(--undyz-gold-lt);
  color: #6b4a00;
  border: 1px solid #dfc68a;
}

.undyz-badge--patent {
  background: var(--undyz-off);
  color: var(--undyz-muted);
  border: 1px solid var(--undyz-border);
}

.undyz-badge--sale {
  background: var(--undyz-green-lt);
  color: var(--undyz-green);
  border: 1px solid #b2d9c3;
}

.undyz-stars {
  color: var(--undyz-gold);
  letter-spacing: 1px;
}


/* ─── COLLECTION HERO BANNER ────────────────────────────────────────────── */
.undyz-hero {
  background: var(--undyz-black);
  color: var(--undyz-white);
  padding: 56px 32px;
  margin-bottom: 0;
}

.undyz-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .undyz-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .undyz-hero {
    padding: 40px 20px;
  }
}

.undyz-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

/* Override badge colors for dark background */
.undyz-hero .undyz-badge--veteran {
  background: rgba(200,169,110,.15);
  color: var(--undyz-gold);
  border-color: rgba(200,169,110,.3);
}

.undyz-hero .undyz-badge--patent {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.15);
}

.undyz-hero__headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--undyz-white);
}

.undyz-hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin: 0 0 24px;
  max-width: 460px;
}

.undyz-hero__use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.undyz-hero__use-cases span {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

/* Right column: social proof */
.undyz-hero__social-proof {
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 40px;
}

@media (max-width: 768px) {
  .undyz-hero__social-proof {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-left: 0;
    padding-top: 28px;
  }
}

.undyz-hero__stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.undyz-rating-text {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

.undyz-hero__quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  font-style: italic;
  border-left: 3px solid var(--undyz-gold);
  padding-left: 20px;
}

.undyz-hero__quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,.45);
}


/* ─── SIZING ALERT BANNER ───────────────────────────────────────────────── */
.undyz-size-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--undyz-gold-lt);
  border-bottom: 1px solid #dfc68a;
  padding: 14px 32px;
  font-size: 14px;
  line-height: 1.55;
  color: #5a3d00;
}

.undyz-size-alert__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #7a5200;
}

.undyz-size-alert__link {
  font-weight: 600;
  color: #6b4400;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .undyz-size-alert { padding: 12px 20px; }
}


/* ─── GRID HEADER ───────────────────────────────────────────────────────── */
.undyz-grid-header {
  max-width: 1100px;
  margin: 48px auto 8px;
  padding: 0 32px;
  text-align: center;
}

.undyz-grid-header__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 8px;
}

.undyz-grid-header__sub {
  font-size: 16px;
  color: var(--undyz-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .undyz-grid-header { padding: 0 20px; margin-top: 36px; }
}


/* ─── PRODUCT CARDS ─────────────────────────────────────────────────────── */
.undyz-card {
  position: relative;
  background: var(--undyz-white);
  border: 1px solid var(--undyz-border);
  border-radius: var(--undyz-radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.undyz-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-2px);
}

/* Top badge (Best Value / Most Popular) */
.undyz-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  line-height: 1;
}

.undyz-card__badge--value {
  background: var(--undyz-green);
  color: #fff;
}

.undyz-card__badge--popular {
  background: var(--undyz-black);
  color: var(--undyz-gold);
}

/* Card image */
.undyz-card__media-link { display: block; }

.undyz-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--undyz-off);
}

.undyz-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.undyz-card:hover .undyz-card__media img {
  transform: scale(1.03);
}

/* Card body */
.undyz-card__body {
  padding: 18px 20px 22px;
}

.undyz-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.undyz-card__stars {
  color: var(--undyz-gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.undyz-card__review-count {
  font-size: 12px;
  color: var(--undyz-muted);
}

.undyz-card__title-link { text-decoration: none; color: inherit; }

.undyz-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--undyz-black);
}

.undyz-card__pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.undyz-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--undyz-black);
}

.undyz-card__compare {
  font-size: 14px;
  color: var(--undyz-muted);
  text-decoration: line-through;
}

.undyz-card__savings {
  font-size: 12px;
  font-weight: 700;
  color: var(--undyz-green);
  background: var(--undyz-green-lt);
  padding: 2px 8px;
  border-radius: 20px;
}

.undyz-card__per-pair {
  font-size: 13px;
  color: var(--undyz-muted);
  margin-bottom: 16px;
}

.undyz-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  background: var(--undyz-black);
  color: var(--undyz-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--undyz-radius);
  text-decoration: none;
  transition: background .2s, transform .1s;
}

.undyz-card__cta:hover {
  background: #333;
}

.undyz-card__cta:active {
  transform: scale(.99);
}


/* ─── PRODUCT PAGE: TOP BADGES ──────────────────────────────────────────── */
.undyz-top-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}


/* ─── PRODUCT PAGE: DESCRIPTION ─────────────────────────────────────────── */
.undyz-desc {
  margin: 20px 0 28px;
}

.undyz-desc__hook {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--undyz-black);
  margin: 0 0 14px;
}

.undyz-desc__body {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 12px;
}

.undyz-desc__bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.undyz-desc__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.undyz-desc__bullets li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--undyz-green);
  margin-top: 1px;
}


/* ─── PRODUCT PAGE: SIZING CALLOUT ─────────────────────────────────────── */
.undyz-sizing-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--undyz-gold-lt);
  border: 1px solid #dfc68a;
  border-radius: var(--undyz-radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #5a3d00;
}

.undyz-sizing-callout svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #7a5200;
}

.undyz-sizing-callout__link {
  font-weight: 600;
  color: #6b4400;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
  white-space: nowrap;
}


/* ─── PRODUCT PAGE: TRUST BADGES ────────────────────────────────────────── */
.undyz-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 32px;
}

@media (max-width: 480px) {
  .undyz-trust { grid-template-columns: 1fr; gap: 8px; }
}

.undyz-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--undyz-border);
  border-radius: var(--undyz-radius);
  background: var(--undyz-off);
}

.undyz-trust__icon {
  flex-shrink: 0;
  color: var(--undyz-muted);
  margin-top: 1px;
}

.undyz-trust__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--undyz-black);
  margin-bottom: 2px;
}

.undyz-trust__item span {
  font-size: 12px;
  color: var(--undyz-muted);
  line-height: 1.4;
}


/* ─── PRODUCT PAGE: MICRO-TESTIMONIALS ──────────────────────────────────── */
.undyz-testimonials {
  border-top: 1px solid var(--undyz-border);
  padding-top: 32px;
  margin-top: 8px;
}

.undyz-testimonials__heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 20px;
}

.undyz-testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.undyz-testimonial {
  margin: 0;
  padding: 18px 20px;
  background: var(--undyz-off);
  border-left: 3px solid var(--undyz-gold);
  border-radius: 0 var(--undyz-radius) var(--undyz-radius) 0;
}

.undyz-testimonial__stars {
  color: var(--undyz-gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.undyz-testimonial__quote {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 10px;
  font-style: italic;
}

.undyz-testimonial__author {
  font-size: 12px;
  color: var(--undyz-muted);
  font-style: normal;
}

.undyz-testimonial__author strong {
  color: var(--undyz-black);
  font-weight: 600;
}

.undyz-testimonials__all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--undyz-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── PRODUCT PAGE: WHY UNDYZ SECTION ───────────────────────────────────── */
.undyz-why {
  border-top: 1px solid var(--undyz-border);
  padding: 40px 0;
  margin-top: 16px;
}

.undyz-why__heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 28px;
}

.undyz-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .undyz-why__grid { grid-template-columns: 1fr; gap: 16px; }
}

.undyz-why__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.undyz-why__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--undyz-off);
  border: 1px solid var(--undyz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--undyz-black);
}

.undyz-why__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--undyz-black);
  margin: 0;
  line-height: 1.3;
}

.undyz-why__item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.undyz-why__learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--undyz-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── FOOTER: EMAIL CAPTURE ─────────────────────────────────────────────── */
.undyz-email-capture {
  padding: 40px 32px;
  text-align: center;
  background: var(--undyz-black);
  color: var(--undyz-white);
}

.undyz-email-capture__heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--undyz-white);
  margin: 0 0 6px;
}

.undyz-email-capture__sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
}

.undyz-email-capture__form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 10px;
}

@media (max-width: 480px) {
  .undyz-email-capture__form { flex-direction: column; }
}

.undyz-email-capture__input {
  flex: 1;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--undyz-radius);
  background: rgba(255,255,255,.08);
  color: var(--undyz-white);
  outline: none;
  transition: border-color .2s;
}

.undyz-email-capture__input::placeholder { color: rgba(255,255,255,.35); }
.undyz-email-capture__input:focus { border-color: var(--undyz-gold); }

.undyz-email-capture__btn {
  padding: 13px 24px;
  background: var(--undyz-gold);
  color: #1a0e00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  border-radius: var(--undyz-radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}

.undyz-email-capture__btn:hover { background: #d4b67a; }
.undyz-email-capture__btn:active { transform: scale(.99); }

.undyz-email-capture__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin: 0;
/* ─── UNDYZ PREMIUM GRID — Shapes-specific selectors ──────────────────────
   Paste this at the bottom of undyz-theme.css in Assets.
   Replace any previous grid CSS you added.
   ─────────────────────────────────────────────────────────────────────── */

/* Hide page title */
.collection__title,
.collection-hero__title,
.section__heading {
  display: none !important;
}

/* ── CARD WRAPPER ──────────────────────────────────────────────────────── */
.product-tile {
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
  transition: box-shadow .25s ease, transform .25s ease !important;
  position: relative !important;
}

.product-tile:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.13) !important;
  transform: translateY(-3px) !important;
}

/* ── REMOVE THE POLAROID / STACKED FRAME EFFECT ───────────────────────── */
.product-tile::before,
.product-tile::after {
  display: none !important;
}

.product-tile .product-media-object {
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
  background: #f5f4f1 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  aspect-ratio: 1 / 1 !important;
}

/* Kill the inner stacked card shadows Shapes adds */
.product-tile .product-media-object::before,
.product-tile .product-media-object::after {
  display: none !important;
}

/* ── IMAGE ─────────────────────────────────────────────────────────────── */
.product-tile .product-media-object img,
.product-tile [class*="object-wrapper"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .5s ease !important;
  border-radius: 0 !important;
}

.product-tile:hover .product-media-object img,
.product-tile:hover [class*="object-wrapper"] img {
  transform: scale(1.04) !important;
}

/* ── CARD INFO AREA ────────────────────────────────────────────────────── */
.product-tile__info,
.product-tile .product-tile__meta,
.product-tile [class*="tile__info"] {
  padding: 12px 14px 16px !important;
  background: #fff !important;
}

/* Product name */
.product-tile__title,
.product-tile [class*="tile__title"] {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0d0d0d !important;
  letter-spacing: -.01em !important;
  margin-bottom: 5px !important;
  line-height: 1.3 !important;
}

/* Price */
.product-tile__price,
.product-tile [class*="tile__price"],
.product-tile .price {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0d0d0d !important;
}

/* Struck-through compare price */
.product-tile s,
.product-tile del,
.product-tile [class*="price--compare"] {
  font-size: 13px !important;
  color: #aaa !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
}

/* Sale badge */
.product-tile .badge,
.product-tile [class*="badge--sale"] {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: #1a5c38 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  z-index: 2 !important;
}

/* ── FILTER / SORT BUTTONS ─────────────────────────────────────────────── */
.facets__open-button,
.collection-filters__toggle,
button.facets__summary {
  border-radius: 30px !important;
  border: 1.5px solid #0d0d0d !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: .04em !important;
  background: transparent !important;
  color: #0d0d0d !important;
  transition: background .2s, color .2s !important;
}

.facets__open-button:hover,
button.facets__summary:hover {
  background: #0d0d0d !important;
  color: #fff !important;
}

/* ── MOBILE ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .product-tile {
    border-radius: 12px !important;
  }

  .product-tile__title,
  .product-tile [class*="tile__title"] {
    font-size: 13px !important;
  }

  .product-tile__price,
  .product-tile [class*="tile__price"],
  .product-tile .price {
    font-size: 15px !important;
  }
}/* Mobile card spacing */
@media (max-width: 768px) {
  .product-tile {
    margin: 0 4px !important;
  }
  
  /* Force white image background on all cards */
  .product-tile .product-media-object,
  .product-tile [class*="media-object"] {
    background: #ffffff !important;
  }
}