/* ═══════════════════════════════════════════════
   TEKLOFTS — SHOP / ARCHIVE PAGE (shop.css)
   Prefix: tkshop__
   ═══════════════════════════════════════════════ */

.tkshop { min-height: 80vh; }



/* ═══════════════════════════════════════════════════
   WooCommerce native .products <ul> reset
   WC outputs <ul class="products columns-N"> around
   the loop even when we try to suppress it. These
   rules ensure it never breaks our CSS grid layout.
═══════════════════════════════════════════════════ */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: contents !important; /* dissolves the ul so children join our grid directly */
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}

ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  /* Reset all WC float/width/margin on li.product */
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

/* WC columns classes — neutralise */
.woocommerce ul.products.columns-2 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce ul.products.columns-5 li.product {
  width: auto !important;
  float: none !important;
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARD — BASE STYLES
   Used on: homepage (.fbx25-products-grid)
            shop page (.tkshop__grid)
            related products, best sellers, sale
   ═══════════════════════════════════════════════════ */

/* Grid containers */
.fbx25-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Card shell ── */
.fbx25-product-card {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow  0.3s var(--ease-out),
    transform   0.3s var(--ease-out);
}
.fbx25-product-card:hover {
  border-color: var(--clr-border-2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), 0 0 28px rgba(13,148,136,0.07);
  transform: translateY(-3px);
}

/* ── Image wrapper ── */
.fbx25-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--clr-bg-3);
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.fbx25-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.fbx25-product-card:hover .fbx25-card__img-wrap img {
  transform: scale(1.06);
}
.fbx25-card__img-hover {
  position: absolute; inset: 0; pointer-events: none;
}

/* ── Badges (Sale / New / Sold Out) ── */
.fbx25-card__badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 3;
}
.fbx25-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.fbx25-badge--sale  { background: var(--clr-red); }
.fbx25-badge--new   { background: var(--clr-green); }
.fbx25-badge--out   { background: var(--clr-bg-3); color: var(--clr-text-3); border: 1px solid var(--clr-border-2); }

/* ── Quick actions (eye / heart) ── */
.fbx25-card__actions {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 3;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
  pointer-events: none;
}
.fbx25-product-card:hover .fbx25-card__actions {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.fbx25-card__action {
  width: 34px;
  height: 34px;
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out);
}
.fbx25-card__action svg,
.fbx25-card__action span { color: #fff !important; }
.fbx25-card__action svg path,
.fbx25-card__action svg line,
.fbx25-card__action svg circle,
.fbx25-card__action svg polyline { stroke: #fff !important; }
.fbx25-card__action:hover {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  transform: scale(1.1);
}

/* ── Slide-up add-to-cart bar ── */
.fbx25-card__add-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.65rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.25s var(--ease-out);
  z-index: 3;
}
.fbx25-product-card:hover .fbx25-card__add-bar {
  transform: translateY(0);
}
.fbx25-card__add-btn {
  width: 100%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  padding: 0.55rem 0.75rem;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: background 0.2s, border-color 0.2s;
}
.fbx25-card__add-btn *,
.fbx25-card__add-btn svg path,
.fbx25-card__add-btn svg line { color: #fff !important; stroke: #fff !important; }
.fbx25-card__add-btn:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}
.fbx25-card__add-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fbx25-card__add-btn.disabled:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* ── Card body (text content) ── */
.fbx25-card__body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex: 1;
}
.fbx25-card__cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--clr-text-3);
}
.fbx25-card__name {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--clr-text);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.fbx25-product-card:hover .fbx25-card__name { color: var(--clr-teal); }

/* ── Star rating ── */
.fbx25-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.fbx25-stars {
  display: flex;
  gap: 1px;
}
.fbx25-card__review-count {
  font-size: 0.68rem;
  color: var(--clr-text-3);
}

/* ── Price row ── */
.fbx25-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.3rem;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.fbx25-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.fbx25-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}
/* WooCommerce wraps price in a <span> — override its color */
.fbx25-card__price .woocommerce-Price-amount,
.fbx25-card__price .amount { color: var(--clr-text) !important; }

.fbx25-card__price-was {
  font-size: 0.78rem;
  color: var(--clr-text-3);
  text-decoration: line-through;
}
.fbx25-card__price-was .woocommerce-Price-amount,
.fbx25-card__price-was .amount { color: var(--clr-text-3) !important; text-decoration: line-through; }

.fbx25-card__save {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--clr-green);
  background: rgba(46,204,113,0.1);
  padding: 0.12rem 0.42rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ── Skeleton loading state ── */
.fbx25-product-card--skeleton {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
}
.fbx25-product-card--skeleton::after {
  content: '';
  display: block;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(
    90deg,
    var(--clr-surface) 25%,
    var(--clr-surface-2) 50%,
    var(--clr-surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fbx25-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fbx25-products-grid { grid-template-columns: 1fr; }
}


/* ─── WC catalog ordering override ─── */
.woocommerce-ordering,
.tkshop__sort-wrap {
  margin: 0 !important;
}
.woocommerce-ordering select,
.tkshop__sort-wrap select {
  appearance: none !important;
  background: var(--clr-surface) !important;
  border: 1px solid var(--clr-border-2) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.48rem 2.2rem 0.48rem 0.85rem !important;
  font-size: 0.8rem !important;
  color: var(--clr-text) !important;
  font-family: var(--font-body) !important;
  cursor: pointer;
  outline: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238888a0' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.65rem center !important;
  transition: border-color 0.2s !important;
  height: auto !important;
}
.woocommerce-ordering select:focus { border-color: var(--clr-teal) !important; }

/* ─── Hero ─── */
.tkshop__hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  padding: 4rem 0 3rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--clr-border);
}

.tkshop__hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  transition: opacity 0.3s;
}
.tkshop__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--clr-bg) 40%, transparent 100%);
}

.tkshop__hero-orb {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.tkshop__hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.14) 0%, transparent 65%);
  top: -200px; left: 50%; transform: translateX(-50%);
}
.tkshop__hero-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  top: -100px; right: -80px;
}

.tkshop__hero-inner { position: relative; z-index: 2; }

.tkshop__breadcrumb {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; color: var(--clr-text-3);
  margin-bottom: 0.75rem; flex-wrap: wrap;
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.tkshop__breadcrumb a { color: var(--clr-text-3); transition: color 0.2s; }
.tkshop__breadcrumb a:hover { color: var(--clr-teal); }
.woocommerce-breadcrumb .fbx-bc-sep { margin-inline: 0.2rem; opacity: 0.4; }

.tab-eyebrow {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-teal);
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem;
}
.tab-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--clr-teal); }

.tkshop__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1;
  margin-bottom: 0.65rem; color: var(--clr-text);
}
.tkshop__hero-sub {
  font-size: 0.95rem; color: var(--clr-text-2);
  max-width: 500px; line-height: 1.65; margin-bottom: 1.5rem;
}

/* Category quick-nav pills in hero */
.tkshop__cat-pills {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem;
}
.tkshop__cat-pill {
  display: inline-flex; align-items: center;
  padding: 0.38rem 0.9rem; border-radius: 9999px;
  font-size: 0.8rem; font-weight: 500;
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  color: var(--clr-text-2); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tkshop__cat-pill:hover,
.tkshop__cat-pill--active {
  background: rgba(13,148,136,0.12);
  border-color: rgba(13,148,136,0.3);
  color: var(--clr-teal);
}

/* ─── Main layout ─── */
.tkshop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-block: 2.25rem 6rem;
}

/* ─── Sidebar ─── */
.tkshop__sidebar {
  position: sticky;
  top: calc(66px + 28px + 1rem);
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-border-2) transparent;
}

.tkshop__sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.tkshop__sidebar-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clr-text-3);
  font-family: var(--font-mono);
}
.tkshop__clear-all {
  font-size: 0.72rem; color: var(--clr-teal); font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 0;
  transition: opacity 0.2s;
}
.tkshop__clear-all:hover { opacity: 0.7; }

/* Active filter tags */
.tkshop__active-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.tkshop__active-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem; border-radius: 9999px;
  background: rgba(13,148,136,0.12); color: var(--clr-teal);
  border: 1px solid rgba(13,148,136,0.25); font-size: 0.72rem; font-weight: 500;
}
.tkshop__active-tag-rm {
  cursor: pointer; opacity: 0.7; font-size: 0.9rem; line-height: 1;
  transition: opacity 0.15s;
}
.tkshop__active-tag-rm:hover { opacity: 1; }

/* Filter groups */
.tkshop__filter-group {
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 1.1rem; padding-bottom: 1.1rem;
}
.tkshop__filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.tkshop__filter-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; font-weight: 600; color: var(--clr-text);
  margin-bottom: 0.85rem; padding: 0; font-family: var(--font-body);
  transition: color 0.2s;
}
.tkshop__filter-head:hover { color: var(--clr-text-2); }
.tkshop__filter-head svg { transition: transform 0.2s; flex-shrink: 0; }

.tkshop__filter-body { /* visible by default */ }

.tkshop__filter-pills { display: flex; flex-direction: column; gap: 0.2rem; }
.tkshop__fpill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.38rem 0.65rem; border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--clr-text-2); text-decoration: none;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  background: none; border: none; font-family: var(--font-body); width: 100%; text-align: left;
}
.tkshop__fpill:hover { background: var(--clr-surface); color: var(--clr-text); }
.tkshop__fpill.active {
  background: rgba(13,148,136,0.12); color: var(--clr-teal);
}
.tkshop__fpill-count {
  font-size: 0.68rem; color: var(--clr-text-3);
  background: var(--clr-surface); padding: 0.07rem 0.42rem;
  border-radius: 9999px; flex-shrink: 0;
}
.tkshop__fpill.active .tkshop__fpill-count { background: rgba(13,148,136,0.18); color: var(--clr-teal); }

/* Price range */
.tkshop__price-range { display: flex; flex-direction: column; gap: 0.65rem; }
.tkshop__price-inputs { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }
.tkshop__price-input {
  flex: 1; background: var(--clr-surface);
  border: 1px solid var(--clr-border-2); border-radius: var(--r-sm);
  padding: 0.4rem 0.65rem; font-size: 0.8rem;
  color: var(--clr-text); font-family: var(--font-body); outline: none;
  transition: border-color 0.2s;
}
.tkshop__price-input:focus { border-color: var(--clr-teal); }
.tkshop__price-sep { color: var(--clr-text-3); font-size: 0.8rem; flex-shrink: 0; }
.tkshop__price-apply {
  width: 100%; padding: 0.45rem 0.85rem;
  background: var(--clr-surface); border: 1px solid var(--clr-border-2);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; color: var(--clr-text-2); cursor: pointer; transition: all 0.2s;
}
.tkshop__price-apply:hover { background: var(--clr-teal); border-color: var(--clr-teal); color: #fff; }

/* Rating */
.tkshop__rating-filter { display: flex; flex-direction: column; gap: 0.22rem; }
.tkshop__rating-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.32rem 0.5rem; border-radius: var(--r-sm);
  cursor: pointer; font-size: 0.82rem; color: var(--clr-text-2);
  transition: background 0.2s;
}
.tkshop__rating-row:hover { background: var(--clr-surface); }
.tkshop__rating-cb { accent-color: var(--clr-teal); }
.tkshop__rating-stars { display: flex; gap: 1px; }

/* ─── Toolbar ─── */
.tkshop__toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.tkshop__count { font-size: 0.85rem; color: var(--clr-text-3); }
.tkshop__count strong { color: var(--clr-text); font-weight: 600; }

.tkshop__toolbar-right { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; min-width: 0; }

.tkshop__mobile-filter-btn {
  display: none; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem; background: var(--clr-surface);
  border: 1px solid var(--clr-border-2); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--clr-text-2); cursor: pointer; transition: all 0.2s; position: relative;
}
.tkshop__mobile-filter-btn:hover { background: var(--clr-surface-2); }
.tkshop__filter-badge {
  position: absolute; top: -5px; right: -5px;
  width: 16px; height: 16px; background: var(--clr-teal); color: #fff;
  font-size: 0.6rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* View toggle */
.tkshop__view-toggle {
  display: flex; background: var(--clr-surface);
  border: 1px solid var(--clr-border); border-radius: var(--r-sm); overflow: hidden;
}
.tkshop__view-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-3); cursor: pointer; border: none; background: none;
  transition: background 0.2s, color 0.2s;
}
.tkshop__view-btn.active { background: var(--clr-surface-2); color: var(--clr-text); }

/* Active price filter tag */
.tkshop__active-price-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; border-radius: 9999px; margin-bottom: 1.25rem;
  background: rgba(13,148,136,0.1); color: var(--clr-teal);
  border: 1px solid rgba(13,148,136,0.25); font-size: 0.78rem; font-weight: 500;
}
.tkshop__price-remove {
  color: var(--clr-teal); font-weight: 700; font-size: 1rem;
  line-height: 1; cursor: pointer; opacity: 0.7; transition: opacity 0.15s;
}
.tkshop__price-remove:hover { opacity: 1; }

/* ─── Product grid ─── */
.tkshop__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tkshop__grid.tkshop__grid--list { grid-template-columns: 1fr; }
.tkshop__grid.tkshop__grid--list .fbx25-product-card {
  flex-direction: row; max-height: 170px; overflow: hidden;
}
.tkshop__grid.tkshop__grid--list .fbx25-card__img-wrap {
  width: 170px; min-width: 170px; max-width: 170px;
  aspect-ratio: unset; overflow: hidden; flex-shrink: 0;
}
.tkshop__grid.tkshop__grid--list .fbx25-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tkshop__grid.tkshop__grid--list .fbx25-card__body {
  flex: 1; min-width: 0; overflow: hidden;
}
.tkshop__grid.tkshop__grid--list .fbx25-card__actions { flex-direction: row; }
.tkshop__grid.tkshop__grid--list .fbx25-card__add-bar { display: none; }

/* ─── Pagination ─── */
.tkshop__pagination { margin-top: 3rem; }
.tkshop__pagination ul,
.tkshop__pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 0.35rem; list-style: none; flex-wrap: wrap; padding: 0; margin: 0;
}
.tkshop__pagination li { display: contents; }
.tkshop__pagination .page-numbers a,
.tkshop__pagination .page-numbers span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 500;
  color: var(--clr-text-2); border: 1px solid var(--clr-border);
  background: var(--clr-surface); text-decoration: none; transition: all 0.2s;
}
.tkshop__pagination .page-numbers a:hover { border-color: var(--clr-teal); color: var(--clr-teal); }
.tkshop__pagination .page-numbers.current { background: var(--grad-brand); border-color: transparent; color: #fff; }
.tkshop__pagination .page-numbers.dots { border: none; background: none; pointer-events: none; }
.tkshop__pagination .prev,
.tkshop__pagination .next { width: auto !important; padding-inline: 0.85rem; }

/* ─── Empty state ─── */
.tkshop__empty { text-align: center; padding: 5rem 2rem; grid-column: 1/-1; }
.tkshop__empty-icon { font-size: 4rem; margin-bottom: 1.25rem; opacity: 0.45; }
.tkshop__empty-title {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  letter-spacing: -0.035em; margin-bottom: 0.75rem;
}
.tkshop__empty-sub { color: var(--clr-text-2); font-size: 0.95rem; max-width: 400px; margin-inline: auto; }
.tkshop__empty-actions { margin-top: 1.75rem; }

/* ─── Mobile overlay for sidebar ─── */
.tkshop__overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.tkshop__overlay.open { opacity: 1; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .tkshop__layout { grid-template-columns: 230px 1fr; }
  .tkshop__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tkshop__layout { grid-template-columns: 1fr; padding-top: 1.5rem; }

  .tkshop__sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0; width: min(300px, 90vw);
    z-index: 999; max-height: 100vh; border-radius: 0;
    border: none; border-right: 1px solid var(--clr-border);
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
  }
  .tkshop__sidebar.open { transform: translateX(0); }
  .tkshop__overlay { display: block; pointer-events: none; }
  .tkshop__overlay.open { pointer-events: all; }

  .tkshop__mobile-filter-btn { display: flex; }
  .tkshop__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .tkshop__hero { padding: 3rem 0 2rem; }
}

@media (max-width: 480px) {
  .tkshop__grid { grid-template-columns: 1fr; }
  .tkshop__toolbar { flex-direction: column; align-items: flex-start; }
  .tkshop__cat-pills { display: none; } /* too cramped on small screens */
}
