/* =============================================================================
   Let's Talk Signs — theme styles
   v1.18.0 — light UI, rebuilt to match the client's reference concept
   (index (1) (1).html). Structure, class names and ids are unchanged; only the
   presentation layer was rewritten. Organised by component, no override layers.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. Tokens + base
   -------------------------------------------------------------------------- */
*{margin:0;padding:0;box-sizing:border-box}

:root{
  --ink:#111827;
  --navy:#07111f;
  --navy2:#0c1727;
  --yellow:#ffc800;
  --yellow2:#ffdf5a;
  --yellow-dark:#efbb00;
  --blue:#176db4;
  --blue-soft:#edf4ff;
  --line:#dfe5ec;
  --line-soft:#e8edf3;
  --muted:#667085;
  --soft:#f7f8fa;
  --page:#fbfcfd;
  --green:#14833b;
  --orange:#f57c00;
  --red:#c5221f;
  --white:#fff;
  --shadow:0 18px 55px rgba(15,23,42,.12);
  --shadow-card:0 4px 14px rgba(15,23,42,.045);
  --shadow-hover:0 18px 38px rgba(15,23,42,.11);

  /* Legacy aliases kept so any stray rule/inline style still resolves */
  --bg:#fbfcfd;
  --card:#fff;
  --card2:#f7f8fa;
  --textDark:#111827;
}

html{scroll-behavior:smooth}

body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  background:var(--page);
  color:var(--ink);
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none}
img{max-width:100%}
button,input,select,textarea{font:inherit}
button,a{transition:.2s ease}

/* The dark build painted a radial glow behind the page. The light UI does not. */
.bg-glow{display:none}

.page{position:relative}

.screen-reader-text{
  position:absolute!important;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);
  height:1px;width:1px;overflow:hidden;white-space:nowrap
}

.lts-honeypot{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}

/* -----------------------------------------------------------------------------
   2. Topbar
   -------------------------------------------------------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  min-height:78px;
  padding:0 clamp(16px,3vw,34px);
  background:#fff;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:clamp(14px,2.4vw,34px);
}

.site-logo{display:flex;align-items:center;flex:0 0 auto}
.logo-image{width:112px;height:68px;object-fit:contain;display:block}

.header-nav{
  flex:1;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.nav-btn{
  border:0;
  background:transparent;
  color:var(--ink);
  padding:11px 14px;
  border-radius:10px;
  font-size:13.5px;
  font-weight:850;
  white-space:nowrap;
  cursor:pointer;
}
.nav-btn:hover{background:#f3f5f8;transform:translateY(-1px)}
.nav-btn.active{background:var(--yellow);box-shadow:0 8px 20px rgba(255,200,0,.18)}

.header-actions{display:flex;align-items:center;gap:12px;margin-left:auto;flex:0 0 auto}

.search-btn{
  width:42px;height:42px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  color:var(--ink);
  font-size:20px;
  cursor:pointer;
  display:grid;place-items:center;
}
.search-btn:hover{border-color:#9ca8b7;transform:translateY(-1px)}

.submit-dropdown{position:relative}

.desktop-submit-btn{
  border:0;
  background:var(--yellow);
  color:var(--ink);
  padding:12px 17px;
  border-radius:10px;
  font-size:13.5px;
  font-weight:850;
  cursor:pointer;
  white-space:nowrap;
}
.desktop-submit-btn:hover{background:var(--yellow-dark);transform:translateY(-1px)}
.desktop-submit-btn:after{content:' ▾';font-size:12px}

.submit-menu{
  display:none;
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:250px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  text-align:left;
  z-index:110;
}
.submit-dropdown.open .submit-menu,
.submit-dropdown:hover .submit-menu{display:block}

.submit-menu a{
  display:block;
  padding:11px 12px;
  border-radius:9px;
  font-size:14px;
  font-weight:800;
  color:#253044;
}
.submit-menu a:hover{background:#f1f3f6;color:var(--blue)}

.mobile-menu-toggle{
  display:none;
  width:42px;height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  align-items:center;justify-content:center;flex-direction:column;gap:4px;
}
.mobile-menu-toggle span{width:17px;height:2px;background:var(--ink);border-radius:99px;display:block;transition:.2s}
.site-header.menu-open .mobile-menu-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.site-header.menu-open .mobile-menu-toggle span:nth-child(2){opacity:0}
.site-header.menu-open .mobile-menu-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}


/* -----------------------------------------------------------------------------
   3. Page shells + shared blocks
   -------------------------------------------------------------------------- */
.content-wrap{width:min(1180px,calc(100% - 40px));margin:30px auto 80px}
.page-content-wrap{width:min(980px,calc(100% - 40px));margin:34px auto 80px}

.page-hero{display:grid;grid-template-columns:1fr .82fr;gap:28px;align-items:center;margin:6px 0 30px}

.page-kicker{
  display:block;
  color:#a97600;
  font-size:12px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase;
  margin-bottom:12px;
}

.panel-card,.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
  box-shadow:var(--shadow-card);
}

.page-hero h1,.archive-title,.single-title{
  font-size:clamp(30px,4vw,42px);
  line-height:1.08;
  letter-spacing:-1.1px;
  margin-bottom:14px;
  color:var(--ink);
}
.page-hero p,.panel-card p{color:#4b5565;line-height:1.65;font-size:15.5px}

.feature-image{
  min-height:300px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f3f5f8;
}
.feature-image img{width:100%;height:100%;object-fit:cover;display:block}

.info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:30px 0}
.info-box{
  padding:20px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
}
.info-box strong{display:block;margin-bottom:8px;text-transform:uppercase;font-size:11px;letter-spacing:.9px;color:var(--ink)}
.info-box p{color:#5d6674;font-size:14px;line-height:1.55}

.two-col{display:grid;grid-template-columns:.85fr 1.15fr;gap:26px}

.contact-line{display:grid;grid-template-columns:42px 1fr;gap:16px;padding:16px 0;border-bottom:1px solid var(--line-soft)}
.contact-line:last-child{border-bottom:0}
.contact-line small{display:block;color:var(--muted);text-transform:uppercase;font-weight:900;font-size:11px;letter-spacing:.9px;margin-bottom:5px}

.notice{margin:0 0 20px;padding:15px 17px;border-radius:12px;font-weight:800;font-size:14px}
.notice.success{border:1px solid #a7f3d0;background:#ecfdf5;color:#065f46}
.notice.error{border:1px solid #fecaca;background:#fef2f2;color:#991b1b}

.empty-state{
  text-align:center;
  background:#fff;
  border:1px dashed var(--line);
  border-radius:18px;
  padding:52px 22px;
  max-width:760px;
  margin:0 auto;
}
.empty-state h2{font-size:26px;margin-bottom:10px;color:var(--ink)}
.empty-state p{color:var(--muted);line-height:1.6}

.submit-primary{
  display:inline-block;
  background:var(--yellow);
  color:var(--ink);
  border:0;
  border-radius:9px;
  padding:13px 20px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  text-align:center;
}
.submit-primary:hover{background:var(--yellow-dark);transform:translateY(-1px)}

/* -----------------------------------------------------------------------------
   4. Topic chips (stories / products filter row)
   -------------------------------------------------------------------------- */
.topics{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  width:100%;
  padding:26px 24px 0;
  margin:0 auto 22px;
}
.topics-pills{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;width:100%}

.pill{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  background:#fff;
  color:#253044;
  border-radius:999px;
  padding:11px 16px;
  font-size:13.5px;
  font-weight:800;
  cursor:pointer;
  user-select:none;
}
.pill:hover{border-color:#9aa7b6;transform:translateY(-1px)}
.pill.active{background:var(--yellow);border-color:var(--yellow);color:var(--ink)}
.pill .topic-icon{display:inline-flex;margin-right:8px}
.pill.products-pill{border-color:#e8d38a;background:#fffdf4}
.pill.products-pill:hover{border-color:#d9bd54}
.pill.products-pill.active{background:var(--yellow);border-color:var(--yellow)}

.product-search-wrap{width:min(520px,calc(100vw - 32px));margin:2px auto 0;display:flex;justify-content:center}
.product-filter-search{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--ink);
  padding:13px 20px;
  font-weight:700;
  outline:none;
}
.product-filter-search::placeholder{color:#98a2b3;font-weight:600}
.product-filter-search:focus{border-color:var(--yellow);box-shadow:0 0 0 4px rgba(255,200,0,.14)}

/* -----------------------------------------------------------------------------
   5. Stories / products carousel
   -------------------------------------------------------------------------- */
.hero-wrapper{
  position:relative;
  width:min(1340px,calc(100% - 40px));
  margin:0 auto;
  padding:8px 0 70px;
}

.hero-layout{
  display:grid;
  grid-template-columns:230px minmax(0,780px) 230px;
  gap:28px;
  /* Client revision V2: the previous/next cards sit centred against the main card. */
  align-items:center;
  justify-content:center;
}

.slider-window{position:relative;min-width:0}

/* Side cards: white cards, image on top, copy underneath (reference layout). */
.side-card{
  background:#fff;
  border:1px solid #d7dee7;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  opacity:.72;
  transform:scale(.94);
  transition:.3s ease;
  box-shadow:0 8px 26px rgba(15,23,42,.07);
}
.side-card:hover{opacity:1;transform:scale(.97) translateY(-3px);box-shadow:var(--shadow-hover)}
.side-image-wrap{height:205px;overflow:hidden;background:#f3f5f8}
.side-card img{width:100%;height:100%;object-fit:cover;display:block;transition:.35s ease}
.side-card:hover img{transform:scale(1.04)}
.side-body{padding:17px}
.side-category{color:#168de8;font-size:11px;font-weight:900;letter-spacing:1.1px;text-transform:uppercase;margin-bottom:9px}
.side-title{font-size:21px;line-height:1.15;font-weight:900;letter-spacing:-.5px;margin-bottom:10px;color:var(--ink)}
.side-meta{color:var(--muted);font-size:13px;font-weight:700}
.side-excerpt{margin-top:10px;color:#4b5565;font-size:14px;line-height:1.55}

/* Main reader card */
.main-card{
  position:relative;
  background:#fff;
  border:1px solid #d7dee7;
  border-radius:28px;
  overflow:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  max-height:720px;
  color:var(--ink);
  box-shadow:var(--shadow);
  scrollbar-width:thin;
  scrollbar-color:#cbd3dd transparent;
  transition:transform .42s ease,opacity .42s ease;
}
.main-card::-webkit-scrollbar{width:10px}
.main-card::-webkit-scrollbar-thumb{background:#cbd3dd;border:3px solid #fff;border-radius:999px}
.main-card::-webkit-scrollbar-track{background:#fff}

.main-card.slide-left{animation:slideLeft .42s ease both}
.main-card.slide-right{animation:slideRight .42s ease both}
.main-card.fade{animation:fadeIn .35s ease both}
@keyframes slideLeft{0%{opacity:.1;transform:translateX(60px) scale(.98)}100%{opacity:1;transform:none}}
@keyframes slideRight{0%{opacity:.1;transform:translateX(-60px) scale(.98)}100%{opacity:1;transform:none}}
@keyframes fadeIn{0%{opacity:.2;transform:scale(.98)}100%{opacity:1;transform:none}}

.scroll-hint{
  position:sticky;
  top:14px;
  margin:14px 18px 0 auto;
  width:max-content;
  z-index:6;
  background:#fff7cf;
  border:1px solid #f0d35d;
  border-radius:999px;
  padding:7px 11px;
  font-size:11px;
  font-weight:900;
  color:#6f5700;
  box-shadow:0 5px 14px rgba(15,23,42,.08);
  pointer-events:none;
}

.main-card.inline-reader{height:720px}
.main-image{height:300px;overflow:hidden;background:#f3f5f8}
/* Reference hero: inset inside the card padding, rounded corners */
.main-image.inline-hero-wrap{height:290px;border-radius:18px;margin:4px 0 20px}
.main-image img,.main-image iframe{width:100%;height:100%;object-fit:cover;display:block;border:0}

.main-content{padding:4px 28px 34px;background:#fff;position:relative;z-index:2}
.main-category{color:#168de8;font-size:12px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase;margin-bottom:14px}
.main-title{font-size:clamp(28px,3.4vw,43px);line-height:1.04;letter-spacing:-1.4px;font-weight:900;margin-bottom:16px;color:var(--ink)}

.meta{display:flex;gap:18px;color:var(--muted);margin-bottom:22px;flex-wrap:wrap;font-size:13.5px;font-weight:700}

.description{font-size:16px;line-height:1.72;color:#344054;margin-bottom:24px}
.description p{margin-bottom:18px}
.description h3{font-size:23px;color:var(--navy);margin:28px 0 10px;letter-spacing:-.4px;line-height:1.15}
.description ul,.description ol{padding-left:22px;margin:0 0 18px}
.description li{margin:8px 0}
.description img{border-radius:14px}

.share{display:flex;justify-content:flex-start;align-items:center;gap:16px;border-top:1px solid var(--line);padding-top:22px;flex-wrap:wrap}
.share-left{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.share-left span{font-size:11px;font-weight:900;letter-spacing:1.1px;color:var(--muted)}
.socials{display:flex;gap:10px}
.social{
  width:40px;height:40px;border-radius:50%;
  background:var(--blue-soft);color:#1671db;
  display:grid;place-items:center;
  font-weight:900;border:0;cursor:pointer;
}
.social:hover{background:#e0ebff;transform:translateY(-2px)}
.save-btn{border:0;background:transparent;font-weight:900;color:var(--muted);cursor:pointer;font-size:13px;letter-spacing:.6px}
.main-card .save-btn{display:none}

/* Arrows + dots */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;height:54px;
  border-radius:50%;
  border:0;
  background:#0d1b2e;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:20;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(15,23,42,.22);
}
.arrow:hover{background:#162942;transform:translateY(-50%) scale(1.06)}
.arrow.left{left:calc(50% - 445px)}
.arrow.right{right:calc(50% - 445px)}

.dots{display:flex;justify-content:center;gap:8px;margin-top:20px}
.dot-btn{width:30px;height:5px;border-radius:999px;border:0;background:#c8d0da;cursor:pointer;transition:.2s}
.dot-btn.active{background:var(--yellow);transform:none}

/* Hero media variants */
.hero-gallery{position:relative;width:100%;height:100%;overflow:hidden;background:#f3f5f8}
.hero-gallery img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .65s ease,transform 6s ease;transform:scale(1.03)}
.hero-gallery img.active{opacity:1;transform:scale(1)}
.hero-gallery img:first-child{opacity:1}
.hero-gallery:has(img.active) img:first-child:not(.active){opacity:0}
.hero-gallery-dots{position:absolute;z-index:4;left:50%;bottom:16px;transform:translateX(-50%);display:flex;gap:8px}
.hero-gallery-dots span{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.55);box-shadow:0 0 10px rgba(0,0,0,.35)}
.hero-gallery-dots span.active{background:var(--yellow)}
.single-gallery img{position:absolute}

.lts-hero-video{width:100%;height:100%;display:block;object-fit:cover;background:#000;border:0}
.single-hero .lts-hero-video,.single-media .lts-hero-video{min-height:340px;max-height:600px;object-fit:cover;border-radius:inherit}
.main-image .lts-hero-video{width:100%;height:100%;object-fit:cover}

.embed-wrap,.youtube-embed-wrap,.custom-embed-wrap,.tiktok-embed-wrap{width:100%;height:100%;display:grid;place-items:center;background:#0d1b2e;overflow:hidden}
.embed-wrap iframe,.youtube-embed-wrap iframe,.custom-embed-wrap iframe,.tiktok-embed-wrap iframe{width:100%;height:100%;border:0}
.single-media .youtube-embed-wrap iframe{width:100%;height:100%}

.lts-body-ad{margin:26px 0;padding:18px;border:1px solid var(--line);border-radius:16px;background:var(--soft)}

/* Product blocks inside the reader + on single product pages */
.product-category{color:#a97600}
.product-details{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0 22px}
.product-detail{
  display:flex;gap:10px;align-items:flex-start;
  padding:14px;border:1px solid var(--line);border-radius:12px;background:#fafbfd;
  font-size:14px;line-height:1.5;color:#344054;
}
.product-detail strong{color:var(--ink)}
.detail-icon{font-size:16px;line-height:1.2}
.product-link{color:var(--blue);font-weight:850}
.product-link:hover{color:#0b4f88;text-decoration:underline}
.product-materials{
  margin:0 0 22px;padding:13px 15px;border-radius:12px;
  background:#fffdf4;border:1px solid #f3df89;color:#5f4a00;font-size:14px;font-weight:700
}
.product-side-body .side-category{color:#a97600}

/* -----------------------------------------------------------------------------
   6. Archive grids + story tiles
   -------------------------------------------------------------------------- */
.archive-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:26px}

.story-tile,.archive-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:.2s;
}
.story-tile:hover,.archive-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover);border-color:#c8d1dc}
.story-tile img{width:100%;height:185px;object-fit:cover;display:block;background:#f3f5f8}
.story-tile-body{padding:17px}
.story-tile h2{font-size:20px;line-height:1.2;margin:6px 0 8px;color:var(--ink)}
.story-tile h2 a:hover{color:var(--blue)}
.story-tile p{color:#4b5565;line-height:1.55;font-size:14px}

/* -----------------------------------------------------------------------------
   7. Directory pages (services / resources / marketplace / forum lists)
   -------------------------------------------------------------------------- */
.lts-directory-wrap{width:min(1400px,calc(100% - 40px))}
.lts-directory-head{margin-bottom:24px;text-align:left;background:transparent;border:0;padding:14px 0 0;box-shadow:none}
.lts-directory-head .archive-title{margin-bottom:10px}
.lts-directory-head p{color:#5d6674;line-height:1.6;max-width:720px;margin:0}

.lts-directory-layout{display:grid;grid-template-columns:262px minmax(0,1fr);gap:28px;align-items:start}
.lts-directory-main{min-width:0}

/* Sidebar filters */
.lts-directory-sidebar{display:grid;gap:18px;position:sticky;top:98px}
.lts-filter-card,.lts-cta-card{padding:16px;border-radius:15px;box-shadow:0 5px 20px rgba(15,23,42,.04)}
.lts-filter-heading{font-size:14px;font-weight:900;letter-spacing:0;text-transform:none;color:var(--ink);margin:6px 4px 14px}

.lts-filter-list{display:flex;flex-direction:column;gap:2px}
.lts-filter{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:11px 12px;border-radius:9px;border:1px solid transparent;
  color:#253044;font-size:13px;font-weight:800;transition:.2s;
}
.lts-filter:hover{background:#f3f5f7;transform:translateX(2px)}
.lts-filter.active{background:#ffe78a}
.lts-filter-count{background:#eef1f5;border-radius:10px;padding:3px 8px;font-size:12px;font-weight:850;color:#475467}
.lts-filter.active .lts-filter-count{background:rgba(17,24,39,.1);color:#5f4a00}

.lts-cta-card{background:#fffdf4;border-color:#f3df89}
.lts-cta-card .page-kicker{margin-bottom:8px}
.lts-cta-card p{font-size:13.5px;line-height:1.55;color:#5d6674;margin-bottom:14px}
.lts-cta-card .submit-primary{display:block;width:100%}

/* Toolbar */
.lts-directory-toolbar{display:flex;gap:14px;flex-wrap:wrap;align-items:center;margin-bottom:20px}
.lts-directory-search{
  flex:1;min-width:220px;background:#fff;color:var(--ink);
  border:1px solid var(--line);border-radius:10px;padding:13px 15px;outline:none
}
.lts-directory-sort{
  background:#fff;color:var(--ink);border:1px solid var(--line);
  border-radius:10px;padding:13px 15px;outline:none;cursor:pointer
}
.lts-directory-search:focus,.lts-directory-sort:focus{border-color:var(--yellow);box-shadow:0 0 0 4px rgba(255,200,0,.14)}
.lts-directory-apply{
  background:#fff;color:#253044;border:1px solid var(--line);
  border-radius:10px;padding:13px 20px;font-weight:850;cursor:pointer
}
.lts-directory-apply:hover{background:#f5f8fb;border-color:#c8d1dc}

/* Result line */
.lts-directory-resultline{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:18px}
.lts-directory-count{color:#5d6674;font-size:14px;font-weight:750}
.lts-directory-query{color:var(--ink);font-weight:900}
.lts-directory-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}

.lts-view-toggle{display:flex;border:1px solid var(--line);border-radius:9px;overflow:hidden;background:#fff}
.lts-view-toggle a{padding:9px 13px;font-size:13px;font-weight:850;color:#475467}
.lts-view-toggle a + a{border-left:1px solid var(--line)}
.lts-view-toggle a.active{background:var(--yellow);color:var(--ink)}
.lts-directory-cta{white-space:nowrap}

/* Cards */
.lts-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:0}
.lts-dir-card{display:flex;flex-direction:column;border-radius:13px;position:relative}
.lts-dir-card-media{position:relative;display:block}
.lts-dir-card-media img{width:100%;height:190px;object-fit:cover;display:block;background:#f3f5f8}
.lts-dir-card .story-tile-body{display:flex;flex-direction:column;gap:9px;flex:1;padding:18px 16px 16px}
.lts-dir-card h2{margin:0;font-size:19px;line-height:1.22}
.lts-dir-card h2 a:hover{color:var(--blue)}
.lts-dir-card p{margin:0;font-size:14px;color:#4b5565;line-height:1.6}
.lts-dir-card .page-kicker{margin-bottom:0;font-size:11px}

.lts-dir-badge{
  position:absolute;top:12px;left:12px;
  background:#fff;border:1px solid var(--line);color:#253044;
  border-radius:7px;padding:5px 9px;
  font-size:11px;font-weight:900;letter-spacing:.5px;text-transform:uppercase;
  box-shadow:0 3px 10px rgba(15,23,42,.1);
}
.lts-dir-badge-featured{background:#fff6ce;border-color:#f0dc93;color:#a97600}
.lts-dir-badge-free{background:#e8fbef;border-color:#c8f0d6;color:#1f8a46}
.lts-dir-badge-premium{background:#efe8ff;border-color:#ddd0ff;color:#6d38c7}

.lts-dir-tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:auto;padding-top:4px}
.lts-dir-tag{background:var(--blue-soft);color:#2469aa;border:0;border-radius:999px;padding:5px 9px;font-size:11px;font-weight:800}

.lts-listing-location{color:var(--muted);font-size:12.5px;font-weight:750}
.lts-listing-foot{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;margin-top:auto;padding-top:12px;border-top:1px solid var(--line)}
.lts-listing-price{color:var(--green);font-size:19px;font-weight:950;letter-spacing:-.4px}

.lts-directory-list{grid-template-columns:1fr}
.lts-directory-list .lts-dir-card{flex-direction:row}
.lts-directory-list .lts-dir-card-media{flex:0 0 240px}
.lts-directory-list .lts-dir-card-media img{height:100%;min-height:180px}

/* Rating badge */
.lts-review-badge{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:800;color:#475467}
.lts-stars{color:var(--yellow);letter-spacing:1px}
.lts-rating-score{color:var(--ink)}
.lts-review-count{color:var(--muted);font-weight:700}
.lts-review-empty .lts-stars{color:#d7dee7}

/* Pagination */
.lts-directory-pagination{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-top:34px}
.lts-directory-pagination .page-numbers{
  padding:10px 16px;border:1px solid var(--line);border-radius:9px;
  background:#fff;color:#253044;font-size:14px;font-weight:850
}
.lts-directory-pagination .page-numbers:hover{background:#f5f8fb}
.lts-directory-pagination .page-numbers.current{background:var(--yellow);border-color:var(--yellow);color:var(--ink)}

/* -----------------------------------------------------------------------------
   8. Single / detail pages
   -------------------------------------------------------------------------- */
.single-wrap{width:min(880px,calc(100% - 40px));margin:30px auto 80px}
.single-card{
  background:#fff;color:var(--ink);
  border:1px solid var(--line);border-radius:24px;overflow:hidden;
  box-shadow:var(--shadow);
}
.single-media,.single-hero{height:min(430px,48vw);background:#f3f5f8;position:relative;overflow:hidden}
.single-media img,.single-media iframe,.single-hero img,.single-hero iframe{width:100%;height:100%;object-fit:cover;border:0;display:block}
.single-content{padding:36px}
.single-content .description{font-size:17px;max-width:100%}

.lts-story-byline{display:flex;gap:6px;flex-wrap:wrap;align-items:center;color:var(--muted);font-size:13.5px;font-weight:700;margin-bottom:20px}
.lts-story-byline strong{color:var(--ink)}
.lts-story-byline a{color:var(--blue);font-weight:850}
.lts-story-byline a:hover{color:#0b4f88;text-decoration:underline}

.lts-detail-wrap{width:min(1120px,calc(100% - 40px))}
.lts-detail-card .single-content{padding:34px}
.lts-detail-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap}
.lts-detail-head .single-title{margin-bottom:8px}
.lts-detail-badge{position:static;align-self:center;box-shadow:none}
.lts-detail-price{white-space:nowrap;font-size:30px;font-weight:950;color:var(--green)}
.lts-detail-body{min-width:0}

.lts-detail-gallery{display:grid;grid-template-columns:minmax(0,1fr);gap:12px;margin:22px 0 24px}
.lts-detail-gallery-main{border-radius:16px;overflow:hidden;background:#f4f6f8;border:1px solid var(--line)}
.lts-detail-gallery-main img{width:100%;height:min(420px,46vw);object-fit:cover;display:block}
.lts-detail-gallery-thumbs{display:flex;gap:10px;overflow-x:auto;padding-bottom:4px}
.lts-detail-thumb{flex:0 0 96px;height:70px;border-radius:12px;overflow:hidden;border:2px solid var(--line);background:#eef1f5;cursor:pointer;padding:0}
.lts-detail-thumb img{width:100%;height:100%;object-fit:cover}
.lts-detail-thumb.active{border-color:var(--yellow)}

.lts-detail-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:0 0 26px}
.lts-detail-summary-box{background:#fbfcfe;border:1px solid var(--line);border-radius:12px;padding:14px}
.lts-detail-summary-box span{display:block;font-size:11px;font-weight:900;letter-spacing:.9px;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.lts-detail-summary-box strong{font-size:15px;color:var(--ink);line-height:1.3}

.lts-detail-columns{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);gap:26px;align-items:start}
.lts-detail-panel{border-top:1px solid var(--line);padding-top:20px;margin-bottom:22px}
.lts-detail-panel:first-child{border-top:0;padding-top:0}
.lts-detail-panel h3{font-size:20px;color:var(--ink);margin-bottom:12px;letter-spacing:-.3px}
.lts-detail-panel p{color:#374151;line-height:1.66;font-size:15px}
.lts-detail-aside .lts-detail-panel{
  background:#fbfcfe;border:1px solid var(--line);border-radius:14px;padding:18px;border-top:1px solid var(--line)
}

.lts-detail-rows{display:flex;flex-direction:column}
.lts-detail-row{display:flex;justify-content:space-between;gap:14px;padding:10px 0;border-bottom:1px solid var(--line-soft);font-size:14px}
.lts-detail-row:last-child{border-bottom:0}
.lts-detail-row span{color:var(--muted);font-weight:750}
.lts-detail-row strong{color:var(--ink);text-align:right}
.lts-detail-row a{color:var(--blue);font-weight:800}

.lts-check-list{list-style:none;display:grid;gap:9px;margin:0;padding:0}
.lts-check-list li{position:relative;padding-left:26px;color:#374151;font-size:15px;line-height:1.5}
.lts-check-list li:before{content:'✓';position:absolute;left:0;top:0;color:var(--green);font-weight:900}

.lts-detail-action{display:block;margin-top:16px;text-align:center;width:100%}
.lts-detail-card .lts-dir-tag{background:#eef1f5;color:#475467}

/* Marketplace seller reveal */
.lts-seller-panel .fine-print{color:var(--muted);margin-top:12px}
.lts-robot-check,.lts-checkbox-row{
  display:flex;align-items:flex-start;gap:10px;
  background:#fff;border:1px solid var(--line);border-radius:12px;
  padding:12px 14px;margin:14px 0;
  font-size:13.5px;font-weight:750;line-height:1.5;color:#253044;cursor:pointer
}
.lts-robot-check input,.lts-checkbox-row input{margin-top:3px;flex:0 0 auto}
.lts-seller-reveal:disabled{opacity:.55;cursor:not-allowed}
.lts-seller-contact{margin-top:16px}

/* Product representative */
.lts-rep-wrap{margin:22px 0}
.lts-rep-toggle{border:1px solid var(--yellow);background:var(--yellow);border-radius:999px;padding:10px 18px}
.lts-rep-card{margin-top:16px;background:#fbfcfe;border:1px solid var(--line);border-radius:14px;padding:18px}
.lts-rep-card h3{font-size:18px;color:var(--ink);margin-bottom:10px}

.product-single .single-content,.single-product-details{min-width:0}
.single-product-details{margin-bottom:22px}

/* -----------------------------------------------------------------------------
   9. Forum
   -------------------------------------------------------------------------- */
.lts-thread-list{display:flex;flex-direction:column;gap:10px}

.lts-thread-row{
  display:grid;grid-template-columns:22px minmax(0,1fr) auto auto auto auto;
  gap:12px;align-items:center;
  background:#fff;border:1px solid var(--line);border-radius:13px;padding:15px 16px;
  box-shadow:0 4px 15px rgba(15,23,42,.035);transition:.2s
}
.lts-thread-row:hover{box-shadow:0 14px 34px rgba(15,23,42,.08);transform:translateY(-2px)}

.lts-thread-vote{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  background:#fff;border:1px solid var(--line);border-radius:9px;padding:8px 6px;min-height:66px
}
.lts-thread-vote-btn{background:transparent;border:0;color:#98a2b3;font-size:18px;line-height:1;cursor:pointer}
.lts-thread-vote-btn:hover{color:var(--orange);transform:translateY(-2px)}
.lts-thread-vote-count{font-size:14px;font-weight:900;color:var(--ink)}
.lts-thread-vote.lts-upvoted{background:#fff4df;border-color:#f3d8a8}
.lts-thread-vote.lts-upvoted .lts-thread-vote-btn{color:#ef7000}

.lts-thread-main{min-width:0}
.lts-thread-title{display:block;font-size:17px;font-weight:900;line-height:1.32;color:var(--ink);margin-bottom:8px}
.lts-thread-title:hover{color:var(--blue)}
.lts-thread-meta{display:flex;align-items:center;gap:9px;flex-wrap:wrap;font-size:12px;font-weight:750;color:var(--muted);margin-bottom:8px}
.lts-thread-author{color:#253044;font-weight:900}
.lts-thread-dept{background:#fff1a8;color:#6f5700;border-radius:6px;padding:5px 9px;font-size:11px;font-weight:900;white-space:nowrap}
.lts-thread-time{color:var(--muted)}
.lts-thread-excerpt{color:#4b5565;font-size:14px;line-height:1.55;margin:0}
.lts-thread-stats{
  border:1px solid var(--line);border-radius:8px;background:#fff;
  padding:6px 10px;font-size:12px;font-weight:850;color:#475467;white-space:nowrap
}
.lts-thread-stats strong{color:var(--ink)}

.lts-forum-avatar{
  display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%;
  background:#12365d;color:#fff;font-size:11px;font-weight:900;flex:0 0 auto
}

.lts-thread-wrap{width:min(1000px,calc(100% - 40px));margin:30px auto 80px}
.lts-thread-opening{
  display:grid;grid-template-columns:58px minmax(0,1fr);gap:16px;align-items:start;
  background:#fff;border:1px solid var(--line);border-radius:14px;padding:20px;margin:22px 0;
  box-shadow:var(--shadow-card)
}
.lts-thread-opening-main{min-width:0}
.lts-thread-opening .lts-comment-head{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:10px;color:var(--ink)}
.lts-thread-opening .description{margin-bottom:0}

.lts-forum-discussion{border-top:0;padding-top:0}
.lts-forum-replies{display:flex;flex-direction:column;gap:12px}
.lts-forum-reply{display:grid;grid-template-columns:auto auto minmax(0,1fr);gap:12px;align-items:start}
.lts-forum-depth-1{margin-top:12px;padding-left:16px;border-left:2px solid #edf0f4}
.lts-forum-depth-2{margin-top:12px;padding-left:16px;border-left:2px solid #edf0f4}
.lts-forum-reply-form{margin-top:16px}

/* -----------------------------------------------------------------------------
   10. Comments
   -------------------------------------------------------------------------- */
.lts-comments-section{margin-top:28px;padding-top:22px;border-top:1px solid var(--line);color:var(--ink)}
.lts-comments-top{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:16px}
.lts-comments-top h2{
  margin:0;font-size:22px;line-height:1;font-weight:900;letter-spacing:-.4px;color:var(--ink);
  display:flex;align-items:center;gap:9px
}
.lts-comments-top h2:before{content:"";width:16px;height:16px;border:2px solid #475467;border-radius:4px;display:inline-block}
.lts-comments-top h2 span{font-size:14px;color:var(--muted);letter-spacing:0;font-weight:800}

.lts-sort-label{display:flex;align-items:center;gap:8px;color:var(--muted);font-weight:800;font-size:12px}
.lts-comment-sort{border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--ink);padding:9px 11px;font-weight:800}

.lts-comment-notice{border-radius:10px;padding:12px 14px;margin:0 0 14px;font-weight:800;font-size:13px;border:1px solid var(--line);background:var(--soft);color:var(--ink)}
.lts-comment-notice-success,.lts-comment-notice.success{background:#ecfdf5;border-color:#a7f3d0;color:#065f46}
.lts-comment-notice-error,.lts-comment-notice.error{background:#fef2f2;border-color:#fecaca;color:#991b1b}
.lts-comment-notice-info{background:#eff6ff;border-color:#bfdbfe;color:#1e40af}

.lts-comment-form{background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px;margin-bottom:16px;box-shadow:var(--shadow-card)}
.lts-comment-fields{display:grid;grid-template-columns:1fr 1fr auto;gap:14px;align-items:end}
.lts-comment-fields label{display:flex;flex-direction:column;gap:7px;color:#253044;font-size:12px;font-weight:900}
.lts-comment-fields input,.lts-comment-fields select,.lts-comment-fields textarea{
  border:1px solid var(--line);border-radius:8px;padding:11px 12px;background:#fff;color:var(--ink);font:inherit;font-size:13.5px;outline:none
}
.lts-comment-fields input:focus,.lts-comment-fields select:focus,.lts-comment-fields textarea:focus{border-color:var(--yellow);box-shadow:0 0 0 3px rgba(255,200,0,.16)}
.lts-comment-textarea{grid-column:span 2}
.lts-comment-textarea textarea{min-height:104px;resize:vertical}
.lts-comment-submit{
  height:44px;align-self:end;border:0;border-radius:8px;background:var(--yellow);color:var(--ink);
  padding:0 20px;font-weight:900;cursor:pointer;white-space:nowrap
}
.lts-comment-submit:hover{background:var(--yellow-dark)}

.lts-moderation-note{margin:10px 0 0;color:var(--muted);font-size:12px}
.lts-replying-to{margin:0 0 10px;padding:10px 12px;border-radius:9px;background:#f8fafc;border:1px solid var(--line);color:#374151;font-size:13px;font-weight:800}

.lts-comments-list{display:flex;flex-direction:column;gap:12px}
.lts-comment-item{
  display:grid;grid-template-columns:36px 1fr 54px;gap:13px;align-items:start;
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:14px;
  box-shadow:0 4px 14px rgba(15,23,42,.03)
}
.lts-comment-reply-item{margin-left:42px}
.lts-comment-avatar{width:32px;height:32px;border-radius:50%;background:linear-gradient(180deg,#e9edf3,#cbd5e1)}
.lts-comment-main{min-width:0}
.lts-comment-head{display:flex;align-items:center;gap:7px;flex-wrap:wrap;font-size:12px}
.lts-comment-head strong{font-size:13.5px;color:var(--ink)}
.lts-occupation-badge{display:inline-flex;align-items:center;border-radius:999px;padding:3px 9px;background:var(--blue-soft);color:#2469aa;font-size:10px;font-weight:900}
.lts-comment-date{color:var(--muted);font-weight:800}
.lts-comment-text{margin-top:6px;color:#374151;font-size:13.5px;line-height:1.55}
.lts-comment-text p{margin:0 0 6px}
.lts-comment-text p:last-child{margin-bottom:0}
.awaiting-mod{color:#a97600;font-weight:900;font-size:12px}

.lts-comment-tools{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-top:6px}
.lts-reply-link{border:0;background:transparent;color:var(--blue);padding:0;font-weight:900;font-size:12px;cursor:pointer}
.lts-reply-link:hover{text-decoration:underline}
.lts-report-link{background:transparent;border:0;padding:0;font-size:12px;font-weight:800;color:#98a2b3;cursor:pointer}
.lts-report-link:hover{color:#b42318}

.lts-comment-upvote{justify-self:end}
.lts-comment-upvote button{
  width:44px;min-height:54px;border:1px solid var(--line);border-radius:9px;background:#fff;color:#ef7000;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;font-weight:900;cursor:pointer
}
.lts-comment-upvote span{font-size:18px;line-height:16px}
.lts-comment-upvote strong{font-size:14px;color:var(--ink)}
.lts-comment-upvote button:hover{background:#fff4df;border-color:#f3d8a8}
.lts-comment-upvote button:disabled{opacity:.55;cursor:wait}
.lts-comment-upvote.lts-upvoted button{background:#fff4df;border-color:#f3d8a8;color:#ef7000}

.lts-load-comments{width:100%;margin-top:14px;border:1px solid var(--line);background:#fff;color:#374151;border-radius:9px;padding:12px 14px;font-weight:900;cursor:pointer}
.lts-load-comments:hover{background:#f5f8fb}
.lts-comment-hidden{display:none!important}
.lts-no-comments{background:#fff;border:1px solid var(--line);border-radius:10px;padding:16px;color:var(--muted);margin:0}

/* -----------------------------------------------------------------------------
   11. Reviews
   -------------------------------------------------------------------------- */
.lts-reviews-section{margin-top:32px;border-top:1px solid var(--line);padding-top:26px}
.lts-reviews-top{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:20px}
.lts-reviews-top h2{font-size:23px;color:var(--ink);letter-spacing:-.5px}
.lts-reviews-top h2 span{color:var(--muted);font-size:16px}
.lts-reviews-average{display:flex;align-items:center;gap:10px;font-size:15px;color:var(--ink)}
.lts-reviews-average .lts-stars{font-size:19px}

.lts-review-form{background:#fbfcfe;border:1px solid var(--line);border-radius:14px;padding:20px;margin-bottom:24px}
.lts-review-fields{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.lts-review-fields label{display:flex;flex-direction:column;gap:7px;font-size:12px;font-weight:900;color:#253044}
.lts-review-fields input[type=text],.lts-review-fields select,.lts-review-fields textarea{
  background:#fff;border:1px solid var(--line);border-radius:8px;padding:12px;font:inherit;color:var(--ink);outline:none
}
.lts-review-fields input[type=text]:focus,.lts-review-fields select:focus,.lts-review-fields textarea:focus{border-color:var(--yellow);box-shadow:0 0 0 3px rgba(255,200,0,.16)}
.lts-review-textarea{grid-column:1/-1}
.lts-review-textarea textarea{min-height:118px;resize:vertical}

.lts-star-picker{grid-column:1/-1;display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.lts-star-picker-label{font-size:12px;font-weight:900;color:#253044;margin-right:8px}
.lts-star-option{position:relative;cursor:pointer;font-size:26px;line-height:1;color:#d7dee7;transition:.15s}
.lts-star-option input{position:absolute;opacity:0;width:0;height:0}
.lts-star-option.is-on{color:var(--yellow)}
.lts-star-option:hover{transform:scale(1.1)}

.lts-review-submit{
  grid-column:1/-1;justify-self:start;background:var(--yellow);color:var(--ink);
  border:0;border-radius:9px;padding:13px 24px;font-weight:900;cursor:pointer
}
.lts-review-submit:hover{background:var(--yellow-dark);transform:translateY(-1px)}

.lts-review-list{display:flex;flex-direction:column;gap:16px}
.lts-review-item{
  display:grid;grid-template-columns:auto minmax(0,1fr);gap:14px;align-items:start;
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:16px
}
.lts-review-item-stars{font-size:14px}

/* -----------------------------------------------------------------------------
   12. Report modal (built by main.js)
   -------------------------------------------------------------------------- */
.lts-modal{
  position:fixed;inset:0;z-index:400;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(15,23,42,.55)
}
.lts-modal.is-open{display:flex}
.lts-modal-box{
  width:min(620px,100%);max-height:88vh;overflow-y:auto;position:relative;
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:28px 30px;
  box-shadow:0 30px 90px rgba(15,23,42,.28)
}
.lts-modal-box h2{font-size:23px;letter-spacing:-.5px;margin-bottom:10px;color:var(--ink)}
.lts-modal-box p{color:#4b5565;font-size:14px;line-height:1.6;margin-bottom:18px}
.lts-modal-box label{display:block;font-size:12px;font-weight:900;color:#253044;margin-bottom:7px}
.lts-modal-box select,.lts-modal-box textarea{
  width:100%;background:#fff;color:var(--ink);border:1px solid var(--line);border-radius:9px;
  padding:12px;outline:none;font:inherit;margin-bottom:15px
}
.lts-modal-box textarea{min-height:140px;resize:vertical}
.lts-modal-box select:focus,.lts-modal-box textarea:focus{border-color:var(--yellow);box-shadow:0 0 0 3px rgba(255,200,0,.16)}
.lts-modal-actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin-top:4px}
.lts-modal-cancel{background:#fff;color:#253044;border:1px solid var(--line);border-radius:8px;padding:11px 18px;font-weight:850;cursor:pointer}
.lts-modal-cancel:hover{background:#f5f8fb}
.lts-modal-send{border-radius:8px}
.lts-modal-close{
  position:absolute;top:16px;right:16px;width:36px;height:36px;border-radius:50%;
  background:#f1f3f6;border:0;color:#253044;font-size:15px;cursor:pointer
}
.lts-modal-close:hover{background:#e5e9ef}
.lts-modal-message{font-size:13px;font-weight:800;color:#065f46;margin-top:12px}
.lts-modal-message.is-error{color:#b42318}

/* -----------------------------------------------------------------------------
   13. Forms (story / product / contact / directory submissions)
   -------------------------------------------------------------------------- */
.story-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-size:12px;font-weight:900;color:#253044}
.field input,.field textarea,.field select{
  background:#fff;color:var(--ink);border:1px solid var(--line);border-radius:9px;
  padding:13px 14px;outline:none;font:inherit
}
.field textarea{min-height:160px;resize:vertical}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--yellow);box-shadow:0 0 0 3px rgba(255,200,0,.16)}

.upload-box{
  grid-column:1/-1;border:1px dashed #c8d1dc;border-radius:14px;padding:24px;
  text-align:center;color:var(--muted);background:#fbfcfe;font-size:14px
}
.submit-actions{grid-column:1/-1;display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap;margin-top:4px}
.fine-print{color:var(--muted);font-size:12.5px;line-height:1.55;max-width:600px}

.lts-form-section{display:block;margin-bottom:8px}
.lts-form-section h3{
  font-size:17px;color:var(--ink);letter-spacing:-.2px;
  border-top:1px solid var(--line);padding-top:20px;margin:8px 0 14px;grid-column:1/-1
}
.lts-directory-form .lts-form-section:first-of-type h3{border-top:0;padding-top:0;margin-top:0}
.lts-field-note{color:var(--muted);font-size:12px;line-height:1.5;margin-top:2px}
.lts-consent-block{display:flex;flex-direction:column;gap:10px;grid-column:1/-1}
.lts-submit-hero{grid-template-columns:1fr}

.product-form .submit-primary{min-width:200px}
.submit-product-page .form-card h2{margin-bottom:18px}
.submit-product-page .feature-image img,.content-wrap .page-hero .feature-image img{object-fit:cover}

.contact-main-grid .panel-card h2,.contact-main-grid .form-card h2{margin-top:0;margin-bottom:18px;color:var(--ink)}
.lts-contact-form .fine-print{font-size:12px}
.contact-form-card{width:100%}

/* -----------------------------------------------------------------------------
   14. Generic / legal / about / contact / advertise pages
   -------------------------------------------------------------------------- */
.generic-page-card{max-width:920px;margin:0 auto}
.generic-page-card h1{font-size:clamp(30px,4vw,46px);line-height:1.08;letter-spacing:-1.2px;margin:0 0 20px;color:var(--ink)}
.generic-page-image{margin:8px 0 24px;border-radius:18px;overflow:hidden;border:1px solid var(--line);max-height:360px}
.generic-page-image img{width:100%;height:100%;object-fit:cover;display:block}

.legal-page-card{background:#fff;color:var(--ink)}
.legal-page-card .page-kicker{color:#a97600}
.legal-page-card h1{font-size:clamp(30px,4vw,46px);letter-spacing:-1.2px;margin-bottom:20px;color:var(--ink)}
.legal-page-content{font-size:16px;line-height:1.78;color:#374151}
.legal-page-content>h1:first-child{display:none}
.legal-page-content h2{font-size:23px;color:var(--ink);margin:30px 0 10px;letter-spacing:-.4px}
.legal-page-content h3{font-size:19px;color:var(--ink);margin:24px 0 10px}
.legal-page-content p{margin:0 0 16px;color:#374151}
.legal-page-content ul,.legal-page-content ol{padding-left:22px;margin:12px 0 18px}
.legal-page-content li{margin:7px 0;color:#374151}

.editable-page-content{max-width:820px}
.editable-page-content h1,.editable-page-content h2,.editable-page-content h3{letter-spacing:-.5px;line-height:1.12;margin:0 0 16px;color:var(--ink)}
.editable-page-content h1{font-size:clamp(30px,4vw,44px)}
.editable-page-content h2{font-size:26px;margin-top:28px}
.editable-page-content h3{font-size:21px;margin-top:22px}
.editable-page-content p{line-height:1.7;color:#374151;margin-bottom:15px}
.editable-page-content ul,.editable-page-content ol{margin:14px 0 18px;padding-left:24px;line-height:1.7;color:#374151}
.editable-page-content li{margin:7px 0}

.about-page-wrap,.contact-page-wrap{width:min(1080px,calc(100% - 40px));margin:30px auto 80px}
.about-clean-page,.contact-clean-page{margin-top:12px}
.about-dynamic-hero,.contact-dynamic-hero{display:grid;gap:26px;margin-bottom:28px}
.about-clean-page .about-dynamic-hero{grid-template-columns:minmax(0,820px);justify-content:center}
.contact-clean-page .contact-dynamic-hero{grid-template-columns:minmax(0,760px);justify-content:center}
.contact-clean-page .contact-heading-card,.about-clean-page .panel-card{width:100%}
.contact-clean-page .contact-form-only{display:block;width:min(760px,100%);margin:0 auto}
.contact-clean-page .feature-image,.about-clean-page .feature-image,.contact-clean-page .contact-info-card{display:none!important}
.about-no-image .feature-image,.contact-no-image .feature-image{display:none}
.about-info-grid{margin-top:26px}
.contact-main-grid{display:grid;gap:26px}

.lts-advertise-hero{margin-bottom:26px}
.lts-advertise-contact{margin-top:22px;background:#fffdf4;border:1px solid #f3df89;border-radius:14px;padding:18px}

/* -----------------------------------------------------------------------------
   15. Search
   -------------------------------------------------------------------------- */
.search-form{display:flex;gap:12px;margin-top:18px}
.search-field{
  flex:1;background:#fff;color:var(--ink);border:1px solid var(--line);
  border-radius:10px;padding:13px 16px;outline:none;font-size:15px
}
.search-field:focus{border-color:var(--yellow);box-shadow:0 0 0 3px rgba(255,200,0,.16)}
.search-submit{background:var(--yellow);color:var(--ink);border:0;border-radius:10px;padding:13px 22px;font-weight:900;cursor:pointer}
.search-submit:hover{background:var(--yellow-dark)}

/* -----------------------------------------------------------------------------
   16. Footer  (reference layout: 5 columns + centered copyright bar)
   -------------------------------------------------------------------------- */
.site-footer{
  width:100%;
  margin:70px 0 0;
  padding:42px clamp(16px,3vw,28px) 20px;
  background:#fff;
  border-top:1px solid var(--line);
}
.footer-inner{
  max-width:1380px;margin:0 auto;display:grid;
  grid-template-columns:1.15fr .8fr .8fr .8fr 1fr;gap:42px;align-items:start;
}
.footer-brand{max-width:280px}
.footer-logo{width:155px;height:auto;object-fit:contain;display:block;margin-bottom:12px}
.footer-tagline{max-width:205px;color:#475467;line-height:1.55;font-size:14px}

.footer-col h4{margin:0 0 14px;font-size:12px;letter-spacing:.8px;text-transform:uppercase;color:var(--ink);font-weight:900}
.footer-links{display:flex;flex-direction:column;gap:9px}
.footer-links a{color:#344054;font-size:14px;font-weight:400;width:max-content}
.footer-links a:hover{color:#0b6fd3;text-decoration:underline}

.footer-social-row{display:flex;gap:10px;flex-wrap:wrap}
.footer-social-row .social{
  width:38px;height:38px;border:1px solid var(--line);border-radius:50%;
  background:var(--soft);color:var(--ink)
}
.footer-social-row .social:hover{background:var(--yellow);border-color:var(--yellow);transform:translateY(-2px)}

.footer-bottom{
  max-width:1380px;margin:28px auto 0;padding-top:18px;border-top:1px solid var(--line);
  display:flex;justify-content:center;color:var(--muted);font-size:13px;text-align:center;
}

/* -----------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media(max-width:1280px){
  .hero-layout{grid-template-columns:200px minmax(0,680px) 200px;gap:20px}
  .arrow.left{left:calc(50% - 390px)}
  .arrow.right{right:calc(50% - 390px)}
}

@media(max-width:900px){
  /* Nav collapses into the burger panel */
  .header-nav{
    display:none;
    position:absolute;
    right:clamp(16px,3vw,34px);
    top:calc(100% + 8px);
    width:min(290px,calc(100vw - 32px));
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:10px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:var(--shadow);
    max-height:calc(100vh - 96px);
    overflow-y:auto;
    z-index:100;
  }
  .site-header.menu-open .header-nav{display:flex}
  .header-nav .nav-btn{width:100%;text-align:left;font-size:14px;padding:12px 14px}
  .mobile-menu-toggle{display:flex}
  .site-header{justify-content:space-between}

  .lts-directory-layout{grid-template-columns:1fr}
  .lts-directory-sidebar{position:static;display:grid;gap:12px}
  .lts-filter-list{flex-direction:row;flex-wrap:wrap}
  .lts-filter{border:1px solid var(--line);background:#fff;min-width:max-content}
  .lts-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lts-detail-summary{grid-template-columns:repeat(2,1fr)}
  .lts-detail-columns{grid-template-columns:1fr}
  .archive-grid{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:repeat(2,1fr)}
  .two-col,.page-hero{grid-template-columns:1fr}
  .footer-cols{gap:28px}
}

@media(max-width:1050px){
  .hero-wrapper{width:min(880px,calc(100% - 28px))}
  .hero-layout{grid-template-columns:150px minmax(0,600px) 150px;gap:14px}
  .arrow{width:48px;height:48px;font-size:26px;top:50%}
  .arrow.left{left:8px}
  .arrow.right{right:8px}
    .side-image-wrap{height:170px}
  .side-title{font-size:17px}
  .side-excerpt{display:none}
  .product-details{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr 1fr;gap:32px}
  .footer-brand{grid-column:1/-1;max-width:100%}
}

@media(max-width:820px){
  .site-header{padding:0 14px;min-height:68px;gap:12px}
  .logo-image{width:92px;height:56px}
  .desktop-submit-btn{padding:11px 14px;font-size:13px}
  .search-btn{width:40px;height:40px}

  .topics{padding:18px 14px 0;margin-bottom:16px}
  .topics-pills{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;scrollbar-width:none;padding-bottom:8px}
  .topics-pills::-webkit-scrollbar{display:none}
  .pill{padding:10px 15px;font-size:12.5px;white-space:nowrap}
  .product-search-wrap{width:100%}

  .hero-wrapper{width:100%;padding:0 0 46px}
  .hero-layout{grid-template-columns:minmax(56px,14vw) minmax(0,86vw) minmax(56px,14vw);gap:8px;justify-content:center}
  .side-card{border-radius:18px;opacity:.62}
  .side-image-wrap{height:420px}
  .side-body{display:none}
  .arrow{display:none}

  .main-card{border-radius:22px;max-height:calc(100vh - 190px)}
  .main-image{height:230px}
  .main-content{padding:22px 22px 26px}
  .main-title{font-size:clamp(26px,7vw,34px);letter-spacing:-1px}
  .description{font-size:15.5px}
  .description h3{font-size:20px}
  .scroll-hint{margin-right:12px;top:12px}

  .content-wrap,.page-content-wrap,.single-wrap,.lts-thread-wrap,.about-page-wrap,.contact-page-wrap{width:calc(100% - 28px)}
  .lts-directory-wrap,.lts-detail-wrap{width:calc(100% - 28px)}
  .panel-card,.form-card{padding:22px}
  .lts-directory-toolbar{flex-direction:column;align-items:stretch}
  .lts-directory-search,.lts-directory-sort,.lts-directory-apply{width:100%}
  .lts-directory-resultline{flex-direction:column;align-items:flex-start}
  .lts-directory-actions{width:100%;justify-content:space-between}
  .story-form,.lts-review-fields{grid-template-columns:1fr}
  .lts-comment-fields{grid-template-columns:1fr}
  .lts-comment-textarea{grid-column:1}
  .lts-comment-submit{width:100%}
}

@media(max-width:640px){
  .archive-grid,.lts-directory-grid,.info-grid{grid-template-columns:1fr}
  .lts-directory-list .lts-dir-card{flex-direction:column}
  .lts-directory-list .lts-dir-card-media{flex:1 1 auto}
  .lts-directory-list .lts-dir-card-media img{height:190px;min-height:0}
  .lts-detail-summary{grid-template-columns:1fr}
  .lts-detail-card .single-content,.single-content{padding:22px}

  .hero-layout{grid-template-columns:minmax(28px,8vw) minmax(0,88vw) minmax(28px,8vw);gap:6px}
  .side-image-wrap{height:380px}
  .main-image{height:210px}

  .lts-thread-row{grid-template-columns:52px minmax(0,1fr);row-gap:12px}
  .lts-thread-stats{grid-column:2;justify-self:start}
  .lts-thread-opening{grid-template-columns:52px minmax(0,1fr);padding:16px}
  .lts-forum-reply{grid-template-columns:auto minmax(0,1fr)}
  .lts-forum-reply .lts-forum-avatar{display:none}
  .lts-comment-item{grid-template-columns:32px 1fr 46px;padding:12px}
  .lts-comment-reply-item{margin-left:18px}
  .lts-comments-top{align-items:flex-start;flex-direction:column}

  .site-footer{padding:34px 20px 18px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:30px}
  .footer-brand,.footer-social{grid-column:1/-1}

  .submit-actions{flex-direction:column;align-items:stretch}
  .submit-actions .submit-primary{width:100%}
  .search-form{flex-direction:column}
  .search-submit{width:100%}
}


/* =============================================================================
   v1.19.0 — client revision (Web Revision.pdf + Website Example.html)
   Topic chips removed · 6-item nav · carousel on /stories/ and /products/ ·
   reference share row · product profile blocks · marketplace drawer layout ·
   site map. Values are taken directly from the client's reference file.
   ========================================================================== */

/* --- Share row: label + five round buttons (reference) --------------------- */
.share{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  padding:20px 0;margin:22px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  justify-content:flex-start;
}
.share > strong{font-size:11px;letter-spacing:1px;color:var(--muted);margin-right:6px;font-weight:900}
.share-btn{
  width:42px;height:42px;border-radius:50%;border:0;
  background:var(--blue-soft);color:#1671db;
  font-weight:900;cursor:pointer;display:grid;place-items:center;
}
.share-btn:hover{transform:translateY(-2px);background:#e0ebff}
.story-share{clear:both}
.market-share{margin:0 0 22px}

/* Older markup (.share-left / .socials) still ships on the story + product
   single templates, so it keeps its styling. */
.share .share-left{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.share .share-left span{font-size:11px;font-weight:900;letter-spacing:1.1px;color:var(--muted)}

/* --- Story byline inside the carousel card -------------------------------- */
.main-content .lts-story-byline{
  display:flex;align-items:center;gap:5px;flex-wrap:wrap;
  margin:0 0 22px;color:var(--muted);font-size:13px;font-weight:600;
}
.main-content .lts-story-byline strong{color:#182235;font-weight:900}
.main-content .lts-story-byline a{color:var(--blue);font-weight:850;border-bottom:1px solid transparent}
.main-content .lts-story-byline a:hover{color:#0b4f88;border-bottom-color:#0b4f88}

/* --- Product profile blocks (reference) ----------------------------------- */
.product-manufacturer-line{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  margin:8px 0 6px;color:var(--muted);font-size:14px;
}
.product-manufacturer-line strong{color:var(--blue);font-weight:900}
.product-contact-btn{
  display:inline-block;
  border:1px solid var(--yellow);background:var(--yellow);color:var(--ink);
  border-radius:999px;padding:8px 14px;font-size:12px;font-weight:900;
  cursor:pointer;margin:6px 0 3px;box-shadow:0 6px 16px rgba(255,200,0,.18);
}
.product-contact-btn:hover{background:var(--yellow-dark);border-color:var(--yellow-dark);transform:translateY(-1px)}
.details-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:20px 0}
.detail-box{padding:14px;border:1px solid var(--line);border-radius:12px;background:#fafbfd;font-size:14px;line-height:1.5;color:#344054}
.detail-box strong{display:block;margin-bottom:5px;color:var(--ink)}

/* --- Marketplace listing: reference drawer layout ------------------------- */
.lts-market-detail .lts-detail-gallery{
  display:grid;grid-template-columns:minmax(0,1fr) 118px;gap:12px;margin:18px 0 22px;
}
.lts-market-detail .lts-detail-gallery-main{height:430px;border-radius:16px}
.lts-market-detail .lts-detail-gallery-main img{width:100%;height:100%;object-fit:contain;background:#f4f6f8}
.lts-market-detail .lts-detail-gallery-thumbs{display:flex;flex-direction:column;gap:10px;overflow:visible}
.lts-market-detail .lts-detail-thumb{flex:0 0 auto;height:96px;width:100%;border-radius:11px;border:2px solid transparent;background:#f4f6f8}
.lts-market-detail .lts-detail-thumb.active{border-color:var(--yellow);box-shadow:0 0 0 2px rgba(255,200,0,.18)}
.lts-market-detail .lts-detail-summary{grid-template-columns:repeat(4,1fr);gap:11px;margin:16px 0 22px}
.lts-market-detail .lts-detail-head{margin:12px 0 6px}
.lts-market-detail .lts-detail-price{font-size:31px;margin-top:10px}
.lts-market-detail .meta{color:var(--muted);font-size:13.5px;margin-bottom:6px}

.lts-seller-card{background:#fffdf4!important;border-color:#f3df89!important}
.lts-seller-card h3{color:#5f4a00}

/* --- Site map -------------------------------------------------------------- */
.sitemap-intro{margin:0 0 18px;color:#475467;line-height:1.65}
.sitemap-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.sitemap-group{border:1px solid var(--line);border-radius:12px;padding:18px;background:#fbfcfe}
.sitemap-group h3{font-size:16px;margin:0 0 12px;color:var(--ink)}
.sitemap-links{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.sitemap-link{border:0;background:transparent;padding:0;color:#2469aa;font-weight:800;text-align:left}
.sitemap-link:hover{text-decoration:underline}
.sitemap-xml{margin-top:20px;padding:14px 16px;border:1px solid var(--line);border-radius:10px;background:var(--soft);font-size:14px}
.sitemap-xml a{color:#2469aa;font-weight:850}

@media(max-width:1050px){
  .details-grid{grid-template-columns:1fr}
  .lts-market-detail .lts-detail-summary{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:820px){
  .main-card.inline-reader{height:auto;max-height:calc(100vh - 190px)}
  .main-image.inline-hero-wrap{height:230px;margin-bottom:16px}
  .main-content{padding:2px 22px 26px}
  .scroll-hint{margin:12px 12px 0 auto}
  .lts-market-detail .lts-detail-gallery{grid-template-columns:1fr}
  .lts-market-detail .lts-detail-gallery-main{height:300px}
  .lts-market-detail .lts-detail-gallery-thumbs{flex-direction:row;overflow-x:auto}
  .lts-market-detail .lts-detail-thumb{flex:0 0 96px;height:70px}
}
@media(max-width:720px){
  .sitemap-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .lts-market-detail .lts-detail-summary{grid-template-columns:1fr}
  .share{gap:8px}
  .share-btn{width:38px;height:38px}
}


/* =============================================================================
   v1.20.0 — detail drawer, overlay, panel modal, toast, forum accordion.
   Widths and timings are taken from the client's reference file.
   ========================================================================== */

/* --- Dim overlay ---------------------------------------------------------- */
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:90;display:none}
.overlay.open{display:block}

/* --- Slide-in drawer ------------------------------------------------------ */
.drawer{
  position:fixed;top:0;right:-1040px;
  width:min(500px,94vw);height:100vh;
  background:#fff;z-index:100;
  border-left:1px solid var(--line);
  box-shadow:-20px 0 60px rgba(0,0,0,.18);
  padding:28px;overflow:auto;
  transition:right .3s ease;
}
.drawer.open{right:0}
.drawer.service-mode,
.drawer.resource-mode{width:min(920px,96vw);padding:32px 38px}
.drawer.market-mode{width:min(980px,96vw);padding:28px 32px}

.drawer-close{
  float:right;border:0;background:#f1f3f6;border-radius:50%;
  width:38px;height:38px;cursor:pointer;font-size:15px;color:#253044;
  position:relative;z-index:2;
}
.drawer-close:hover{background:#e5e9ef}

.drawer-body{clear:both}
.drawer-loading{padding:40px 0;color:var(--muted);font-weight:800}
.copy{color:#374151;line-height:1.65}

/* The drawer already provides the page padding, so the injected card resets. */
.drawer-body .lts-detail-head .single-title,
.drawer-body .single-title{font-size:clamp(26px,3vw,34px)}
.drawer-body .lts-detail-columns{grid-template-columns:minmax(0,1.5fr) minmax(0,1fr)}
.drawer .single-card,
.drawer .lts-detail-card{background:transparent;border:0;border-radius:0;box-shadow:none}
.drawer .single-content{padding:0}

/* --- Panel modal (reviews, product representative) ------------------------ */
.modal{
  position:fixed;inset:0;background:rgba(0,0,0,.5);
  display:none;place-items:center;z-index:120;padding:20px;
}
.modal.is-open{display:grid}
.modalbox{
  position:relative;background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:24px;width:min(680px,92vw);max-height:90vh;overflow:auto;
  box-shadow:0 30px 90px rgba(15,23,42,.28);
}
.lts-reviews-modal .modalbox{width:min(760px,94vw)}
.modalbox .lts-reviews-section,
.modalbox .lts-rep-wrap{margin-top:0;border-top:0;padding-top:0}
.modalbox .lts-rep-toggle{display:none}
.modalbox .lts-rep-card{margin-top:0}

/* --- Toast ---------------------------------------------------------------- */
.toast{
  position:fixed;left:50%;bottom:28px;z-index:200;
  transform:translateX(-50%) translateY(90px);
  background:#111827;color:#fff;
  padding:13px 18px;border-radius:999px;
  font-size:14px;font-weight:800;
  opacity:0;pointer-events:none;transition:.25s ease;
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* --- Forum accordion ------------------------------------------------------ */
.lts-thread-row{cursor:pointer}
.lts-thread-row.open{box-shadow:0 14px 34px rgba(15,23,42,.08)}
.lts-thread-body{
  grid-column:1/-1;
  margin-top:14px;padding-top:14px;
  border-top:1px solid var(--line);
  cursor:auto;
}
.lts-thread-body .single-title,
.lts-thread-body .page-kicker,
.lts-thread-body .lts-thread-opening{display:none}
.lts-thread-body .lts-comments-section{margin-top:0;padding-top:0;border-top:0}

@media(max-width:820px){
  .drawer{padding:22px 18px}
  .drawer.service-mode,
  .drawer.resource-mode,
  .drawer.market-mode{padding:22px 18px}
  .drawer-body .lts-detail-columns{grid-template-columns:1fr}
  .modalbox{padding:20px}
}


/* --- v1.21.0 panels: legal / info / submission modals, mobile nav panel ---- */
.lts-panel-title{font-size:26px;letter-spacing:-.6px;margin:0 0 16px;color:var(--ink)}
.legal-modal .modalbox{width:min(900px,94vw);padding:30px 34px}
.legal-modal .legal-page-content,
.info-modal .editable-page-content{font-size:15px;line-height:1.72;color:#344054}
.legal-modal .legal-page-content h2,
.legal-modal .legal-page-content h3{font-size:20px;color:var(--navy);margin:28px 0 9px}
.info-modal .modalbox{width:min(760px,94vw);padding:28px 30px}
.submission-modal .modalbox{width:min(980px,96vw);padding:30px 34px}
.submission-modal .story-form,
.submission-modal .lts-directory-form{margin-top:4px}
.modalbox .page-kicker,
.modalbox .panel-card{background:transparent;border:0;box-shadow:none;padding:0}
.modalbox h1{font-size:26px;letter-spacing:-.6px;margin:0 0 14px}

/* Mobile nav panel — reference renders the six sections as a two-column grid. */
.mobile-nav-backdrop{position:fixed;inset:0;background:rgba(15,23,42,.35);z-index:48;display:none}
.mobile-nav-backdrop.open{display:block}

@media(max-width:560px){
  .site-header.menu-open .header-nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    left:12px;right:12px;width:auto;
    top:calc(100% + 8px);
    padding:14px;
    border-radius:16px;
    box-shadow:0 22px 55px rgba(15,23,42,.22);
    z-index:49;
  }
  .site-header.menu-open .header-nav .nav-btn{
    border:1px solid var(--line);background:#fff;border-radius:11px;
    padding:14px 12px;text-align:left;font-weight:900;color:#182235;
  }
  .site-header.menu-open .header-nav .nav-btn.active{background:var(--yellow);border-color:var(--yellow)}
  .site-header.menu-open .header-nav .nav-btn:active{transform:scale(.98)}
}

/* The forum's "Start a Topic" sits inline with search and sort, as in the reference. */
.lts-directory-toolbar .newtopic{white-space:nowrap;padding:13px 18px}


/* =============================================================================
   v1.23.0 — Web Revision V2
   ========================================================================== */

/* --- Product specifications table + Visit Manufacturer (reference) --------- */
.product-profile{font-size:16px;line-height:1.75;color:#344054}
.product-profile h3{font-size:23px;color:var(--navy);margin:28px 0 10px}
.product-specs{width:100%;border-collapse:collapse;margin:18px 0 26px}
.product-specs td{border-bottom:1px solid var(--line);padding:12px 8px;vertical-align:top}
.product-specs td:first-child{font-weight:850;width:34%;color:#182235}
.product-manufacturer-link{color:var(--blue);font-weight:900}
.product-manufacturer-link:hover{color:#0b4f88;text-decoration:underline}
.yellow-btn{
  display:inline-block;background:var(--yellow);border:0;border-radius:8px;
  padding:11px 16px;font-weight:900;color:var(--ink);cursor:pointer;text-decoration:none;
}
.yellow-btn:hover{background:var(--yellow-dark);transform:translateY(-1px)}
.product-visit{margin-bottom:6px}

/* --- Forum: department icons + reference thread row ------------------------ */
.lts-filter-icon{display:inline-flex;width:18px;justify-content:center;margin-right:8px;opacity:.75}
.lts-filter.active .lts-filter-icon{opacity:1}
.lts-filter > span:first-child{display:flex;align-items:center;gap:0}

/* --- Marketplace listing card (reference) ---------------------------------- */
.lts-listing-card .story-tile-body{gap:7px}
.lts-listing-card .page-kicker{color:#168de8;margin-bottom:0}
.lts-listing-card .lts-listing-location{color:var(--muted);font-size:13.5px;font-weight:600}
.lts-listing-card .lts-listing-price{color:var(--green);font-size:20px;font-weight:950;margin-top:4px}

/* --- Submission forms, rebuilt to the reference's section layout ----------- */
.submission-section{
  grid-column:1/-1;
  border:1px solid var(--line);border-radius:14px;
  padding:18px;margin:0 0 16px;background:#fff;
}
.submission-section h3{margin:0 0 14px;font-size:17px;color:var(--ink)}
.submission-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px 16px}
.submission-grid > .field,
.submission-field{min-width:0;display:flex;flex-direction:column;gap:7px}
.submission-grid > .field.full,
.submission-field.full{grid-column:1/-1}
.submission-field label{font-size:12px;font-weight:900;color:#253044}
.submission-field input,.submission-field select,.submission-field textarea{
  width:100%;border:1px solid var(--line);border-radius:9px;padding:12px;background:#fff;font:inherit;
}
.submission-field input[type=file]{padding:10px;background:#f8fafc}
.submission-field small{display:block;color:var(--muted);font-size:11px;margin-top:5px;line-height:1.4}
.required-mark{color:#c5221f}
.submission-footer{grid-column:1/-1;display:flex;justify-content:space-between;align-items:center;gap:20px;padding-top:4px}
.submission-footer p{font-size:12px;color:var(--muted);margin:0;max-width:600px;line-height:1.5}
.submission-section .lts-consent-block{display:flex;flex-direction:column;gap:10px}
.submission-section .fine-print{grid-column:1/-1}

@media(max-width:800px){
  .submission-grid{grid-template-columns:1fr}
  .submission-grid > .field.full,
  .submission-field.full{grid-column:1}
  .submission-footer{align-items:stretch;flex-direction:column}
  .submission-footer .submit-primary{width:100%}
}

/* --- Forum row, reference layout ------------------------------------------ */
.lts-thread-chevron{font-size:20px;color:#98a2b3;transition:.2s;line-height:1}
.lts-thread-row.open .lts-thread-chevron{transform:rotate(90deg)}
.lts-thread-row .lts-thread-title{font-size:16px;line-height:1.35;margin:0}
.lts-thread-row .lts-thread-dept{
  background:#fff1a8;color:#6f5700;border-radius:6px;padding:6px 9px;
  font-size:11px;font-weight:900;white-space:nowrap
}
.lts-thread-row .lts-thread-vote{
  flex-direction:row;gap:6px;min-height:0;padding:6px 9px;border-radius:8px;
  font-size:12px;font-weight:850;white-space:nowrap
}
.lts-thread-row .lts-thread-vote-btn{font-size:13px}
.lts-thread-row .lts-thread-vote-count{font-size:12px}
.lts-thread-row .lts-thread-stats{
  border:1px solid var(--line);border-radius:8px;background:#fff;
  padding:6px 9px;font-size:12px;font-weight:850;color:#475467;white-space:nowrap
}
.lts-thread-row .lts-thread-meta{
  font-size:11px;color:var(--muted);min-width:82px;text-align:right;
  display:block;margin:0;font-weight:600;line-height:1.4
}

@media(max-width:820px){
  .lts-thread-row{grid-template-columns:20px minmax(0,1fr) auto}
  .lts-thread-row .lts-thread-stats,
  .lts-thread-row .lts-thread-meta{display:none}
}
