/** Shopify CDN: Minification failed

Line 202:31 Unexpected "2026"

**/
/* ============================================================
   DEFY SPORTS 2026 — Cart Drawer CSS
   LIGHT THEME: white drawer · dark text · green accents
   ============================================================ */

/* ── Overlay ───────────────────────────────────────────────── */
.defy-cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms;
}
.defy-cart-overlay.is-open { opacity: 1; pointer-events: all; }

/* ── Drawer ────────────────────────────────────────────────── */
.defy-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 201;
  background: #fff;
  border-left: 1px solid #E8E8E4;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.23,1,0.32,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.defy-cart-drawer.is-open { transform: translateX(0); }

/* ── Header ────────────────────────────────────────────────── */
.defy-cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E8E8E4;
  flex-shrink: 0;
  background: #fff;
}
.defy-cart-drawer__title {
  font-size: 18px; font-weight: 800; color: #111;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.defy-cart-drawer__count {
  font-size: 13px; color: #888; font-weight: 400; margin-left: 8px;
}
.defy-cart-drawer__close {
  background: none; border: none; color: #888;
  cursor: pointer; padding: 6px;
  transition: color 150ms, background 150ms;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.defy-cart-drawer__close:hover { color: #111; background: #F0F0EC; }

/* ── Body ──────────────────────────────────────────────────── */
.defy-cart-drawer__body { flex: 1; overflow-y: auto; padding: 0 24px; }

/* ── Empty state ───────────────────────────────────────────── */
.defy-cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
  height: 100%; text-align: center;
  padding: 48px 0;
}
.defy-cart-empty__icon {
  width: 64px; height: 64px;
  background: #F0F0EC;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.defy-cart-empty p { font-size: 15px; color: #888; }
.defy-cart-empty .defy-btn { margin-top: 8px; }

/* ── Cart items ────────────────────────────────────────────── */
.defy-cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #F0F0EC;
}
.defy-cart-item:last-child { border-bottom: none; }

.defy-cart-item__image {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F8F6;
  border: 1px solid #E8E8E4;
}
.defy-cart-item__image img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.defy-cart-item__info { flex: 1; min-width: 0; }
.defy-cart-item__title {
  font-size: 14px; font-weight: 700; color: #111;
  display: block; margin-bottom: 3px; line-height: 1.3;
  text-decoration: none;
}
.defy-cart-item__title:hover { color: var(--defy-green); }
.defy-cart-item__variant,
.defy-cart-item__property {
  font-size: 12px; color: #888; margin-bottom: 2px;
}

.defy-cart-item__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
}
.defy-cart-item__qty {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid #D8D8D4;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.defy-cart-item__qty-btn {
  background: none; border: none;
  color: #333; width: 28px; height: 28px;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
.defy-cart-item__qty-btn:hover { background: #F0F0EC; }
.defy-cart-item__qty-count {
  font-size: 13px; font-weight: 600; color: #111;
  min-width: 28px; text-align: center;
  border-left: 1.5px solid #D8D8D4;
  border-right: 1.5px solid #D8D8D4;
  height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.defy-cart-item__price { font-size: 15px; font-weight: 700; color: #111; }
.defy-cart-item__remove {
  background: none; border: none; color: #ccc;
  cursor: pointer; padding: 4px; flex-shrink: 0;
  transition: color 150ms;
  font-size: 16px;
  margin-left: 8px;
}
.defy-cart-item__remove:hover { color: #e53e3e; }

/* ── Footer ────────────────────────────────────────────────── */
.defy-cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #E8E8E4;
  flex-shrink: 0;
  background: #fff;
}
.defy-cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.defy-cart-drawer__subtotal-label {
  font-size: 15px; font-weight: 600; color: #444;
}
.defy-cart-drawer__subtotal-amount {
  font-size: 18px; font-weight: 800; color: #111;
}
.defy-cart-drawer__tax-note {
  font-size: 12px; color: #888; margin-bottom: 16px;
}
.defy-cart-drawer__view-cart,
.defy-cart-drawer__checkout {
  display: block; width: 100%; text-align: center; margin-bottom: 10px;
  text-decoration: none;
}
.defy-cart-drawer__view-cart {
  padding: 13px;
  border: 1.5px solid #D8D8D4;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 150ms, color 150ms;
  background: #fff;
}
.defy-cart-drawer__view-cart:hover { border-color: #111; color: #111; }
.defy-cart-drawer__checkout {
  padding: 14px;
  background: var(--defy-green);
  border: none;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 150ms;
}
.defy-cart-drawer__checkout:hover { background: #1e9e30; }

.defy-cart-drawer__trust {
  display: flex; justify-content: center; gap: 20px;
  font-size: 11px; color: #aaa; margin-top: 12px;
  text-align: center;
}
.defy-cart-drawer__trust span { display: flex; align-items: center; gap: 4px; }

* ── Mobile fixes — July 2026 ──────────────────────────────── */
@media (max-width: 767px) {
  /* Hide stats block on mobile */
  .defy-hero__stats { display: none !important; }

  /* Hide green ticker on mobile */
  .defy-hero__ticker { display: none !important; }
  /* Move progress bar up since ticker is hidden */
  .defy-hero__progress { bottom: 0; }

  /* Logo size on mobile */
  .defy-header__logo img { height: 22px !important; }

  /* Guaranteed Irish badge — smaller and less intrusive */
  .defy-hero__gi-badge img { height: 28px !important; }
  .defy-hero__gi-badge { top: 12px !important; }

  /* Hero heading — tighter on small screens */
  .defy-hero__heading { font-size: clamp(38px, 11vw, 60px) !important; margin-bottom: 12px; }

  /* Hero sub text — tighter */
  .defy-hero__sub { font-size: 13px; margin-bottom: 20px; }

  /* Hero badge spacing */
  .defy-hero__badge { margin-bottom: 16px; }
}