.v4-expand-strip {
  --expand-strip-cell-width: 120px;
  --expand-strip-row-fill: rgba(12, 12, 12, 0.94);
  --expand-strip-head-fill: rgba(20, 20, 20, 0.98);
  --expand-strip-border: rgba(255, 255, 255, 0.22);
  --expand-strip-divider: rgba(255, 255, 255, 0.2);
  --expand-strip-text: #f6f4ef;
  --expand-strip-text-muted: rgba(255, 255, 255, 0.62);
  --expand-strip-tone-start: #ffb36d;
  --expand-strip-tone-end: #f36a2f;
}

.wow-account-theme-light .v4-expand-strip {
  --expand-strip-row-fill: rgba(255, 255, 255, 0.98);
  --expand-strip-head-fill: rgba(255, 255, 255, 0.96);
  --expand-strip-border: rgba(243, 106, 47, 0.5);
  --expand-strip-divider: rgba(28, 28, 28, 0.14);
  --expand-strip-text: #1b1b1b;
  --expand-strip-text-muted: rgba(27, 27, 27, 0.66);
}

.v4-expand-strip__row-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v4-expand-strip__row {
  border-radius: 2px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--expand-strip-row-fill), var(--expand-strip-row-fill)) padding-box,
    linear-gradient(90deg, var(--expand-strip-tone-start), var(--expand-strip-tone-end)) border-box;
  overflow: hidden;
}

.v4-expand-strip__row-head,
.v4-expand-strip__row--head {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  direction: ltr;
  min-height: 56px;
}

.v4-expand-strip__row--head {
  border: 1px solid var(--expand-strip-border);
  background: var(--expand-strip-head-fill);
  margin-bottom: 12px;
}

.v4-expand-strip__row--tone-orange,
.v4-expand-strip__row--tone-draft {
  --expand-strip-tone-start: #ffb36d;
  --expand-strip-tone-end: #f36a2f;
}

.v4-expand-strip__row--tone-fresh {
  --expand-strip-tone-start: var(--fresh-1);
  --expand-strip-tone-end: var(--fresh-2);
}

.v4-expand-strip__label {
  order: 2;
  flex: 1 1 auto;
  padding: 12px 20px 12px 18px;
  border-left: 1px solid var(--expand-strip-divider);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: rtl;
  text-align: right;
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--expand-strip-text);
}

.v4-expand-strip__label--head {
  font-size: 14px;
  font-weight: 600;
  color: var(--expand-strip-text-muted);
}

.v4-expand-strip__data {
  order: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  direction: ltr;
}

.v4-expand-strip__cell {
  min-width: var(--expand-strip-cell-width);
  width: var(--expand-strip-cell-width);
  padding: 0 14px;
  border-left: 1px solid var(--expand-strip-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--expand-strip-text);
  opacity: 0.92;
}

.v4-expand-strip__cell--head {
  font-size: 13px;
  font-weight: 600;
  color: var(--expand-strip-text-muted);
}

.v4-expand-strip__cell--action {
  width: var(--expand-strip-cell-width);
  min-width: var(--expand-strip-cell-width);
  justify-content: center;
}

.v4-expand-strip__cell--action.v4-expand-strip__cell--action-multi {
  gap: 16px;
}

.v4-expand-strip__cell--action.v4-expand-strip__cell--action-multi .v4-expand-strip__action-btn + .v4-expand-strip__action-btn {
  position: relative;
}

.v4-expand-strip__cell--action.v4-expand-strip__cell--action-multi .v4-expand-strip__action-btn + .v4-expand-strip__action-btn::before {
  content: "";
  position: absolute;
  right: calc(100% + 8px);
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--expand-strip-divider);
  opacity: 0.95;
}

.v4-expand-strip__action-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--expand-strip-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.2s ease;
  padding: 0;
}

.v4-expand-strip__action-btn:hover:not(:disabled) {
  color: var(--expand-strip-tone-end);
  transform: translateY(-1px);
}

.v4-expand-strip__action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.v4-expand-strip__action-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.v4-expand-strip__expand-divider {
  height: 1px;
  margin: 0 18px;
  background: rgba(255,255,255,0.22);
}

.wow-account-theme-light .v4-expand-strip__expand-divider {
  background: rgba(28, 28, 28, 0.14);
}

.v4-expand-strip__expand-body {
  padding: 18px 18px 16px;
}

.v4-expand-strip__empty {
  min-height: 56px;
  padding: 18px 14px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--expand-strip-row-fill), var(--expand-strip-row-fill)) padding-box,
    linear-gradient(90deg, var(--expand-strip-tone-start), var(--expand-strip-tone-end)) border-box;
  color: var(--expand-strip-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
