/**
 * TriMarc's Corner — Browse Page Styles
 * File: trimarcs-browse.css
 *
 * Responsive breakpoints:
 *   Desktop  : 3-column grid, sidebar left
 *   Tablet   : ≤ 1024px — 2-column grid
 *   Mobile   : ≤ 768px  — sidebar stacks above grid, 2-col grid, hamburger nav
 *   Sm Mobile: ≤ 480px  — 1-column grid
 */

/* ─── RESET & BASE ──────────────────────────────────────────────────────────── */
.tmc-page-outer *,
.tmc-page-outer *::before,
.tmc-page-outer *::after { box-sizing: border-box; }

.tmc-page-outer {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  color: #2d2d2d;
}

/* ─── PROMO BANNER ──────────────────────────────────────────────────────────── */
.tmc-promo-banner {
  background: #c7272d;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.tmc-promo-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tmc-promo-badge {
  background: #fff;
  color: #c7272d;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  padding: 8px 16px;
  line-height: 1;
}
.tmc-promo-badge span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c7272d;
  margin-top: 3px;
}
.tmc-promo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tmc-promo-sub { font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; }
.tmc-promo-expires-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tmc-promo-expires-row strong {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.tmc-page-hero {
  background: #2d2d2d;
  text-align: center;
  padding: 48px 32px 40px;
}
.tmc-page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.tmc-hero-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tmc-hero-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.tmc-hero-contact-item i { font-size: 12px; color: rgba(255,255,255,0.6); }
.tmc-hero-contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; }
.tmc-hero-contact-item a:hover { color: #fff; }
.tmc-hero-contact-divider { color: rgba(255,255,255,0.25); font-size: 12px; }

/* ─── JOURNEY BAR ───────────────────────────────────────────────────────────── */
.tmc-journey-bar {
  background: #c7272d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.tmc-j-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.tmc-j-arrow { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ─── SHOP TOOLBAR ──────────────────────────────────────────────────────────── */
.tmc-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: #fff;
  border-bottom: 1px solid #e4e0db;
  flex-wrap: wrap;
  gap: 10px;
}
.tmc-result-count { font-size: 11px; color: #999; }
.tmc-cat-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.tmc-cf {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #c7272d;
  color: #c7272d;
  background: transparent;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tmc-cf:hover,
.tmc-cf.on { background: #c7272d; color: #fff; }
.tmc-cf-new { background: #fff; }
.tmc-cf-new.on { background: #c7272d; color: #fff; }
.tmc-sort-sel {
  font-size: 10px;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  border: 1px solid #d4cfc8;
  background: #fff;
  color: #555;
  padding: 5px 10px;
  cursor: pointer;
}

/* ─── BODY LAYOUT ───────────────────────────────────────────────────────────── */
.tmc-body-layout { display: flex; background: #F5F5F5; }

/* ─── SIDEBAR ───────────────────────────────────────────────────────────────── */
.tmc-sidebar { width: 260px; flex-shrink: 0; background: #2d2d2d; }
.tmc-sb-header { background: #c7272d; padding: 18px 24px; }
.tmc-sb-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tmc-sb-body { padding: 8px 0 24px; }
.tmc-sb-sec { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 22px; }
.tmc-sb-sec:last-child { border-bottom: none; }
.tmc-sb-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tmc-sb-title i { font-size: 12px; color: #c7272d; }
.tmc-sb-row {
  font-size: 12px;
  color: #bbb;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.12s;
}
.tmc-sb-row:last-child { border-bottom: none; }
.tmc-sb-row:hover,
.tmc-sb-row.active { color: #fff; }
.tmc-sb-count {
  background: rgba(255,255,255,0.1);
  color: #888;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 2px;
}
.tmc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.tmc-dot-green { background: #4a8a4a; }
.tmc-dot-hold  { background: #c7272d; }
.tmc-p-range { display: flex; gap: 10px; margin-top: 4px; width: 100%; }
.tmc-p-input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 10px;
  font-size: 11px;
  color: #2d2d2d;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
}
.tmc-p-input::placeholder { color: #aaa; }
.tmc-apply-btn {
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  background: #c7272d;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
  transition: background 0.15s;
}
.tmc-apply-btn:hover { background: #a82025; }
.tmc-visit-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  margin: 0 22px 24px;
}
.tmc-vp-head {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tmc-vp-head i { color: #c7272d; font-size: 12px; }
.tmc-vp-line { font-size: 11px; color: #aaa; line-height: 1.9; }
.tmc-vp-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  color: #fff;
  background: #c7272d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.tmc-vp-link:hover { background: #a82025; color: #fff; }

/* ─── PRODUCT GRID ──────────────────────────────────────────────────────────── */
.tmc-grid {
  flex: 1;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  background: #F5F5F5;
}
.tmc-section-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  margin-top: 4px;
}
.tmc-section-label-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  margin-right: 16px;
}
.tmc-section-label-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tmc-section-label-line { flex: 1; height: 2px; background: #c7272d; }
.tmc-section-promo-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  background: #c7272d;
  color: #fff;
  padding: 5px 12px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ─── PRODUCT CARD ──────────────────────────────────────────────────────────── */
.tmc-card { background: #fff; border: 1px solid #e4e0db; position: relative; }
.tmc-card:hover .tmc-c-overlay  { opacity: 1; }
.tmc-card:hover .tmc-enlarge-btn { opacity: 1; }
.tmc-card.sold { opacity: 0.85; }
.tmc-c-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.tmc-c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tmc-c-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,45,45,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.18s;
}
.tmc-ov-btn {
  width: 148px;
  text-align: center;
  padding: 7px 0;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background 0.12s;
}
.tmc-ov-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.tmc-ov-pri { background: #c7272d; border-color: #c7272d; }
.tmc-ov-pri:hover { background: #a82025; }
.tmc-enlarge-btn {
  position: absolute;
  bottom: 9px;
  left: 9px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2d2d2d;
  font-size: 13px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.18s, color 0.15s;
}
.tmc-enlarge-btn:hover { background: #fff; color: #c7272d; }
.tmc-wl {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888;
  font-size: 13px;
  z-index: 2;
  transition: color 0.12s;
}
.tmc-wl:hover,
.tmc-wl.active { color: #c7272d; }
.tmc-bdg {
  position: absolute;
  top: 9px;
  left: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
  z-index: 2;
}
.tmc-bdg-new { background: #fff; color: #c7272d; border: 1px solid #c7272d; }
.tmc-promo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c7272d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tmc-promo-tag-pct { font-size: 13px; font-weight: 700; }
.tmc-sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,30,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
  pointer-events: none;
}
.tmc-sold-stamp {
  border: 3px solid #fff;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 20px;
  transform: rotate(-15deg);
}
.tmc-sold-sub { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 0.16em; text-transform: uppercase; }
.tmc-c-body { padding: 12px; }
.tmc-c-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  color: #c7272d;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.tmc-c-name {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #2d2d2d;
  line-height: 1.4;
  margin-bottom: 4px;
}
.tmc-c-avail { font-size: 9px; color: #777; display: flex; align-items: center; margin-bottom: 6px; }
.tmc-c-avail.tmc-sold-text { color: #999; }
.tmc-c-desc { font-size: 10px; color: #aaa; line-height: 1.6; margin-bottom: 9px; }
.tmc-c-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ede9e3;
  padding-top: 8px;
}
.tmc-c-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c7272d;
}
.tmc-c-price bdi { font-weight: 700; }
.tmc-sold-price { color: #aaa; text-decoration: line-through; font-weight: 400; }
.tmc-c-actions { display: flex; gap: 8px; }
.tmc-c-cta {
  font-size: 9px;
  color: #c7272d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #c7272d;
  cursor: pointer;
  padding-bottom: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.tmc-c-cta:hover { color: #a82025; border-color: #a82025; }
.tmc-sold-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #999;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.tmc-card.tmc-hidden,
.tmc-section-label.tmc-hidden { display: none; }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.tmc-how {
  background: #fff;
  border-top: 1px solid #e4e0db;
  padding: 36px 32px;
  display: flex;
}
.tmc-h-step { flex: 1; text-align: center; padding: 0 12px; position: relative; }
.tmc-h-step + .tmc-h-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 1px;
  height: 38px;
  background: #e4e0db;
}
.tmc-h-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #c7272d;
  color: #c7272d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 13px;
}
.tmc-h-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tmc-h-desc { font-size: 10px; color: #999; line-height: 1.7; }

/* ─── LIGHTBOX ──────────────────────────────────────────────────────────────── */
.tmc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.tmc-lightbox.open { display: flex; }
.tmc-lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.tmc-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.tmc-lightbox-close:hover { opacity: 1; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tmc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Top bar */
  .tmc-top-bar { font-size: 9px; letter-spacing: 0.12em; padding: 8px 12px; }

  /* Promo banner */
  .tmc-promo-banner { padding: 14px 16px; gap: 8px; }
  .tmc-promo-title { font-size: 13px; }
  .tmc-promo-badge { font-size: 20px; padding: 6px 10px; }
  .tmc-promo-sub { font-size: 10px; }

  /* Hero */
  .tmc-page-hero { padding: 28px 16px 22px; }
  .tmc-page-hero h1 { font-size: 18px; letter-spacing: 0.06em; margin-bottom: 14px; }
  .tmc-hero-contact { flex-direction: column; gap: 7px; align-items: center; }
  .tmc-hero-contact-divider { display: none; }
  .tmc-hero-contact-item { font-size: 10px; }

  /* Journey bar */
  .tmc-journey-bar { padding: 10px 12px; gap: 6px; }
  .tmc-j-step { font-size: 8px; gap: 4px; }
  .tmc-j-arrow { font-size: 9px; }

  /* Shop toolbar */
  .tmc-shop-toolbar { padding: 10px 14px; flex-direction: column; align-items: flex-start; }
  .tmc-cat-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tmc-cat-filters::-webkit-scrollbar { display: none; }
  .tmc-cf, .tmc-cf-new { flex-shrink: 0; }
  .tmc-sort-sel { width: 100%; }

  /* Body layout — sidebar stacks above grid */
  .tmc-body-layout { flex-direction: column; }
  .tmc-sidebar { width: 100%; }
  .tmc-sb-sec { padding: 14px 16px; }
  .tmc-visit-panel { margin: 0 16px 20px; }

  /* Grid */
  .tmc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  /* Section label */
  .tmc-section-label { flex-wrap: wrap; gap: 6px; }
  .tmc-section-label-text { font-size: 14px; }
  .tmc-section-promo-tag { font-size: 8px; padding: 3px 8px; }

  /* Cards */
  .tmc-c-name { font-size: 11px; }
  .tmc-c-desc { font-size: 9px; }
  .tmc-c-price { font-size: 12px; }
  .tmc-ov-btn { width: 120px; font-size: 8px; }
  .tmc-sold-stamp { font-size: 16px; padding: 5px 10px; }

  /* How it works — 2×2 grid */
  .tmc-how { padding: 24px 16px; flex-wrap: wrap; gap: 20px; }
  .tmc-h-step { flex: 0 0 calc(50% - 10px); }
  .tmc-h-step + .tmc-h-step::before { display: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .tmc-grid { grid-template-columns: 1fr; }
  .tmc-page-hero h1 { font-size: 16px; }
  .tmc-promo-title { font-size: 11px; }
  .tmc-section-label-text { font-size: 13px; }
  .tmc-h-step { flex: 0 0 100%; }
}

/* ─── FAVORITES BAR ─────────────────────────────────────────────────────────── */
.tmc-fav-bar {
  background: #fff;
  border-bottom: 1px solid #e4e0db;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tmc-fav-bar-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid #c7272d;
  color: #c7272d;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tmc-fav-bar-btn:hover { background: #c7272d; color: #fff; }
.tmc-fav-bar-btn i { font-size: 13px; }
.tmc-fav-bar-count {
  background: #c7272d;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tmc-fav-bar-btn:hover .tmc-fav-bar-count { background: #fff; color: #c7272d; }

/* ─── FAVORITES MODAL ───────────────────────────────────────────────────────── */
.tmc-fav-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tmc-fav-modal.open { display: flex; }

.tmc-fav-modal-inner {
  background: #fff;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.tmc-fav-modal-header {
  background: #2d2d2d;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.tmc-fav-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tmc-fav-modal-title i { color: #c7272d; }
.tmc-fav-count-badge {
  background: #c7272d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.tmc-fav-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}
.tmc-fav-modal-close:hover { color: #fff; }

.tmc-fav-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Empty state */
.tmc-fav-empty {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
}
.tmc-fav-empty i { font-size: 36px; color: #ddd; display: block; margin-bottom: 12px; }
.tmc-fav-empty p { font-size: 14px; margin-bottom: 6px; }
.tmc-fav-empty-sub { font-size: 12px; color: #ccc; }
.tmc-fav-empty-sub i { font-size: 12px; color: #ccc; display: inline; margin: 0 2px; }

/* Favorites list */
.tmc-fav-list { display: flex; flex-direction: column; gap: 12px; }
.tmc-fav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e4e0db;
  padding: 10px 12px;
}
.tmc-fav-item-img {
  width: 56px;
  height: 70px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #f5f5f5;
}
.tmc-fav-item-body { flex: 1; min-width: 0; }
.tmc-fav-item-brand {
  font-size: 9px;
  color: #c7272d;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3px;
}
.tmc-fav-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tmc-fav-item-price {
  font-size: 12px;
  font-weight: 700;
  color: #c7272d;
}
.tmc-fav-item-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.12s;
}
.tmc-fav-item-remove:hover { color: #c7272d; }

/* Footer / actions */
.tmc-fav-modal-footer {
  border-top: 1px solid #e4e0db;
  padding: 16px 20px;
  flex-shrink: 0;
}
.tmc-fav-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tmc-fav-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #2d2d2d;
  background: #fff;
  color: #2d2d2d;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tmc-fav-action-btn:hover { background: #2d2d2d; color: #fff; }
.tmc-fav-action-email { border-color: #c7272d; color: #c7272d; }
.tmc-fav-action-email:hover { background: #c7272d; color: #fff; }
.tmc-fav-clear { border-color: #ddd; color: #aaa; }
.tmc-fav-clear:hover { background: #c7272d; border-color: #c7272d; color: #fff; }
.tmc-fav-note {
  font-size: 10px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

/* Copied toast */
.tmc-copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2d2d2d;
  color: #fff;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 20000;
  white-space: nowrap;
}
.tmc-copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Mobile */
@media (max-width: 768px) {
  .tmc-fav-bar { padding: 8px 14px; }
  .tmc-fav-modal { padding: 0; align-items: flex-end; }
  .tmc-fav-modal-inner { max-width: 100%; max-height: 90vh; border-radius: 0; }
  .tmc-fav-actions { gap: 6px; }
  .tmc-fav-action-btn { font-size: 9px; padding: 6px 10px; }
}

/* Print styles */
@media print {
  body * { visibility: hidden; }
  .tmc-fav-print-area, .tmc-fav-print-area * { visibility: visible; }
  .tmc-fav-print-area {
    position: fixed;
    inset: 0;
    padding: 40px;
    background: #fff;
  }
}

/* ── All Brands button ── */
.tmc-sb-brand-all {
  font-weight: 600;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  letter-spacing: 0.04em;
}
.tmc-sb-brand-all.active {
  color: #c7272d !important;
}

/* ── Disclaimers ── */
.tmc-promo-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-top: 6px;
  line-height: 1.5;
}
.tmc-hero-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-top: 14px;
  line-height: 1.5;
}
