/* Teezy — matched to TargetSite layout (orange #e85d04, Poppins, boxed ~1250) */
:root {
  --tz-orange: #e85d04;
  --tz-orange-dark: #d04f00;
  --tz-orange-soft: #fff0e6;
  --tz-black: #000000;
  --tz-ink: #333333;
  --tz-muted: #6b7280;
  --tz-line: #e5e7eb;
  --tz-bg: #f2f4f8;
  --tz-wa: #009531;
  --tz-radius: 6px;
  --tz-wrap: 1250px;
}
* { -webkit-tap-highlight-color: transparent; box-sizing: border-box; }
html { margin: 0; padding: 0; background: var(--tz-bg); }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--tz-ink);
  background: var(--tz-bg);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
.tz-wrap { width: 100%; max-width: var(--tz-wrap); margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }

/* Section header — TargetSite orange→white gradient */
.tz-sec-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 59px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(232deg, #ffffff 0%, #e85d04 100%);
  /* readable title sits on orange side — flip so orange is LEFT like Target */
  background: linear-gradient(90deg, #e85d04 0%, #f08a3a 42%, #ffe8d4 78%, #ffffff 100%);
}
.tz-sec-bar .tz-see {
  display: inline-block;
  background: var(--tz-black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.tz-sec-bar .tz-see:hover { opacity: 0.88; }

/* Product card — portrait image, TargetSite proportions */
.tz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--tz-line);
  border-radius: var(--tz-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.tz-card:hover { box-shadow: 0 10px 28px -14px rgba(0,0,0,.28); }
.tz-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--tz-black); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 8px; text-transform: uppercase; border-radius: 2px;
}
.tz-card-media {
  display: block; aspect-ratio: 278 / 389; background: #f5f5f5; overflow: hidden;
}
.tz-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tz-card:hover .tz-card-media img { transform: scale(1.04); }
.tz-card-body {
  text-align: center; padding: 12px 12px 14px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.tz-card-title {
  font-size: 14px; font-weight: 600; color: var(--tz-black); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em;
  text-decoration: none;
}
.tz-card-title:hover { color: var(--tz-orange); }
.tz-stars { font-size: 13px; letter-spacing: 1px; line-height: 1; }
.tz-stars span { color: #facc15; }
.tz-stars span.text-gray-300 { color: #d1d5db; }
.tz-price { font-size: 15px; font-weight: 700; color: var(--tz-black); }
.tz-shop-btn {
  margin-top: auto; width: 100%;
  background: var(--tz-orange); color: #fff;
  font-size: 13px; font-weight: 700; padding: 11px 12px;
  border: none; cursor: pointer; text-align: center; display: block; text-decoration: none;
  border-radius: 4px;
}
.tz-shop-btn:hover { background: var(--tz-orange-dark); }

/* Category cards — horizontal: image left, copy right (TargetSite ~403×250) */
.tz-cat {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 250px;
  background: #fdf5ee;
  border: 1px solid #f0c9a8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease;
}
.tz-cat:hover { box-shadow: 0 12px 28px -16px rgba(232,93,4,.45); }
.tz-cat-media {
  position: relative; background: #f7ebe0; min-height: 180px;
}
.tz-cat-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tz-cat-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.25rem 1.35rem; text-align: left; gap: 0.45rem;
}
.tz-cat-body h3 {
  margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--tz-black); line-height: 1.2;
}
.tz-cat-body p {
  margin: 0; font-size: 0.82rem; color: var(--tz-muted); line-height: 1.45;
}
.tz-cat-body .tz-shop-btn {
  margin-top: 0.65rem; width: auto; align-self: flex-start;
  padding: 0.5rem 1rem; font-size: 0.72rem; border-radius: 999px;
}
@media (max-width: 767px) {
  .tz-cat { grid-template-columns: 1fr; min-height: 0; }
  .tz-cat-media { min-height: 160px; aspect-ratio: 16/10; }
  .tz-cat-body { text-align: center; align-items: center; }
}

/* Size chips */
.size-chip {
  min-width: 2.6rem; height: 2.6rem;
  border: 1px solid #cfcfcf; background: #fff;
  font-weight: 700; font-size: 13px; cursor: pointer; border-radius: 4px;
}
.size-chip.is-active { border-color: var(--tz-black); border-width: 2px; }

/* Shop page banner */
.tz-page-banner {
  position: relative;
  background: #1a1a1a center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 3.25rem 1rem;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tz-page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.tz-page-banner > * { position: relative; z-index: 1; }

.tz-stock {
  display: inline-block;
  background: var(--tz-orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.45rem 0.95rem; border-radius: 999px;
}

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-in,
[data-reveal].revealed,
[data-reveal].in-view { opacity: 1; transform: none; }
.hero-slide { opacity: 1; transition: opacity .5s ease; }
.hero-slide.is-hidden { opacity: 0; pointer-events: none; }
.mobile-menu.is-open { transform: translateX(0) !important; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--tz-black); color: #fff; padding: 10px 18px; font-size: 14px; font-weight: 600;
  z-index: 100; box-shadow: 0 8px 24px rgba(0,0,0,.25); border-radius: 6px;
}

[data-cart-drawer].is-open { transform: translateX(0) !important; }
[data-drawer-overlay].is-open { opacity: 1 !important; pointer-events: auto !important; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 8; height: 42px; width: 42px; border-radius: 999px;
  background: var(--tz-black); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-size: 20px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }
.hero-arrow:hover { background: var(--tz-orange); }

/* TargetSite-style hero banner (2:1 image carousel) */
.tz-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 220px;
  max-height: 632px;
  background: #fff;
  overflow: hidden;
  border-radius: 2px;
}
.tz-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
  display: block;
  background: #fff;
}
.tz-banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.tz-banner--images .tz-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .tz-banner { aspect-ratio: 16 / 10; max-height: none; }
}

@media (max-width: 640px) {
  .tz-banner {
    aspect-ratio: auto;
    min-height: 360px;
  }
  .tz-banner-overlay {
    align-items: flex-end !important;
    justify-content: center;
    padding: 1.25rem 1.25rem 3rem;
  }
  .tz-banner-overlay h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .tz-banner-overlay p {
    font-size: 0.875rem;
  }
  .tz-banner-overlay a {
    margin-top: 1rem;
    padding: 0.65rem 1.5rem;
  }
  .hero-arrow {
    height: 32px;
    width: 32px;
    font-size: 16px;
    opacity: 0.85;
  }
  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 8px; }
}

/* Header / nav */
.tz-nav-link {
  color: #fff; font-size: 0.84rem; font-weight: 500;
  padding: 0.9rem 0.6rem; display: inline-flex; align-items: center; gap: 0.25rem;
  white-space: nowrap; text-decoration: none;
}
.tz-nav-link:hover, .tz-nav-link.is-active { color: var(--tz-orange); }
.tz-store-btn {
  background: var(--tz-orange); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 0.55rem 1rem; display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; white-space: nowrap; border-radius: 6px;
}
.tz-store-btn:hover { background: var(--tz-orange-dark); }

.tz-dropdown { position: relative; }
.tz-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--tz-line); box-shadow: 0 12px 28px rgba(0,0,0,.12);
  z-index: 50; padding: 0.4rem 0; border-radius: 6px;
}
.tz-dropdown:hover .tz-dropdown-menu { display: block; }
.tz-dropdown-menu a {
  display: block; padding: 0.55rem 1rem; font-size: 0.82rem; color: var(--tz-ink); text-decoration: none;
}
.tz-dropdown-menu a:hover { background: var(--tz-bg); color: var(--tz-orange); }

.tz-search {
  display: flex; width: 100%; max-width: 560px; border: 1px solid #d0d0d0;
  border-radius: 8px; overflow: hidden; background: #fff;
}
.tz-search input {
  flex: 1; border: 0; padding: 0.7rem 1rem; font-size: 0.9rem; font-family: inherit; outline: none;
}
.tz-search button {
  width: 48px; background: var(--tz-black); color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}


/* Limited offer band */
.tz-offer-band {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 4.5rem 1.25rem;
  background: #1c1c1c center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
}
.tz-offer-band::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.58);
}
.tz-offer-band > * { position: relative; z-index: 1; }

.tz-mnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  background: #fff; border-top: 1px solid var(--tz-line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0.35rem 0 env(safe-area-inset-bottom);
}
.tz-mnav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 600; color: var(--tz-muted); text-decoration: none; padding: 0.35rem;
}
.tz-mnav a:hover { color: var(--tz-orange); }
@media (min-width: 1024px) { .tz-mnav { display: none; } }
body { padding-bottom: 56px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

.tz-filter-card {
  background: #fff; border: 1px solid var(--tz-line); border-radius: 10px; padding: 1.15rem;
}

/* Price: never split currency from digits; keep card rows aligned on phone */
.product-card-price,
.product-card .pc-price,
.product-card .pc-price-was,
.product-card .dn-price,
.product-card .dn-price-was,
.product-card .sh-price,
.product-card .sh-price-was,
.product-card .dm-price,
.product-card .dm-price-was,
.product-card .fk-price,
.product-card .fk-price-was,
.product-card .rw-price,
.product-card .rw-price-was,
.product-card .hl-price,
.product-card .hl-price-was,
.product-card .nr-price,
.product-card .nr-price-was,
.product-card .tz-price {
  white-space: nowrap !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.product-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.375rem;
  row-gap: 0.125rem;
  min-height: 1.5rem;
}
@media (max-width: 640px) {
  .product-card-price,
  .sh-card-price,
  .dm-card-price,
  .fk-card-price,
  .dn-card-price,
  .nr-card-price,
  .rw-card-price,
  .hl-card-price,
  .tz-price {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.125rem;
  }
  .product-card-price > span,
  .sh-card-price > span,
  .dm-card-price > span,
  .fk-card-price > span,
  .dn-card-price > span,
  .nr-card-price > span,
  .hl-card-price > span,
  .tz-price > span {
    white-space: nowrap !important;
    display: inline-block;
    max-width: 100%;
  }
  .product-card-price > span:first-child {
    font-size: 0.9rem;
  }
}

/* WaveSeller developer credit — high visibility strip */
.ws-dev-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1rem;
  background: #020617;
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  border-top: 3px solid #38bdf8;
}
.ws-dev-credit strong {
  color: #38bdf8;
  font-weight: 800;
  font-size: 1.05rem;
  margin-left: 0.25rem;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .ws-dev-credit {
    font-size: 0.9rem;
    padding: 1rem 0.75rem;
  }
  .ws-dev-credit strong {
    font-size: 1rem;
  }
}
