/* ===================================================================
   WOW STRIP TABLE — pixel-perfect revival of the legacy dashboard UI
   =================================================================== */

:root {
  --wow-strip-bg: #050505;
  --wow-strip-bg1: rgba(255, 255, 255, 0.04);
  --wow-strip-header-border: #2b2b2b;
  --wow-strip-cell-divider: rgba(255, 255, 255, 0.22);
  --wow-strip-tone-fresh-start: #6bff7a;
  --wow-strip-tone-fresh-end: #16c44d;
  --wow-strip-tone-sunset-start: #ffb36d;
  --wow-strip-tone-sunset-end: #f36a2f;
  --wow-strip-cell-width: 72px;
}

.wow-strip-table {
  margin: 40px 0 8px;
  padding: 16px 16px;
  border-radius: 4px;
  background: var(--wow-strip-bg1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-family: 'Assistant', sans-serif;
  color: #fff;
  direction: rtl;
}

.wow-strip-table__header {
  margin-bottom: 20px;
  text-align: right;
}

.wow-strip-table__title {
  padding-right: 8px;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #a6a6a6;
}

.wow-strip-table__subtitle {
  margin: 6px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.wow-strip-row-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wow-strip-row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  direction: ltr;
  border-radius: 2px;
  border: 1px solid transparent;
  min-height: 56px;
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(90deg, var(--wow-strip-tone-fresh-start), var(--wow-strip-tone-fresh-end)) border-box;
  overflow: hidden;
}

.wow-strip-row[data-tone='fresh'],
.wow-strip-row--tone-fresh,
.wow-strip-row--tone-green {
  --wow-strip-tone-fresh-start: #6bff7a;
  --wow-strip-tone-fresh-end: #16c44d;
}

.wow-strip-row--tone-orange {
  --wow-strip-tone-fresh-start: var(--wow-strip-tone-sunset-start);
  --wow-strip-tone-fresh-end: var(--wow-strip-tone-sunset-end);
}

.wow-strip-row--tone-draft {
  --wow-strip-tone-fresh-start: #ffb36d;
  --wow-strip-tone-fresh-end: #f36a2f;
}

.wow-strip-row--head {
  border: 1px solid var(--wow-strip-header-border);
  background: #101010;
  min-height: 56px;
  margin-bottom: 12px;
}

.wow-strip-row__label {
  order: 2;
  flex: 1 1 auto;
  padding: 12px 20px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: right;
  direction: rtl;
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: #fcfcfc;
}

.wow-strip-row__label--head {
  font-size: 16px;
  font-weight: 600;
  color: rgba(252, 252, 252, 0.85);
}

.wow-strip-row__data {
  order: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: transparent;
  direction: ltr;
  margin-left: 0;
}

.wow-strip-row__cell {
  min-width: var(--wow-strip-cell-width);
  width: var(--wow-strip-cell-width);
  padding: 0 14px;
  border-left: 1px solid var(--wow-strip-cell-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(252, 252, 252, 0.92);
}

.wow-strip-row__cell--rtl {
  direction: rtl;
  text-align: right;
}

.wow-strip-row__cell--head {
  font-size: 14px;
  font-weight: 600;
  color: rgba(252, 252, 252, 0.68);
  text-align: center;
  justify-content: center;
}

.wow-strip-row__cell--action {
  width: var(--wow-strip-cell-width);
  border-left: 1px solid var(--wow-strip-cell-divider);
  justify-content: center;
}

.wow-strip-row__action-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fcfcfc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.2s ease;
  padding: 0;
}

.wow-strip-row__action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.wow-strip-row__action-btn:hover:not(:disabled) {
  color: #6bff7a;
  transform: translateY(-1px);
}

.wow-strip-row__action-btn svg {
  width: 22px;
  height: 22px;
}

.wow-strip-row__action-icon {
  display: block;
}

.wow-strip-table__empty {
  padding: 24px;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.wow-strip-table--light {
  --wow-strip-bg1: #ffffff;
  --wow-strip-header-border: #d0d0d0;
  --wow-strip-cell-divider: #d0d0d0;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
  color: #1f1f1f;
}

.wow-strip-table--light .wow-strip-table__title {
  color: #2d2d2d;
}

.wow-strip-table--light .wow-strip-table__subtitle {
  color: #5a5a5a;
}

.wow-strip-table--light .wow-strip-row {
  background: #ffffff;
  border: 1px solid #d0d0d0;
}

.wow-strip-table--light .wow-strip-row--head {
  background: #efefef;
  border-color: #c9c9c9;
}

.wow-strip-table--light .wow-strip-row__label {
  color: #1f1f1f;
}

.wow-strip-table--light .wow-strip-row__label--head {
  color: #4a4a4a;
}

.wow-strip-table--light .wow-strip-row__cell {
  color: #2a2a2a;
}

.wow-strip-table--light .wow-strip-row__cell--head {
  color: #5a5a5a;
}

.wow-strip-table--light .wow-strip-row__action-btn {
  color: #2a2a2a;
}

.wow-strip-table--light .wow-strip-row__action-btn:hover:not(:disabled) {
  color: #111111;
}

.wow-strip-table--light .wow-strip-table__empty {
  border-color: #d0d0d0;
  color: #6a6a6a;
}

.wow-offer-pages-table--offers_private_room_offers .wow-strip-table {
  --wow-strip-cell-width: 80px;
}

.wow-offer-pages-table--offers_private_room_offers .wow-strip-row__cell {
  font-size: 12px;
  font-weight: 700;
}

/* ===================================================================
   Responsive adjustments
   =================================================================== */
@media (max-width: 800px) {
  .wow-strip-table {
    padding: 24px 8px;
    margin: 32px 0 8px;
  }

  .wow-strip-table__title {
    font-size: 22px;
  }

  .wow-strip-table__subtitle {
    font-size: 14px;
  }

  .wow-strip-row__label {
    flex: 0 0 200px;
    font-size: 16px;
    padding: 10px 12px;
  }

  .wow-strip-row__label--head {
    font-size: 14px;
  }

  .wow-strip-row__cell {
    min-width: 45px;
    width: 60px !important;
    padding: 0 8px;
    font-size: 13px;
  }

  .wow-strip-row__cell--head {
    font-size: 12px;
  }

  .wow-strip-row__cell--action {
    width: 54px;
    min-width: 54px;
  }

  .wow-strip-row__action-btn {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .wow-strip-table {
    padding: 16px 8px;
    margin: 24px 0 8px;
  }

  .wow-strip-row__label {
    flex: 0 0 180px;
    font-size: 15px;
    padding: 8px 10px;
  }

  .wow-strip-row__cell {
    min-width: 42px;
    width: 42px !important;
    font-size: 12px;
  }

  .wow-strip-row__cell--head {
    font-size: 11px;
  }

  .wow-strip-row__cell--action {
    width: 48px;
    min-width: 48px;
  }

  .wow-strip-row__action-btn {
    width: 30px;
    height: 30px;
  }
}

/* =============================================================
   OFFER PAGES SECTION WRAPPER (CTA strips above the table)
   ============================================================= */
