:root {
  --tm-primary: #111;
  --tm-secondary: #fff;
  --tm-accent: #e10600;
  --tm-bg: #fff;
  --tm-surface: #f5f5f5;
  --tm-text: #111;
  --tm-muted: #6f6f6f;
  --tm-border: #e7e7e7;
  --tm-header-bg: #0b0b0b;
  --tm-header-text: #fff;
  --tm-footer-bg: #0b0b0b;
  --tm-footer-text: #f3f3f3;
  --tm-font-heading: Outfit, Inter, sans-serif;
  --tm-font-body: Inter, "Segoe UI", sans-serif;
  --tm-font-nav: Inter, sans-serif;
  --tm-font-button: Inter, sans-serif;
  --tm-size: 16px;
  --tm-radius: 16px;
  --tm-radius-btn: 999px;
  --tm-radius-input: 12px;
  --tm-radius-card: 18px;
  --tm-container: 1240px;
  --tm-section: 88px;
  --tm-gap: 18px;
  --tm-shadow: 0 10px 30px rgba(0,0,0,.06);
  --tm-header-h: 72px;
  --tm-header-h-m: 64px;
  --tm-cols: 4;
  --tm-cols-t: 3;
  --tm-cols-m: 2;
  --tm-cat-d: 5;
  --tm-cat-t: 3;
  --tm-cat-m: 2;
  --tm-card-ratio: 1 / 1;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
html, body, a, button, img, svg, input, label, summary {
  -webkit-tap-highlight-color: transparent;
}
a, button, .tm-icon-btn, .tm-btn, .tm-card, .tm-cat, img {
  -webkit-user-drag: none;
}
::selection { background: #111; color: #fff; }

body.tm-theme {
  margin: 0;
  background: var(--tm-bg);
  color: var(--tm-text);
  font-family: var(--tm-font-body);
  font-size: var(--tm-size);
  font-weight: var(--tm-weight-body, 420);
  line-height: var(--tm-leading-body, 1.6);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a:focus, button:focus, input:focus { outline: none; }
a:focus-visible, button:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.woocommerce a, .woocommerce a:hover { color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--tm-font-heading); font-weight: var(--tm-weight-heading, 560); letter-spacing: var(--tm-track-heading, -.03em); line-height: var(--tm-leading-heading, 1.08); margin: 0 0 .4em; }

.screen-reader-text, .tm-skip {
  position: absolute;
  left: -999px;
}
.tm-skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 8px 12px; }

.tm-container {
  width: min(var(--tm-container), calc(100% - 40px));
  margin-inline: auto;
}

.tm-main { min-height: 50vh; }

.tm-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tm-muted);
}
.tm-h2 { font-size: clamp(28px, 3vw, 40px); }
.tm-page-title { font-size: clamp(40px, 6vw, 72px); }
.tm-lead { font-size: 17px; color: var(--tm-muted); max-width: 42rem; }
.tm-muted { color: var(--tm-muted); }
.tm-section { padding: var(--tm-section) 0; }
.tm-section--tight { padding-top: 12px; }
.tm-page { padding: 48px 0 80px; }
.tm-page-head { margin-bottom: 28px; }

.tm-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}
.tm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 560;
}
.tm-text-link .tm-icon { width: 16px; height: 16px; }

.tm-icon { width: 20px; height: 20px; display: block; }
.tm-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: inherit;
  position: relative;
}
.tm-icon-btn:hover { background: rgba(255,255,255,.08); }
.tm-icon-btn:active { transform: scale(.92); }
.tm-icon-btn:focus { outline: none; }
.tm-icon-btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.tm-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--tm-accent);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.tm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--tm-radius-btn);
  border: 1px solid transparent;
  font-family: var(--tm-font-button);
  font-weight: var(--tm-weight-button, 560);
  letter-spacing: .01em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.tm-btn { position: relative; overflow: hidden; }
.tm-btn:hover { transform: translateY(-2px); }
.tm-btn:active { transform: scale(.97); }
.tm-btn:focus { outline: none; }
.tm-btn:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.tm-btn--light { background: #fff; color: #111; }
.tm-btn--dark { background: var(--tm-primary); color: var(--tm-secondary); }
.tm-btn--ghost { background: transparent; border-color: currentColor; }
.tm-btn--block { width: 100%; }
.tm-btn .tm-icon { width: 16px; height: 16px; }

.tm-input, .tm-form select, .woocommerce form .input-text, .woocommerce form select, .select2-container .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius-input);
  background: var(--tm-bg);
  color: var(--tm-text);
}
textarea.tm-input { padding: 12px 14px; min-height: 120px; resize: vertical; }
.tm-input:focus, .woocommerce form .input-text:focus { outline: 2px solid var(--tm-primary); outline-offset: 1px; }

.tm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--tm-header-bg);
  color: var(--tm-header-text);
  height: var(--tm-header-h);
  overflow: hidden;
}
.tm-header__bar {
  height: 100%;
  width: min(var(--tm-container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.tm-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  min-width: 0;
}
.tm-logo__mark { width: 28px; height: 28px; display: grid; place-items: center; background: #111; border-radius: 6px; overflow: hidden; flex: 0 0 28px; }
.tm-logo__mark img, .tm-auth__mark, .tm-promo__mark img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.tm-auth__mark, .tm-empty__mark { width: 72px; height: 72px; border-radius: 12px; }
.tm-hero__box img { width: 58%; height: auto; object-fit: contain; }
.tm-logo__word {
  font-family: var(--tm-font-heading);
  font-weight: 650;
  letter-spacing: .16em;
  font-size: 14px;
}
.tm-logo__img { width: var(--tm-logo-w, 156px); height: auto; }
.tm-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 28px;
  min-width: 0;
  font-family: var(--tm-font-nav);
  font-weight: var(--tm-weight-nav, 500);
  font-size: 15px;
  letter-spacing: var(--tm-track-nav, .01em);
}
.tm-nav a { opacity: .82; }
.tm-nav a:hover, .tm-nav a:focus-visible { opacity: 1; }
.tm-logo, .tm-header__tools { flex: 0 0 auto; }
.tm-header__tools { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
body.tm-busy { cursor: progress; }
body.tm-busy::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(255,255,255,.35);
}
.tm-btn.is-loading { pointer-events: none; opacity: .7; }
.tm-loader { display: none !important; }
@keyframes tm-spin { to { transform: rotate(360deg); } }
body.tm-loading { cursor: progress; }
body.tm-loading::before {
  content: "";
  position: fixed;
  top: 0; left: 0; height: 2px; width: 40%;
  background: var(--tm-accent);
  z-index: 200;
  animation: tm-bar .7s ease infinite;
}
@keyframes tm-bar { 50% { left: 60%; width: 30%; } }
.tm-demo-bar {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.tm-demo-bar button {
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}
.tm-announce {
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}

.tm-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: var(--tm-hero-h, 520px);
  background: var(--tm-hero-bg);
  color: var(--tm-hero-text);
}
.tm-hero__media {
  position: absolute;
  inset: 0;
}
.tm-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,calc(var(--tm-overlay, 28) / 100)));
}
.tm-hero__photo { width: 100%; height: 100%; object-fit: cover; }
.tm-hero__stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 70% 40%, #1a1a1a 0%, #070707 70%);
}
.tm-hero__box {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: min(340px, 42vw);
  aspect-ratio: 1;
  background: #111;
  border: 1px solid #2a2a2a;
  box-shadow: 30px 40px 80px rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.tm-hero__box img { width: 58%; height: auto; margin: 0 auto; object-fit: contain; }
.tm-hero__box p { margin: 12px 0 0; letter-spacing: .22em; font-size: 12px; }
.tm-hero__box small { letter-spacing: .16em; font-size: 10px; opacity: .7; }
.tm-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 380px);
  gap: 48px;
  align-items: center;
  min-height: inherit;
  padding: 64px 0;
}
.tm-hero__copy {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 640px;
}
.tm-brand-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #111;
  border: 1px solid #2a2a2a;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 28px;
  border-radius: 18px;
}
.tm-brand-card img { width: 58%; height: auto; margin: 0 auto; object-fit: contain; }
.tm-brand-card p, .tm-brand-card small { display: block; margin: 12px 0 0; letter-spacing: .18em; font-size: 12px; }
.tm-about__visual { min-width: 0; }
.tm-about__visual .tm-brand-card { max-width: 420px; margin-inline: auto; }
.tm-hero--center .tm-hero__copy { margin-inline: auto; text-align: center; }
.tm-hero__title { font-size: clamp(42px, 6.4vw, 84px); text-transform: uppercase; }
.tm-hero__lead { color: rgba(255,255,255,.78); font-size: 18px; }
.tm-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.tm-band { background: var(--tm-bg); border-bottom: 1px solid var(--tm-border); }
.tm-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0;
}
.tm-trust li { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.tm-trust strong { display: block; }
.tm-trust em { display: block; font-style: normal; color: var(--tm-muted); font-size: 13px; }
.tm-trust__icon { width: 36px; height: 36px; display: grid; place-items: center; }

.tm-cat-grid {
  display: grid;
  grid-template-columns: repeat(var(--tm-cat-d), minmax(0, 1fr));
  gap: var(--tm-gap);
}
.tm-cat {
  background: var(--tm-surface);
  border-radius: var(--tm-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tm-cat__media { aspect-ratio: 1; display: grid; place-items: center; padding: 18px; }
.tm-cat__media img { width: 72%; height: 72%; object-fit: contain; }
.tm-cat__ph {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--tm-font-heading);
  font-size: 42px;
  letter-spacing: .04em;
}
.tm-cat__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 16px;
  font-size: 14px;
  font-weight: 560;
}
.tm-cat__meta .tm-icon { width: 16px; height: 16px; }

.tm-feature {
  display: grid;
  grid-template-columns: 1.6fr .7fr;
  gap: var(--tm-gap);
}
.tm-grid {
  display: grid;
  gap: var(--tm-gap);
}
.tm-grid--products { grid-template-columns: repeat(var(--tm-cols), minmax(0, 1fr)); }
.tm-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tm-card__media {
  position: relative;
  display: block;
  background: var(--tm-surface);
  border-radius: var(--tm-radius-card);
  overflow: hidden;
  aspect-ratio: var(--tm-card-ratio);
}
.tm-card__img, .tm-card__ph { width: 100%; height: 100%; object-fit: contain; padding: 8%; background: #f4f4f4; }
.tm-card__ph { background: #ececec; }
.tm-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.tm-card:hover .tm-card__img--hover { opacity: 1; }
.tm-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
}
.tm-wish.is-on { color: var(--tm-accent); }
.tm-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.tm-card__body { padding: 12px 2px 4px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tm-card__title { font-size: 15px; font-weight: 560; letter-spacing: -.01em; }
.tm-price { font-weight: 560; }
.tm-price del { color: var(--tm-muted); font-weight: 420; margin-right: 6px; }
.tm-card .tm-btn { margin-top: auto; }

.tm-promo {
  background: #0b0b0b;
  color: #fff;
  border-radius: var(--tm-radius-card);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background-image: radial-gradient(80% 80% at 70% 20%, #222, #0b0b0b);
}
.tm-promo__mark svg { width: 72px; color: #fff; }
.tm-promo p { letter-spacing: .16em; font-size: 13px; margin: 16px 0 0; }

.tm-shop__head, .tm-shop__tools { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; }
.tm-shop__layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
.tm-filters fieldset { border: 0; padding: 0; margin: 0 0 18px; }
.tm-filters legend { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.tm-filters label { display: flex; gap: 8px; align-items: center; font-size: 14px; margin: 6px 0; }
.tm-price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tm-load { display: flex; justify-content: center; margin: 28px 0; }
.woocommerce-ordering select { min-height: 42px; border-radius: var(--tm-radius-input); border: 1px solid var(--tm-border); padding: 0 12px; }

.tm-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 20px;
  font-size: 13px;
  color: #6f6f6f;
}
.tm-crumbs ol, .tm-crumbs li { list-style: none; margin: 0; padding: 0; display: inline; }
.tm-crumbs a { color: #111; }
.tm-product__layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; align-items: start; }
.tm-gallery__main { width: 100%; height: auto; border-radius: 18px; background: #f4f4f4; object-fit: contain; }
.woocommerce-product-gallery, .woocommerce-product-gallery__wrapper, .woocommerce-product-gallery__image { float: none !important; width: 100% !important; opacity: 1 !important; }
.tm-gallery .woocommerce-product-gallery { width: 100% !important; }
.tm-gallery .woocommerce-product-gallery__image img { border-radius: var(--tm-radius-card); background: var(--tm-surface); }
.tm-product__title { font-size: clamp(32px, 4vw, 48px); }
.tm-price--lg { font-size: 22px; margin: 8px 0 12px; }
.tm-buy { display: grid; gap: 10px; margin: 18px 0; }
.tm-buy .cart, .tm-buy form.cart { display: grid; gap: 10px; }
.tm-buy .quantity { display: inline-flex; }
.tm-product__meta { display: flex; flex-wrap: wrap; gap: 12px 16px; color: var(--tm-muted); font-size: 14px; }
.tm-note { font-size: 14px; color: var(--tm-muted); }

.tm-acc { border-top: 1px solid var(--tm-border); }
.tm-acc summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 560;
}
.tm-acc summary::-webkit-details-marker { display: none; }
.tm-acc__body { padding: 0 0 16px; color: var(--tm-muted); }
.tm-acc[open] summary .tm-icon { transform: rotate(180deg); }

.tm-split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: center; }
.tm-split--top { align-items: start; }
.tm-line {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--tm-border);
}
.tm-line__media img, .tm-line__media { width: 88px; height: 88px; object-fit: cover; background: var(--tm-surface); border-radius: 12px; }
.tm-line h2 { font-size: 16px; }
.tm-summary, .tm-card-panel {
  background: var(--tm-surface);
  border-radius: var(--tm-radius-card);
  padding: 22px;
}
.tm-summary h2, .tm-card-panel h2 { font-size: 18px; }
.cart_totals, .woocommerce-checkout-review-order-table { width: 100%; }
.cart_totals table, .woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; }
.cart_totals th, .cart_totals td, .woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--tm-border);
  font-weight: 500;
}
.single_add_to_cart_button,
button.button,
.wc-proceed-to-checkout .checkout-button,
#place_order {
  width: 100%;
  margin-top: 12px;
  min-height: 50px;
  border-radius: var(--tm-radius-btn);
  background: #111 !important;
  color: #fff !important;
  border: 0;
}
.tm-coupon { display: flex; gap: 8px; margin-top: 12px; }
.tm-steps { display: flex; gap: 18px; font-size: 13px; color: var(--tm-muted); margin: 8px 0 0; }
.tm-steps .is-on { color: var(--tm-text); font-weight: 650; }
.tm-hide { display: none !important; }
.tm-form { display: grid; gap: 12px; }
.tm-form label, .woocommerce form .form-row { display: grid; gap: 6px; font-size: 13px; margin: 0 0 12px; }
.tm-facts li { display: grid; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--tm-border); }
.tm-facts span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--tm-muted); }

.tm-thanks { max-width: 720px; text-align: center; margin-inline: auto; }
.tm-thanks__mark {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 999px; border: 1px solid var(--tm-border);
  display: grid; place-items: center;
}
.tm-order-no { font-size: 28px; letter-spacing: .08em; }

.tm-account__layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; }
.tm-account-nav { display: grid; gap: 4px; align-content: start; }
.tm-account-nav a { padding: 10px 12px; border-radius: 10px; }
.tm-account-nav a.is-on, .tm-account-nav a:hover { background: var(--tm-surface); }
.tm-auth-page { padding: 48px 0 72px; }
.tm-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.tm-auth__panel h1, .tm-auth__panel h2 { margin: 8px 0 8px; }
.tm-auth__mark { width: 72px; height: 72px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; }
.tm-form label { display: grid; gap: 6px; font-size: 13px; margin: 0 0 12px; }
.tm-empty--cart { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 28px 8px 12px; }
.tm-empty--cart h3 { margin: 8px 0 0; }
.tm-auth--single { grid-template-columns: minmax(0, 520px); justify-content: center; }
.tm-order-list { display: grid; gap: 10px; }
.tm-order { display: grid; grid-template-columns: 1.4fr auto auto auto; gap: 12px; align-items: center; background: var(--tm-surface); border-radius: 14px; padding: 14px 16px; }
.tm-status { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.woocommerce form .form-row { margin: 0 0 12px; }
.woocommerce form .form-row label { font-size: 13px; }
.woocommerce table.shop_table { width: 100%; border: 0; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-top: 0; border-bottom: 1px solid var(--tm-border); padding: 10px 0; }
.woocommerce-MyAccount-content .woocommerce-orders-table, .woocommerce-Address { background: transparent; }

.tm-policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.tm-policy-nav { display: grid; gap: 8px; position: sticky; top: 96px; }
.tm-policy-body article { margin-bottom: 36px; }
.tm-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tm-gap); margin-top: 24px; }
.tm-value { background: var(--tm-surface); border-radius: var(--tm-radius-card); padding: 22px; }
.tm-about__visual .tm-hero__box { position: relative; right: auto; top: auto; transform: none; width: 100%; }

.tm-footer { background: var(--tm-footer-bg); color: var(--tm-footer-text); padding: 56px 0 24px; }
.tm-footer a { opacity: .82; }
.tm-footer a:hover { opacity: 1; }
.tm-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.tm-footer h2 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.tm-footer li { margin: 8px 0; font-size: 14px; }
.tm-footer__tag { letter-spacing: .16em; font-size: 12px; opacity: .7; }
.tm-footer__base { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.tm-social { display: flex; gap: 8px; }
.tm-news { display: flex; gap: 8px; }
.tm-news .tm-input { background: transparent; color: #fff; border-color: rgba(255,255,255,.2); }

.tm-drawer[hidden], .tm-modal[hidden] { display: none; }
.tm-drawer { position: fixed; inset: 0; z-index: 80; }
.tm-drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.tm-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.12);
}
.tm-drawer--left .tm-drawer__panel { right: auto; left: 0; width: min(360px, 88vw); box-shadow: 16px 0 40px rgba(0,0,0,.12); }
.tm-drawer__kicker { margin: 0; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.tm-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
}
.tm-mini__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0;
}
.tm-drawer__head { border-bottom: 1px solid var(--tm-border); }
.tm-drawer__head .tm-icon-btn { color: #111; background: #f3f3f3; }
.tm-drawer__body {
  overflow: hidden;
  padding: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.tm-mini { display: grid; gap: 10px; flex: 1; overflow: auto; padding: 12px 16px; align-content: start; }
.tm-mini__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 16px;
}
.tm-mini__thumb { display: block; border-radius: 12px; overflow: hidden; background: #fff; }
.tm-mini img, .tm-mini__thumb img { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: 12px; }
.tm-mini__row { display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.tm-mini__info { display: grid; gap: 6px; min-width: 0; }
.tm-mini__info strong { font-size: 14px; line-height: 1.3; }
.tm-mini__remove { width: 32px; height: 32px; color: #111; }
.tm-mini__foot {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--tm-border);
  background: #fff;
}
.tm-mini__foot .tm-btn { width: 100%; }
.tm-mini__view { justify-content: center; }
.tm-qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid #e4e4e4; border-radius: 999px; padding: 2px; background: #fff; width: fit-content; }
.tm-qty button { width: 32px; height: 32px; display: grid; place-items: center; border: 0; background: transparent; border-radius: 999px; }
.tm-qty button:active { background: #f0f0f0; }
.tm-qty span, .tm-qty .qty { min-width: 22px; text-align: center; font-size: 14px; }
.tm-qty .tm-icon { width: 14px; height: 14px; }
.tm-mobile-nav { display: grid; gap: 8px; padding: 16px; }
.tm-mobile-nav a {
  display: grid;
  grid-template-columns: 36px 1fr 16px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #f6f6f6;
  font-size: 16px;
  font-weight: 560;
}
.tm-mobile-nav a:active { background: #111; color: #fff; transform: scale(.98); }
.tm-nav-ico, .tm-nav-go { display: grid; place-items: center; }
.tm-nav-ico { width: 36px; height: 36px; border-radius: 10px; background: #fff; }
.tm-drawer__note { margin-top: auto; padding: 18px; border-top: 1px solid var(--tm-border); }
.tm-drawer__note p { margin: 10px 0 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #6f6f6f; }
.tm-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: start center; padding-top: 12vh; }
.tm-modal__panel { position: relative; width: min(640px, calc(100% - 32px)); background: #fff; color: #111; border-radius: 16px; padding: 18px; }
.tm-search-hit { display: grid; grid-template-columns: 56px 1fr; gap: 10px; padding: 8px 0; }
.tm-search-hit img { width: 56px; height: 56px; object-fit: cover; background: var(--tm-surface); }
.woocommerce-checkout-payment, #payment { background: transparent; }
.payment_methods { list-style: none; padding: 0; margin: 0; }
.payment_methods li { border: 1px solid var(--tm-border); border-radius: 12px; padding: 12px; margin: 0 0 8px; background: #fff; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: var(--tm-surface);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 16px;
  list-style: none;
}
.products { display: grid; grid-template-columns: repeat(var(--tm-cols), minmax(0,1fr)); gap: var(--tm-gap); list-style: none; padding: 0; }
.only-mobile, .tm-only-mobile { display: none; }

@media (max-width: 1024px) {
  .tm-cat-grid { grid-template-columns: repeat(var(--tm-cat-t), minmax(0,1fr)); }
  .tm-grid--products, .products { grid-template-columns: repeat(var(--tm-cols-t), minmax(0,1fr)); }
  .tm-feature, .tm-product__layout, .tm-split, .tm-shop__layout, .tm-account__layout, .tm-footer__grid, .tm-policy-layout, .tm-auth {
    grid-template-columns: 1fr;
  }
  .tm-nav { display: none; }
  .tm-header__bar { grid-template-columns: auto minmax(0, 1fr) auto; }
  .tm-only-mobile { display: inline-flex; }
  .tm-hide-mobile { display: none; }
  .tm-header { height: var(--tm-header-h-m); }
  .tm-hero { min-height: var(--tm-hero-ht, 420px); }
  .tm-hero__grid { grid-template-columns: 1fr; padding: 32px 0; }
  .tm-brand-card, .tm-hero__box { display: none; }
  .tm-line { grid-template-columns: 72px 1fr; }
  .tm-line__end { grid-column: 2; }
  .tm-value-grid { grid-template-columns: 1fr; }
  .tm-section { padding: var(--tm-section-m, 56px) 0; }
  .tm-filters {
    display: none;
    position: fixed;
    inset: auto 12px 12px 12px;
    z-index: 85;
    max-height: 78vh;
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
  }
  .tm-filters.is-open { display: block; }
  .tm-drawer__panel { width: min(100%, 100vw); }
  .tm-drawer--left .tm-drawer__panel { width: min(340px, 88vw); }
  .tm-header__bar { width: min(var(--tm-container), calc(100% - 20px)); }
  .tm-page-title { font-size: clamp(32px, 9vw, 56px); }
}

@media (max-width: 640px) {
  .tm-mini__item { grid-template-columns: 72px 1fr; }
  .tm-mini img, .tm-mini__thumb img { width: 72px; height: 72px; }
  .tm-btn { min-height: 46px; }
  .tm-shop__head { align-items: stretch; }
  .tm-container { width: min(var(--tm-container), calc(100% - 28px)); }
  .tm-cat-grid { grid-template-columns: repeat(var(--tm-cat-m), minmax(0,1fr)); }
  .tm-grid--products, .products { grid-template-columns: repeat(var(--tm-cols-m), minmax(0,1fr)); }
  .tm-trust { grid-template-columns: 1fr; }
  .tm-hero { min-height: var(--tm-hero-hm, 280px); }
  .tm-hero__grid { padding: 20px 0; }
  .tm-hero__title { font-size: 32px; }
  .tm-footer__base, .tm-shop__head, .tm-news { flex-direction: column; align-items: stretch; }
}

@keyframes tm-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes tm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tm-drawer-in {
  from { transform: translateX(28px); }
  to { transform: none; }
}
@keyframes tm-drawer-left {
  from { transform: translateX(-28px); }
  to { transform: none; }
}
.tm-hero__copy, .tm-brand-card, .tm-section, .tm-card-panel, .tm-value {
  animation: tm-rise .55s ease both;
}
.tm-cat, .tm-card, .tm-value, .tm-btn, .tm-icon-btn, .tm-nav a, .tm-footer a {
  transition: transform .22s ease, box-shadow .25s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.tm-cat:hover, .tm-card:hover, .tm-value:hover { transform: translateY(-4px); }
.tm-drawer:not([hidden]) .tm-drawer__backdrop { animation: tm-fade .25s ease; }
.tm-drawer:not([hidden]) .tm-drawer__panel { animation: tm-drawer-in .32s cubic-bezier(.2,.7,.2,1); }
.tm-drawer--left:not([hidden]) .tm-drawer__panel { animation: tm-drawer-left .32s cubic-bezier(.2,.7,.2,1); }
.tm-modal:not([hidden]) .tm-modal__panel { animation: tm-rise .28s ease; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
