:root {
  --red: #E63946;
  --ink: #1A1A2E;
  --slate: #5B6472;
  --off-white: #F5F5F7;
  --white: #FFFFFF;
  --bg: var(--white);
  --surface: var(--off-white);
  --surface-2: #ffffff;
  --text: var(--ink);
  --muted: var(--slate);
  --border: rgba(91, 100, 114, 0.2);
  --primary: var(--red);
  --primary-2: var(--ink);
  --accent: var(--red);
  --success: var(--red);
  --warning: var(--ink);
  --shadow: 0 18px 48px rgba(26, 26, 46, 0.1);
  --shadow-soft: 0 1px 0 rgba(26, 26, 46, 0.05), 0 12px 30px rgba(26, 26, 46, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1240px;
  --gutter: clamp(16px, 3vw, 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-muted { background: var(--surface); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--slate); }
.eyebrow::before { content: ""; width: 32px; height: 2px; border-radius: 999px; background: var(--red); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 5vw, 5.15rem); line-height: .98; margin-bottom: 18px; }
h2 { font-size: clamp(1.75rem, 3vw, 3.1rem); line-height: 1.04; margin-bottom: 14px; }
h3 { font-size: 1.08rem; line-height: 1.2; margin-bottom: 8px; letter-spacing: -.02em; }
p { color: var(--muted); }

.announcement {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  letter-spacing: .02em;
}
.announcement__inner { display: flex; align-items: center; gap: 18px; min-height: 42px; overflow: hidden; }
.announcement__track { display: flex; gap: 48px; white-space: nowrap; animation: ticker 18s linear infinite; }
.announcement__badge { color: var(--white); background: var(--red); border-radius: 999px; padding: 5px 12px; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(14px, 2vw, 24px); align-items: center; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark {
  min-width: 78px; height: 45px; padding: 0 12px; border-radius: 14px; background: var(--red);
  display: grid; place-items: center; color: var(--white); font-weight: 950; font-size: 1.42rem; letter-spacing: -.04em; line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: .92; font-weight: 950; font-size: 1.58rem; letter-spacing: -.045em; }
.brand__text small { color: var(--slate); font-size: .62rem; font-weight: 800; letter-spacing: .24em; margin-top: 8px; text-transform: uppercase; }

.nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.8vw, 24px); flex-wrap: nowrap; min-width: 0; }
.nav a { font-size: .9rem; color: var(--ink); font-weight: 800; position: relative; letter-spacing: .02em; white-space: nowrap; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -10px; width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--red); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; white-space: nowrap; }
.menu-btn, .tag-btn {
  border: 1px solid var(--border); background: var(--white); color: var(--ink); border-radius: 999px; min-height: 42px; padding: 0 14px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.icon-btn {
  position: relative; width: 42px; height: 42px; border: 0; border-radius: 999px; padding: 0;
  display: inline-grid; place-items: center; background: transparent; color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover { transform: translateY(-1px); background: var(--off-white); color: var(--red); }
.cart-icon-btn strong {
  position: absolute; top: 3px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px;
  display: grid; place-items: center; background: var(--red); color: var(--white); font-size: 10px; line-height: 1; font-weight: 900;
}
.tag-btn:hover, .menu-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); border-color: rgba(230,57,70,.45); color: var(--red); }
.menu-btn {
  width: 42px; height: 42px; min-height: 42px; padding: 0; justify-content: center; gap: 5px;
  flex-direction: column; background: transparent; border-color: transparent; box-shadow: none;
}
.menu-btn span { width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-btn:hover { background: var(--off-white); border-color: transparent; box-shadow: none; }
.menu-btn[aria-expanded="true"] { color: var(--red); background: var(--off-white); }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.cta-btn, .cta-btn--light, .secondary-btn {
  border: 1px solid transparent; border-radius: 999px; min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap;
}
.cta-btn { background: var(--red); color: var(--white); box-shadow: 0 12px 28px rgba(230,57,70,.22); }
.cta-btn:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.cta-btn--light { background: var(--white); color: var(--ink); border-color: rgba(255,255,255,.25); }
.cta-btn--light:hover { background: var(--red); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.secondary-btn { background: transparent; border-color: rgba(26,26,46,.3); color: var(--ink); }
.secondary-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }

.menu-btn { display: none; }
.mobile-nav { display: block; position: fixed; inset: 0; z-index: 60; background: rgba(26,26,46,.58); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
.mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav__panel {
  position: absolute; right: 0; top: 0; width: min(92vw, 390px); height: 100%; background: var(--white); padding: 22px; box-shadow: var(--shadow);
  transform: translateX(102%); transition: transform .25s ease;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; color: var(--ink); text-transform: uppercase; letter-spacing: .12em; }
.mobile-nav__links { display: grid; gap: 12px; }
.mobile-nav__links a { padding: 15px 16px; border: 1px solid var(--border); border-radius: 16px; font-weight: 900; color: var(--ink); }
.mobile-nav__links a:hover { border-color: var(--red); color: var(--red); }
.mobile-nav__footer { margin-top: 20px; display: grid; gap: 12px; }

.hero {
  position: relative; isolation: isolate;
  min-height: 760px;
  display: flex; align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(230,57,70,.28), transparent 25%),
    linear-gradient(135deg, rgba(26,26,46,.96), rgba(26,26,46,.88)),
    url("https://images.unsplash.com/photo-1514228742587-6b1558fcca3d?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; right: clamp(20px, 7vw, 110px); bottom: 12%; width: min(42vw, 520px); aspect-ratio: 1.65; border: 24px solid rgba(255,255,255,.06); border-radius: 44px; transform: rotate(-5deg); }
.hero::after { content: "TOP"; position: absolute; right: clamp(24px, 8vw, 120px); top: 17%; padding: .02em .22em .08em; border-radius: 28px; background: var(--red); color: rgba(255,255,255,.95); font-size: clamp(4rem, 10vw, 10rem); line-height: 1; font-weight: 950; letter-spacing: -.06em; opacity: .12; pointer-events: none; }
.hero__content { position: relative; z-index: 1; max-width: 820px; padding: 96px 0; }
.hero h1 { color: var(--white); max-width: 780px; }
.hero h1 span { display: block; }
.hero p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 62ch; }
.hero .eyebrow { color: rgba(255,255,255,.74) !important; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: 17px; backdrop-filter: blur(8px); }
.stat strong { display: block; font-size: 1.02rem; margin-bottom: 4px; color: var(--white); }
.stat span { font-size: .9rem; color: rgba(255,255,255,.68); }

main > .section-muted:first-child {
  background:
    radial-gradient(circle at 88% 14%, rgba(230,57,70,.18), transparent 26%),
    linear-gradient(135deg, var(--off-white), var(--white));
  border-bottom: 1px solid var(--border);
}
main > .section-muted:first-child h1 { max-width: 12ch; }

.chip-row { display: grid; gap: 14px; }
.chip-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.chip, .category-card, .collection-card, .feature-card, .testimonial, .info-card, .mini-card, .product-card, .panel, .map-placeholder, .faq-item, .form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.chip { padding: 18px; display: grid; gap: 12px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.chip:hover, .category-card:hover, .collection-card:hover, .feature-card:hover, .testimonial:hover, .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(230,57,70,.42); }
.chip__icon, .category-card__icon { width: 48px; height: 48px; border-radius: 16px; background: var(--ink); color: var(--white); display: grid; place-items: center; font-weight: 950; letter-spacing: -.03em; }
.chip:hover .chip__icon { background: var(--red); }
.chip strong { display: block; color: var(--ink); text-transform: uppercase; letter-spacing: -.02em; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.section-head p { max-width: 64ch; }
.section-head--stack { align-items: start; flex-direction: column; }
.section-head__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }

.tb-collection-scroll {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  margin: 18px 0 10px;
}
.tb-collection-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(91,100,114,.18);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 22px rgba(26,26,46,.08);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease, opacity .2s ease;
  flex: 0 0 44px;
}
.tb-collection-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tb-collection-arrow:hover:not(:disabled) {
  border-color: rgba(230,57,70,.45);
  color: var(--red);
  background: #fff;
  box-shadow: 0 12px 28px rgba(230,57,70,.14);
  transform: translateY(-1px);
}
.tb-collection-arrow:active:not(:disabled) { transform: translateY(0); }
.tb-collection-arrow:disabled {
  opacity: .28;
  cursor: default;
  transform: none;
  box-shadow: none;
  color: #9aa3b2;
  border-color: rgba(91,100,114,.12);
  background: rgba(255,255,255,.7);
}
.collection-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  align-items: center;
  min-height: 44px;
}
.collection-nav::-webkit-scrollbar { display: none; }
.collection-nav a {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--slate);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
}
.collection-nav a:hover, .collection-nav a.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(230,57,70,.18);
}
@media (max-width: 768px) {
  .tb-collection-scroll { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 8px; margin: 14px 0 8px; }
  .tb-collection-arrow { width: 38px; height: 38px; flex-basis: 38px; }
  .tb-collection-arrow svg { width: 14px; height: 14px; }
  .collection-nav { min-height: 38px; }
  .collection-nav a { height: 38px; padding: 0 14px; font-size: .86rem; }
}

.category-card { overflow: hidden; background: var(--white); }
.category-card__image { aspect-ratio: 4/3; width: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.category-card__body { padding: 20px; display: grid; gap: 8px; }
.category-card__meta { display: flex; align-items: center; justify-content: space-between; color: var(--slate); font-size: .9rem; font-weight: 800; }
.category-card__meta span:first-child { color: var(--red); }

.feature-card, .testimonial, .info-card, .mini-card { padding: 24px; }
.feature-card, .info-card, .mini-card { position: relative; overflow: hidden; }
.feature-card::before, .info-card::before, .mini-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--red); }
.feature-card p, .info-card p, .testimonial p { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.panel { padding: 26px; }
.panel__image { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--off-white); }
.panel__image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; filter: saturate(.84) contrast(1.04); }
.bullets { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.bullets li { display: flex; gap: 11px; color: var(--slate); }
.bullets li::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--red); margin-top: .48rem; flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(230,57,70,.12); }

.trust-row { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
.trust-pill { padding: 15px 16px; border: 1px solid var(--border); border-radius: 999px; text-align: center; color: var(--ink); background: var(--white); font-size: .92rem; font-weight: 900; box-shadow: var(--shadow-soft); }
.trust-pill:hover { border-color: rgba(230,57,70,.42); color: var(--red); }

.product-toolbar { display: grid; grid-template-columns: 280px 1fr; gap: 22px; align-items: start; margin-top: 28px; }
.product-filters { min-width: 0; }
.mobile-filter-toggle { display: none; }
.filters { position: sticky; top: 112px; align-self: start; display: grid; gap: 14px; padding: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .86rem; font-weight: 900; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(91,100,114,.42); background: var(--white); border-radius: 14px; padding: 13px 14px; color: var(--ink); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; box-sizing: border-box;
}
.field select {
  height: 50px; min-height: 50px; line-height: normal; padding: 0 42px 0 14px;
  appearance: auto; -webkit-appearance: menulist; -moz-appearance: menulist;
  text-indent: 0; vertical-align: middle; overflow: visible;
}
.field input { height: 50px; min-height: 50px; line-height: normal; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,.12); }
.filters .field select option { color: var(--ink); line-height: 1.4; }
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--slate); }
.filter-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.results-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.results-head strong { font-size: 1.05rem; color: var(--ink); text-transform: uppercase; letter-spacing: .04em; }
.results-head .helper { margin: 0; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 18px; }
.active-filters .tag-btn { min-height: 34px; padding: 0 12px; font-size: .86rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card__media { position: relative; aspect-ratio: 1 / .92; overflow: hidden; background: var(--off-white); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; filter: saturate(.86) contrast(1.04); }
.product-card__media.tb-home-product-media img { object-fit: contain; padding: 16px; background: linear-gradient(135deg, var(--off-white), var(--white)); }
.category-card__image { object-fit: contain; background: linear-gradient(135deg, var(--off-white), var(--white)); padding: 10px; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.badge-row { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge { font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; color: var(--white); background: var(--ink); }
.badge.sale, .badge.stock { background: var(--red); }
.badge.low { background: var(--ink); }
.badge.out { background: var(--slate); }
.product-card__body { padding: 20px; display: grid; gap: 10px; flex: 1; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--slate); font-size: .88rem; font-weight: 800; }
.product-card__meta span { background: var(--off-white); border-radius: 999px; padding: 5px 9px; }
.price { font-weight: 900; font-size: 1.02rem; color: var(--ink); }
.price small { display: block; color: var(--red); font-weight: 900; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em; }
.product-card__actions { display: flex; gap: 10px; margin-top: auto; }
.product-card__actions .secondary-btn, .product-card__actions .cta-btn { flex: 1; min-height: 44px; padding-inline: 14px; }

.tb-products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.tb-product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; min-width: 0; }
.tb-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(230,57,70,.42); }
.tb-product-image-wrap { position: relative; aspect-ratio: 1 / .92; display: grid; place-items: center; background: linear-gradient(135deg, var(--off-white), var(--white)); overflow: hidden; }
.tb-product-image { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .35s ease; }
.tb-product-card:hover .tb-product-image { transform: scale(1.03); }
.tb-product-content { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 0; }
.tb-product-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tb-product-brand, .tb-product-category { background: var(--off-white); border-radius: 999px; padding: 5px 9px; color: var(--slate); font-size: .84rem; font-weight: 800; max-width: 100%; overflow-wrap: anywhere; }
.tb-product-stock { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; color: var(--white); background: var(--slate); }
.tb-product-stock--in { background: var(--red); }
.tb-product-stock--low { background: var(--ink); }
.tb-product-stock--request { background: var(--slate); }
.tb-product-title { font-size: 1.02rem; line-height: 1.22; margin: 0; overflow-wrap: anywhere; }
.tb-product-pack, .tb-product-description { margin: 0; color: var(--slate); font-size: .92rem; }
.tb-product-description { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 4.3em; }
.tb-product-price { margin-top: auto; font-weight: 950; color: var(--ink); }
.tb-product-price small { display: block; color: var(--red); font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; }
.tb-product-actions { display: flex; gap: 10px; margin-top: 4px; }
.tb-product-inquiry-btn { flex: 1; border: 1px solid transparent; border-radius: 999px; min-height: 44px; padding: 0 14px; background: var(--red); color: var(--white); font-weight: 950; transition: transform .2s ease, background .2s ease, color .2s ease; }
.tb-product-inquiry-btn:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }
.tb-products-empty { grid-column: 1 / -1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.tb-inquiry-modal { display: grid; gap: 16px; }
.tb-inquiry-modal__summary { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
.tb-inquiry-modal__summary img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 18px; background: var(--off-white); padding: 10px; }
.tb-inquiry-modal__message { display: none; margin: 0; padding: 12px 14px; border-radius: 14px; background: rgba(26,26,46,.08); color: var(--ink); font-weight: 800; }
.tb-inquiry-modal__message:not(:empty) { display: block; }
.tb-inquiry-modal__message.is-error { background: rgba(230,57,70,.1); color: var(--red); }

.collection-card { overflow: hidden; display: grid; }
.collection-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.collection-card__body { padding: 18px; display: grid; gap: 8px; }

.testimonial { display: grid; gap: 14px; border-top: 4px solid var(--red); }
.testimonial__name { font-weight: 900; color: var(--ink); text-transform: uppercase; font-size: .88rem; letter-spacing: .06em; }
.quote { font-size: 1.04rem; color: var(--ink); font-weight: 700; }

.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white); border-radius: 30px; padding: 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow);
}
.cta-band::after { content: ""; position: absolute; right: -42px; bottom: -70px; width: 260px; height: 160px; border-radius: 44px; background: var(--red); opacity: .18; transform: rotate(-10deg); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.72); }
.cta-band .eyebrow::before { background: var(--red); }

.form-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 20px; align-items: start; }
.form-card { padding: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.helper { font-size: .92rem; color: var(--slate); }

.faq { display: grid; gap: 12px; }
.faq-item { overflow: hidden; box-shadow: none; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: transparent; border: 0; text-align: left; font-weight: 900; color: var(--ink); }
.faq-question span { color: var(--red); font-size: 1.2rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 20px; color: var(--slate); }
.faq-item.is-open { border-color: rgba(230,57,70,.45); }
.faq-item.is-open .faq-answer { max-height: 220px; padding-bottom: 18px; }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: start; }
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; padding: 17px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
.contact-item strong { display: block; margin-bottom: 2px; color: var(--ink); text-transform: uppercase; letter-spacing: .04em; font-size: .88rem; }
.contact-item span { color: var(--slate); }
.map-placeholder { min-height: 320px; padding: 24px; display: grid; place-items: center; background: linear-gradient(135deg, var(--off-white), var(--white)); border-style: dashed; }

.tb-account-login-page main > .tb-login-hero { background: radial-gradient(circle at 88% 18%, rgba(230,57,70,.16), transparent 28%), linear-gradient(135deg, var(--off-white), var(--white)); }
.tb-login-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 460px); gap: 32px; align-items: center; }
.tb-login-hero h1 { max-width: 760px; }
.tb-login-hero p { max-width: 58ch; font-size: 1.05rem; }
.tb-login-card, .tb-account-apply-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 30px; box-shadow: var(--shadow); }
.tb-login-card { padding: 30px; }
.tb-login-card::before, .tb-account-apply-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--red); }
.tb-login-form { display: grid; gap: 16px; margin-top: 18px; }
.tb-login-field { display: grid; gap: 8px; }
.tb-login-field label { color: var(--ink); font-size: .86rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.tb-login-field input { width: 100%; border: 1px solid rgba(91,100,114,.42); background: var(--white); border-radius: 14px; padding: 14px; color: var(--ink); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.tb-login-field input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,.12); }
.tb-login-form__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--slate); font-size: .92rem; }
.tb-login-form__row a { color: var(--red); font-weight: 900; }
.tb-login-check { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.tb-login-check input { accent-color: var(--red); }
.tb-login-button { border: 0; border-radius: 999px; min-height: 50px; padding: 0 22px; background: var(--red); color: var(--white); font-weight: 950; box-shadow: 0 12px 28px rgba(230,57,70,.22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.tb-login-button:hover { background: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.tb-login-error, .tb-login-message { display: none; margin: 0; padding: 12px 14px; border-radius: 14px; font-size: .92rem; font-weight: 800; }
.tb-login-error.is-visible { display: block; background: rgba(230,57,70,.1); color: var(--red); }
.tb-login-message.is-visible { display: block; background: rgba(26,26,46,.08); color: var(--ink); }
.tb-account-apply-card { padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tb-account-apply-card p { max-width: 68ch; margin-bottom: 0; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink); background: var(--white); font-weight: 900; text-transform: uppercase; }
.social-links a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer { background: var(--ink); border-top: 0; color: var(--white); }
.footer__top { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1fr; gap: 28px; }
.footer .brand__text, .footer h3 { color: var(--white); }
.footer .brand__text small { color: rgba(255,255,255,.62); }
.footer h3 { font-size: .95rem; letter-spacing: .08em; }
.footer p { color: rgba(255,255,255,.66); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.68); }
.footer a:hover { color: var(--red); }
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-row span { padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); font-size: .82rem; color: rgba(255,255,255,.68); font-weight: 800; }
.footer__bottom { padding: 18px 0 28px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: .9rem; }
.footer .social-links a { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--white); }
.footer .social-links a:hover { background: var(--red); border-color: var(--red); }

.drawer, .modal { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(26,26,46,.58); }
.drawer.is-open, .modal.is-open { display: block; }
.drawer__panel, .modal__panel { position: absolute; background: var(--white); box-shadow: var(--shadow); overflow: auto; }
.drawer__panel { top: 0; right: 0; width: min(100vw, 460px); height: 100%; transform: translateX(100%); transition: transform .25s ease; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.modal__panel { left: 50%; top: 50%; width: min(92vw, 680px); max-height: min(88vh, 820px); transform: translate(-50%, -50%) scale(.98); opacity: 0; transition: .22s ease; border-radius: 28px; }
.modal.is-open .modal__panel { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.drawer__header, .modal__header { display: flex; justify-content: space-between; align-items: start; gap: 18px; padding: 22px; border-bottom: 1px solid var(--border); }
.drawer__body, .modal__body { padding: 22px; display: grid; gap: 14px; }
.close-btn { border: 1px solid var(--border); background: var(--white); color: var(--ink); border-radius: 999px; width: 38px; height: 38px; font-weight: 900; }
.close-btn:hover { border-color: var(--red); color: var(--red); }
.inquiry-list { display: grid; gap: 10px; }
.inquiry-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--border); border-radius: 16px; padding: 12px 14px; }

.scroll-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.scroll-reveal.is-visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 1120px) {
  .header { z-index: 70; }
  .header__row { gap: 12px; }
  .nav { gap: 12px; }
  .nav a { font-size: .82rem; }
  .header__actions .cta-btn { padding-inline: 16px; }
  .hero { min-height: 660px; }
  .hero__stats, .grid-4, .trust-row, .footer__top, .product-toolbar, .form-layout, .contact-grid, .grid-2 { grid-template-columns: 1fr 1fr; }
  .tb-login-hero__grid { grid-template-columns: 1fr; }
  .grid-3, .chip-grid, .product-grid, .tb-products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .panel__image img { min-height: 300px; }
}

@media (max-width: 768px) {
  .header__row { grid-template-columns: 1fr auto; min-height: 74px; }
  .nav { display: none; }
  .header__actions .icon-btn, .header__actions .cta-btn { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-nav { top: 74px; }
  .mobile-nav__panel { height: calc(100dvh - 74px); }
  .brand__mark { min-width: 64px; height: 38px; border-radius: 12px; font-size: 1.14rem; }
  .brand__text { font-size: 1.2rem; }
  .brand__text small { font-size: .49rem; letter-spacing: .18em; }
  .hero { min-height: 0; padding-top: 50px; padding-bottom: 54px; }
  .hero::before, .hero::after { display: none; }
  .hero h1, main > .section-muted:first-child h1 { max-width: none; }
  .hero__stats, .grid-2, .grid-3, .grid-4, .chip-grid, .product-grid, .tb-products-grid, .footer__top, .form-grid, .trust-row, .product-toolbar, .form-layout, .contact-grid { grid-template-columns: 1fr; }
  .tb-login-hero__grid { gap: 22px; }
  .tb-login-card, .tb-account-apply-card { padding: 24px; border-radius: 24px; }
  .tb-login-form__row, .tb-account-apply-card { flex-direction: column; align-items: flex-start; }
  .hero__content { padding: 28px 0; }
  .section { padding: 58px 0; }
  .section-head, .cta-band { flex-direction: column; align-items: flex-start; }
  .product-card__actions { flex-direction: column; }
  .tb-product-actions, .tb-inquiry-modal__summary { grid-template-columns: 1fr; }
  .filters { position: static; }
  .mobile-filter-toggle {
    width: 100%; min-height: 64px; padding: 12px 16px; border: 1px solid var(--border); border-radius: 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--white); color: var(--ink); box-shadow: var(--shadow-soft);
    text-align: left; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .mobile-filter-toggle strong { display: block; font-size: 1rem; font-weight: 950; letter-spacing: -.01em; }
  .mobile-filter-toggle small { display: block; margin-top: 2px; color: var(--slate); font-size: .82rem; font-weight: 800; }
  .mobile-filter-toggle__icon { width: 12px; height: 12px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); transition: transform .22s ease; flex: 0 0 auto; margin-right: 4px; }
  .product-filters.is-open .mobile-filter-toggle { border-color: rgba(230,57,70,.42); box-shadow: var(--shadow); }
  .product-filters.is-open .mobile-filter-toggle__icon { transform: rotate(225deg); }
  .product-filters .filters {
    max-height: 0; opacity: 0; overflow: hidden; padding-top: 0; padding-bottom: 0; margin-top: 0;
    border-color: transparent; box-shadow: none; pointer-events: none; transition: max-height .3s ease, opacity .2s ease, padding .3s ease, margin .3s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .product-filters.is-open .filters {
    max-height: 980px; opacity: 1; padding-top: 20px; padding-bottom: 20px; margin-top: 12px;
    border-color: var(--border); box-shadow: var(--shadow-soft); pointer-events: auto;
  }
  .product-filters .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .product-filters .filter-actions .cta-btn, .product-filters .filter-actions .secondary-btn { flex: 1; min-height: 44px; padding-inline: 12px; }
  .announcement__track { animation-duration: 12s; }
  .announcement__badge { display: none; }
  .menu-btn { padding: 0; }
  .cta-band { padding: 24px; border-radius: 24px; }
  .form-grid .span-2 { grid-column: span 1; }
}
