.kawa-club {
  background: var(--color-bg-second);
  padding: 40px 0 100px;
}
.kawa-club .heading {
  text-align: center;
  color: var(--color-bg-headerfooter);
  margin: 40px 0 40px 0;
}

.separator-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: translateY(-50%);
  z-index: 0;
}

.elipse {
  width: 80px;
  height: 80px;
  background-color: var(--color-bg-second);
  border: 2px solid var(--color-accent);
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 1;
}

.elipse img {
  width: 42px;
  height: auto;
}

.kc-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 40px 0 16px 0;
}
.kc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kc-card {
  background: var(--color-bg);
  border: 1px solid #e0e2e9;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 8px;
}
.kc-card .label {
  font-size: 0.9rem;
  color: rgba(36, 12, 3, 0.75);
}
.kc-card .value {
  font-weight: 800;
  font-size: 1.25rem;
}
.kc-card .meta {
  font-size: 0.95rem;
  color: rgba(36, 12, 3, 0.75);
}

.kc-id .value {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.barcode {
  width: 220px;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
.barcode img {
  display: block;
  width: 100%;
  height: auto;
}
.kc-code .code-text {
  text-align: center;
  font-size: 0.95rem;
}

.kc-points .points {
  font-size: 2rem;
  font-weight: 800;
}
.progress {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  background: var(--color-accent);
  border-radius: 10px;
}

.kc-shortcut {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.kc-shortcut:hover {
  transform: translateY(-2px);
}

.kc-history-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.table-wrap {
  overflow-x: auto;
}
.kc-table {
  width: 100%;
  border-collapse: collapse;
}
.kc-table th,
.kc-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
}
.kc-table th {
  text-align: left;
  font-weight: 800;
}
.kc-table .right {
  text-align: right;
}
.kc-table .plus {
  color: #0a7f27;
  font-weight: 700;
}
.kc-table .minus {
  color: #b30000;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .kc-header {
    grid-template-columns: auto;
  }
  .kc-grid {
    grid-template-columns: auto;
  }
}
