/* ============================================================
   PROFILE MEASUREMENTS – WITH BOOTSTRAP ICONS
   Author: İsmail Hakkı Aşıkkutlu
   Namespace: tp-meas-*
   ============================================================ */

/* CARD CONTAINER */
.tp-meas-card {
  background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tp-meas-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/* HEADER */
.tp-meas-header {
  background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.tp-meas-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.tp-meas-title i {
  color: #d90404;
  font-size: 1.25rem;
}

/* BODY */
.tp-meas-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

/* TABLE STRUCTURE */
.tp-meas-table {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tp-meas-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  background: linear-gradient(180deg, #121212 0%, #1e1e1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: background 0.25s ease, border 0.25s ease;
}
.tp-meas-row:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.12);
}

/* LABELS */
.tp-meas-cell.tp-meas-label {
  font-weight: 600;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.tp-meas-cell.tp-meas-label i {
  color: #d90404;
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.tp-meas-row:hover .tp-meas-label i {
  transform: scale(1.15);
  color: #ff3d3d;
}

/* VALUE */
.tp-meas-cell.tp-meas-value {
  font-weight: 700;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 1rem;
}

/* UNITS & SEPARATORS */
.tp-meas-unit {
  color: #bbb;
  font-size: 0.9rem;
  margin-left: 2px;
}
.tp-meas-sep {
  color: #d90404;
  font-size: 0.85rem;
  margin: 0 0.25rem;
}

/* PLACEHOLDER */
.tp-meas-placeholder {
  color: #999;
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
}

.tp-meas-subtitle {
  font-size: .9rem;
  opacity: .8;
  margin-top: 2px;
}


/* FOCUS / ANIMATION */
.tp-meas-card:focus-within {
  box-shadow: 0 0 0 2px rgba(217, 4, 4, 0.45);
}
.tp-meas-card,
.tp-meas-row,
.tp-meas-cell,
.tp-meas-unit {
  transition: all 0.25s ease;
}
