/* ==========================================================================
   TAMGA RUN — MONOCHROME MINIMALIST CONSOLE DESIGN SYSTEM
   High-Contrast Dark Theme, Pure White Accents & Crisp Precision
   ========================================================================== */

:root {
  --t-bg: #09090b;
  --t-bg-sidebar: #0e0e11;
  --t-bg-card: #131316;
  --t-bg-card-hover: #18181c;
  --t-bg-input: #151518;
  --t-border: rgba(255, 255, 255, 0.08);
  --t-border-hover: rgba(255, 255, 255, 0.18);
  --t-border-focus: #ffffff;
  
  /* MONOCHROME PRIMARY (Pure Crisp White) */
  --t-primary: #ffffff;
  --t-primary-hover: #e4e4e7;
  --t-primary-text: #09090b;
  --t-primary-glow: rgba(255, 255, 255, 0.12);
  
  --t-emerald: #10b981;
  --t-amber: #f59e0b;
  --t-rose: #ef4444;
  --t-text: #f4f4f5;
  --t-text-sec: #a1a1aa;
  --t-text-muted: #71717a;
  --t-radius: 12px;
  --t-radius-sm: 8px;
  --t-radius-lg: 16px;
  --t-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
  --t-shadow-glow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* Base resets & layout */
body {
  background-color: var(--t-bg);
  color: var(--t-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.t-console-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--t-bg);
}

/* ==========================================================================
   TOPBAR HEADER
   ========================================================================== */
.t-topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(14, 14, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--t-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.t-topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.t-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.t-brand-logo {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.t-brand-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-brand-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.t-brand-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.t-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--t-text-sec);
}

.t-bc-sep {
  display: flex;
  align-items: center;
  color: var(--t-text-muted);
}

.t-bc-link {
  color: var(--t-text-sec);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.t-bc-link:hover {
  color: #fff;
}

.t-bc-current {
  color: #fff;
  font-weight: 600;
}

.t-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t-border);
  font-size: 12px;
  font-weight: 500;
  color: #e4e4e7;
}

.t-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: tPulse 2s infinite;
}

/* PURE WHITE ACTION BUTTON */
.t-btn-deploy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--t-radius-sm);
  background: #ffffff;
  color: #09090b !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  transition: all 0.15s ease;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.t-btn-deploy:hover {
  background: #e4e4e7;
  color: #09090b !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.t-btn-deploy svg {
  stroke: #09090b;
}

.t-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--t-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--t-border);
  transition: all 0.15s;
  cursor: pointer;
}

.t-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--t-border-hover);
  color: #fff;
}

/* User Profile */
.t-profile-dropdown {
  position: relative;
}

.t-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--t-border);
  color: #fff;
  cursor: pointer;
  transition: all 0.15s;
}

.t-profile-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--t-border-hover);
}

.t-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-avatar-fallback {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.t-profile-name {
  font-size: 13px;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-profile-caret {
  display: flex;
  align-items: center;
  color: var(--t-text-muted);
}

.t-profile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--t-radius);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.8);
  overflow: hidden;
  z-index: 200;
  animation: tFadeIn 0.15s ease-out;
}

.t-profile-menu.active {
  display: block;
}

.t-profile-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--t-border);
}

.t-profile-details {
  min-width: 0;
  flex: 1;
}

.t-profile-full-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-profile-email {
  font-size: 11.5px;
  color: var(--t-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.t-profile-links {
  padding: 6px;
}

.t-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--t-radius-sm);
  color: var(--t-text-sec);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}

.t-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.t-menu-danger:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.t-menu-divider {
  height: 1px;
  background: var(--t-border);
  margin: 6px 0;
}

/* ==========================================================================
   CONSOLE LAYOUT & SIDEBAR
   ========================================================================== */
.t-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  flex: 1;
  min-height: calc(100vh - 64px);
}

.t-sidebar {
  background: var(--t-bg-sidebar);
  border-right: 1px solid var(--t-border);
  padding: 20px 12px;
}

.t-sidebar-group {
  margin-bottom: 24px;
}

.t-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t-text-muted);
  padding: 6px 12px;
  margin-bottom: 4px;
}

.t-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--t-radius-sm);
  color: var(--t-text-sec);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  position: relative;
}

.t-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-text-muted);
  transition: color 0.15s;
}

.t-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.t-nav-item:hover .t-nav-icon {
  color: #fff;
}

/* ACTIVE NAV ITEM (WHITE GLOW & ACCENT) */
.t-nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.t-nav-item.active .t-nav-icon {
  color: #ffffff;
}

.t-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: #ffffff;
}

.t-nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.t-nav-external {
  margin-left: auto;
  color: var(--t-text-muted);
  display: flex;
}

/* ==========================================================================
   MAIN CONTENT CONTAINER
   ========================================================================== */
.t-main {
  padding: 32px 40px;
  max-width: 1360px;
  width: 100%;
  box-sizing: border-box;
}

.t-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.t-page-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.t-page-subtitle {
  font-size: 13.5px;
  color: var(--t-text-sec);
  margin: 4px 0 0;
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.t-card {
  background: var(--t-bg-card);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 24px;
  transition: all 0.15s ease;
}

.t-card:hover {
  border-color: var(--t-border-hover);
}

.t-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.t-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Stat Cards */
.t-stat-card {
  background: var(--t-bg-card);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.t-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.t-stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-text-muted);
}

.t-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--t-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.t-stat-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.t-stat-sub {
  font-size: 12px;
  color: var(--t-text-muted);
  margin-top: 6px;
}

/* ==========================================================================
   DEPLOY WIZARD COMPONENTS (MONOCHROME SELECTION)
   ========================================================================== */
.t-deploy-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.t-section-card {
  background: var(--t-bg-card);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 24px;
  margin-bottom: 24px;
}

.t-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--t-border);
}

.t-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-section-step {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.t-section-hint {
  font-size: 12px;
  color: var(--t-text-muted);
}

/* OS Cards (PURE WHITE SELECTION) */
.t-os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.t-os-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: var(--t-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--t-border);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.t-os-card:hover {
  border-color: var(--t-border-hover);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.t-os-card.selected {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.t-os-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  color: #09090b;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-os-icon-wrap {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.t-os-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.t-os-desc {
  font-size: 11.5px;
  color: var(--t-text-muted);
}

/* Plan Cards (PURE WHITE SELECTION) */
.t-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.t-plan-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: var(--t-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--t-border);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.t-plan-card:hover:not(.out-of-stock) {
  border-color: var(--t-border-hover);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.t-plan-card.selected {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.t-plan-card.out-of-stock {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.t-plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.t-plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.t-plan-price {
  text-align: right;
}

.t-plan-price-hr {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.t-plan-price-sub {
  font-size: 11px;
  color: var(--t-text-muted);
}

.t-plan-specs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 12.5px;
  color: var(--t-text-sec);
}

.t-spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.t-plan-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
}

.t-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.t-stock-online {
  color: #10b981;
}

.t-stock-empty {
  color: #ef4444;
}

/* Range Slider (WHITE ACCENT) */
.t-slider-wrap {
  padding: 10px 0;
}

.t-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 17%, rgba(255,255,255,0.1) 17%, rgba(255,255,255,0.1) 100%);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: all 0.15s;
}

.t-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #09090b;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.1s;
}

.t-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Sticky Summary Card */
.t-summary-card {
  background: var(--t-bg-card);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  padding: 24px;
  position: sticky;
  top: 84px;
}

.t-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--t-border);
}

.t-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

.t-summary-label {
  color: var(--t-text-muted);
}

.t-summary-val {
  color: #fff;
  font-weight: 500;
}

.t-summary-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--t-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.t-total-price {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.t-total-sub {
  font-size: 12px;
  color: var(--t-text-muted);
  text-align: right;
  margin-top: 2px;
}

/* PURE WHITE PRIMARY SUBMIT BUTTON */
.t-btn-submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--t-radius-sm);
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #09090b !important;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: all 0.15s ease;
}

.t-btn-submit:hover:not(:disabled) {
  background: #e4e4e7;
  color: #09090b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.25);
}

.t-btn-submit svg {
  stroke: #09090b;
}

.t-btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Inputs & Form Elements */
.t-input {
  width: 100%;
  padding: 11px 16px;
  background: var(--t-bg-input);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: all 0.15s;
}

.t-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.t-select {
  width: 100%;
  padding: 11px 16px;
  background: var(--t-bg-input);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.15s;
}

.t-select:focus {
  border-color: #ffffff;
}

/* Tables */
.t-table-wrap {
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  background: var(--t-bg-card);
  overflow: hidden;
}

.t-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.t-table th {
  padding: 14px 18px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-text-muted);
  border-bottom: 1px solid var(--t-border);
  background: rgba(255,255,255,0.01);
}

.t-table td {
  padding: 16px 18px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--t-text);
  vertical-align: middle;
}

.t-table tr:last-child td {
  border-bottom: none;
}

.t-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Copy Snippet */
.t-copy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--t-border);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #e4e4e7;
  cursor: pointer;
  transition: all 0.15s;
}

.t-copy-pill:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Progress Fill Bar */
.t-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.t-progress-fill {
  height: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Animations */
@keyframes tPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .t-layout { grid-template-columns: 1fr; }
  .t-sidebar { display: none; }
  .t-deploy-grid { grid-template-columns: 1fr; }
  .t-summary-card { position: static; margin-top: 20px; }
  .t-grid-3, .t-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .t-main { padding: 20px 16px; }
  .t-grid-2, .t-grid-3, .t-grid-4 { grid-template-columns: 1fr; }
  .t-topbar { padding: 0 16px; }
  .t-breadcrumbs { display: none; }
}