/* V2 reference layer: action-first admin workspace and simplified customer journey. */

.admin-v2 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  color: var(--ink);
  background: #f5f6f6;
}

.admin-v2-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 30px 22px 24px;
  color: #fff;
  background: var(--navy-950);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-v2-brand {
  display: block;
  width: 126px;
}

.admin-v2-product {
  margin: 26px 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-v2-nav {
  display: grid;
  gap: 3px;
}

.admin-v2 .nav-item {
  min-height: 44px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 0;
  font-size: 14px;
}

.admin-v2 .nav-item:hover,
.admin-v2 .nav-item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--gold-500);
}

.admin-v2-presentation {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-v2-presentation summary {
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.admin-v2-presentation a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.admin-v2-workspace {
  min-width: 0;
}

.admin-v2-main {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 38px 40px 64px;
}

.admin-v2-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-v2-page-header h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1.16;
}

.admin-v2-page-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-v2-status {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.admin-v2-status div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 142px;
  padding: 13px 24px 13px 0;
}

.admin-v2-status div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line-soft);
}

.admin-v2-status strong {
  color: var(--navy-950);
  font-size: 22px;
}

.admin-v2-status span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-v2-queue {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.admin-v2-queue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.admin-v2-queue-toolbar > strong {
  flex: 0 0 auto;
  color: var(--navy-950);
  font-size: 15px;
}

.admin-v2-filter {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.admin-v2-filter .segment {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  border-radius: 6px;
  font-size: 12px;
}

.admin-v2-filter .segment.is-active {
  color: var(--navy-950);
  background: var(--gold-100);
  border-color: rgba(220, 166, 58, 0.45);
}

.admin-v2-table-wrap {
  overflow-x: auto;
}

.admin-v2-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.admin-v2-table th,
.admin-v2-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.admin-v2-table th {
  color: var(--muted);
  background: #fafafa;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-v2-table tbody tr {
  cursor: pointer;
}

.admin-v2-table tbody tr:hover,
.admin-v2-table tbody tr.is-selected {
  background: #fffaf0;
}

.admin-v2-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-v2-cell-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-v2-cell-main strong {
  color: var(--navy-950);
  font-size: 13px;
}

.admin-v2-cell-main span {
  color: var(--muted);
  font-size: 12px;
}

.admin-v2-mobile-list,
.admin-v2-mobile-bar {
  display: none;
}

/* Customer V2 */

.customer-v2 {
  overflow-x: clip;
  color: var(--ink);
  background: #fffdf8;
}

.customer-v2 .customer-header {
  position: relative;
  z-index: 5;
  width: min(100%, 1120px);
  min-height: 68px;
  margin: 0 auto;
  padding: 14px 24px;
  background: #fffdf8;
  border-bottom: 0;
  backdrop-filter: none;
}

.customer-v2 .customer-brand {
  width: 132px;
}

.customer-v2 .customer-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0 88px;
}

.customer-v2-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 560px;
  margin: 0 0 64px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.customer-v2-hero::before,
.customer-v2-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.customer-v2-hero::before {
  z-index: -2;
  background-image: url("./assets/lume-customer-journey-visuals.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  background-position: left top;
}

.customer-v2-hero.is-event::before {
  background-position: right top;
}

.customer-v2-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 19, 30, 0.95) 0%, rgba(4, 19, 30, 0.72) 48%, rgba(4, 19, 30, 0.18) 100%);
}

.customer-v2-hero-content {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 64px 24px;
}

.customer-v2-hero-content h1 {
  max-width: 650px;
  margin: 0 0 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.04;
}

.customer-v2-hero .eyebrow {
  color: var(--gold-400);
}

.customer-v2-hero-lead {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.customer-v2-starting-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.customer-v2-starting-price span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-v2-starting-price strong {
  color: #fff;
  font-size: 30px;
}

.customer-v2-current-package {
  margin: 5px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.customer-v2-section,
.customer-v2 .customer-section {
  width: min(100%, 1120px);
  margin: 0 auto 64px;
  padding: 0 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.customer-v2-section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.customer-v2-section-heading h2,
.customer-v2 .section-title-row h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
}

.customer-v2-section-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.customer-v2-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.customer-v2-highlights li {
  display: grid;
  gap: 7px;
  padding: 24px 28px;
}

.customer-v2-highlights li:first-child {
  padding-left: 0;
}

.customer-v2-highlights li + li {
  border-left: 1px solid var(--line);
}

.customer-v2-highlights strong {
  color: var(--navy-950);
  font-size: 16px;
}

.customer-v2-highlights span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.customer-v2 .compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.customer-v2 .package-compare-table {
  min-width: 760px;
  background: #fff;
}

.customer-v2 .package-compare-table th,
.customer-v2 .package-compare-table td {
  padding: 15px;
  border-color: var(--line-soft);
  font-size: 13px;
  line-height: 1.45;
}

.customer-v2 .package-compare-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 126px;
  background: #f7f4ed;
}

.customer-v2 .package-compare-table td.is-active {
  background: var(--gold-50);
}

.customer-v2 .package-compare-table td strong {
  display: block;
  margin-bottom: 6px;
}

.customer-v2 .package-compare-table a {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.customer-v2 .package-mobile-compare {
  display: none;
}

.customer-v2-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.customer-v2-package-price {
  color: var(--navy-950);
  font-size: 22px;
}

.customer-v2-package-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.customer-v2-package-detail > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.customer-v2-package-detail h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 16px;
}

.customer-v2 .customer-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
}

.customer-v2 .customer-checks li {
  font-size: 14px;
}

.customer-v2-menu-groups {
  border-top: 1px solid var(--line);
}

.customer-v2 .menu-choice-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.customer-v2 .menu-choice-card summary {
  min-height: 64px;
  padding: 0 4px;
}

.customer-v2 .menu-choice-card[open] summary {
  margin: 0;
  padding: 0 4px;
  border-bottom: 1px solid var(--line-soft);
}

.customer-v2 .menu-choice-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 8px 0 14px;
}

.customer-v2 .menu-item-card {
  min-height: 66px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
}

.customer-v2 .menu-item-card img {
  width: 48px;
  height: 48px;
}

.customer-v2-notes details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customer-v2-notes summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}

.customer-v2-notes details[open] {
  padding-bottom: 22px;
}

.customer-v2-notes p {
  color: var(--muted);
  line-height: 1.6;
}

.customer-v2 .faq-section .section-title-row {
  display: block;
  margin-bottom: 18px;
}

.customer-v2 .faq-section .section-title-row > span {
  display: none;
}

.customer-v2 .faq-grid {
  display: block;
  border-top: 1px solid var(--line);
}

.customer-v2 .faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.customer-v2 .faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.customer-v2 .faq-item p {
  padding: 0 4px 20px;
}

.customer-v2-form-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px max(24px, calc((100vw - 1120px) / 2 + 24px));
  background: #f2eee5;
}

.customer-v2-form-wrap {
  max-width: 820px;
}

.customer-v2 .customer-v2-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.customer-v2 .customer-v2-form input:not([type="checkbox"]):not([type="radio"]),
.customer-v2 .customer-v2-form select {
  display: block;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.2;
}

.customer-v2 .customer-v2-form input:not([type="checkbox"]):not([type="radio"]) {
  appearance: none;
  -webkit-appearance: none;
}

.customer-v2 .customer-v2-form select {
  appearance: auto;
  -webkit-appearance: menulist;
}

.customer-v2 .customer-v2-form input::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
}

.customer-v2 .customer-v2-form textarea {
  display: block;
  width: 100%;
  min-height: 112px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.45;
  resize: vertical;
}

.customer-v2 .customer-v2-form .full-field,
.customer-v2 .customer-v2-form .form-note,
.customer-v2 .customer-v2-form .primary-button {
  grid-column: 1 / -1;
}

.customer-v2 .customer-v2-form .form-note {
  padding: 14px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.customer-v2 .customer-v2-form .primary-button {
  max-width: 260px;
}

.customer-v2 .customer-hero.compact,
.customer-v2 .customer-hero.summary {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .admin-v2 {
    grid-template-columns: 1fr;
  }

  .admin-v2-sidebar {
    display: none;
  }

  .admin-v2-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
  }

  .admin-v2-mobile-bar > a {
    display: block;
    width: 104px;
  }

  .admin-v2-mobile-menu {
    position: relative;
  }

  .admin-v2-mobile-menu summary {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--navy-950);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
  }

  .admin-v2-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .admin-v2-mobile-menu nav {
    position: absolute;
    top: 46px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 8px;
    background: var(--navy-950);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
  }

  .admin-v2-main {
    padding: 26px 20px 48px;
  }

  .customer-v2-hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 760px) {
  .admin-v2-page-header {
    align-items: flex-start;
  }

  .admin-v2-status {
    overflow: hidden;
  }

  .admin-v2-status div {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding-right: 10px;
  }

  .admin-v2-queue-toolbar {
    display: grid;
    gap: 10px;
  }

  .admin-v2-filter {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    scrollbar-width: none;
  }

  .admin-v2-filter::-webkit-scrollbar {
    display: none;
  }

  .admin-v2-table-wrap {
    display: none;
  }

  .admin-v2-mobile-list {
    display: block;
  }

  .admin-v2-request-row {
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 16px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    text-align: left;
    cursor: pointer;
  }

  .admin-v2-request-row:last-child {
    border-bottom: 0;
  }

  .admin-v2-request-top,
  .admin-v2-request-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .admin-v2-request-top > strong,
  .admin-v2-request-title {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 800;
  }

  .admin-v2-request-meta,
  .admin-v2-request-bottom > span:last-child {
    color: var(--muted);
    font-size: 12px;
  }

  .customer-v2 .customer-header {
    min-height: 60px;
    padding: 11px 18px;
  }

  .customer-v2 .customer-brand {
    width: 112px;
  }

  .customer-v2 .customer-page {
    padding: 0 0 64px;
  }

  .customer-v2-hero {
    min-height: 570px;
    margin-bottom: 44px;
  }

  .customer-v2-hero::before {
    background-size: 240% 200%;
    background-position: 18% top;
  }

  .customer-v2-hero.is-event::before {
    background-position: 82% top;
  }

  .customer-v2-hero::after {
    background: linear-gradient(180deg, rgba(4, 19, 30, 0.12) 0%, rgba(4, 19, 30, 0.7) 48%, rgba(4, 19, 30, 0.96) 100%);
  }

  .customer-v2-hero-content {
    padding: 36px 18px;
  }

  .customer-v2-hero-content h1 {
    font-size: 38px;
  }

  .customer-v2-hero-lead {
    font-size: 17px;
  }

  .customer-v2-starting-price strong {
    font-size: 25px;
  }

  .customer-v2-section,
  .customer-v2 .customer-section {
    margin-bottom: 48px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .customer-v2-section-heading h2,
  .customer-v2 .section-title-row h2 {
    font-size: 27px;
  }

  .customer-v2-highlights {
    grid-template-columns: 1fr;
  }

  .customer-v2-highlights li,
  .customer-v2-highlights li:first-child {
    padding: 18px 0;
  }

  .customer-v2-highlights li + li {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .customer-v2 .compare-table-wrap {
    display: none;
  }

  .customer-v2 .package-mobile-compare {
    display: grid;
    border-top: 1px solid var(--line);
  }

  .customer-v2 .package-mobile-option {
    display: grid;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .customer-v2 .package-mobile-option.is-active {
    margin: 0 -8px;
    padding-right: 8px;
    padding-left: 12px;
    background: var(--gold-50);
    border-left: 3px solid var(--gold-500);
  }

  .customer-v2 .package-mobile-option-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
  }

  .customer-v2 .package-mobile-option-heading span {
    display: block;
    margin-bottom: 5px;
    color: #8a6112;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .customer-v2 .package-mobile-option-heading h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 18px;
    line-height: 1.28;
  }

  .customer-v2 .package-mobile-option-heading > strong {
    color: var(--navy-950);
    font-size: 15px;
    line-height: 1.4;
    text-align: right;
  }

  .customer-v2 .package-mobile-option dl {
    display: grid;
    gap: 10px;
    margin: 0;
  }

  .customer-v2 .package-mobile-option dl > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .customer-v2 .package-mobile-option dt,
  .customer-v2 .package-mobile-option dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .customer-v2 .package-mobile-option dt {
    color: var(--navy-950);
    font-weight: 800;
  }

  .customer-v2 .package-mobile-option dd {
    color: var(--muted);
  }

  .customer-v2 .package-mobile-option > a,
  .customer-v2 .package-mobile-current {
    width: fit-content;
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 900;
  }

  .customer-v2 .package-mobile-current {
    color: #8a6112;
  }

  .customer-v2-heading-row {
    display: grid;
    align-items: start;
    gap: 10px;
  }

  .customer-v2-package-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .customer-v2 .customer-checks,
  .customer-v2 .menu-choice-card ul,
  .customer-v2 .customer-v2-form {
    grid-template-columns: 1fr;
  }

  .customer-v2 .customer-v2-form .full-field,
  .customer-v2 .customer-v2-form .form-note,
  .customer-v2 .customer-v2-form .primary-button {
    grid-column: auto;
  }

  .customer-v2 .customer-v2-form .primary-button {
    max-width: none;
  }

  .customer-v2-form-section {
    padding-right: 18px;
    padding-left: 18px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .admin-v2-main {
    padding: 22px 12px 40px;
  }

  .admin-v2-page-header {
    display: grid;
    gap: 14px;
  }

  .admin-v2-page-header h1 {
    font-size: 26px;
  }

  .admin-v2-page-header .primary-button,
  .admin-v2-page-header .secondary-button {
    width: 100%;
  }

  .admin-v2-status div {
    padding-right: 16px;
  }

  .admin-v2-status div + div {
    padding-left: 16px;
  }

  .admin-v2-queue {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .customer-v2-hero {
    min-height: 540px;
  }

  .customer-v2-hero-content h1 {
    font-size: 35px;
  }

  .customer-v2-hero-lead {
    max-width: 340px;
    font-size: 16px;
  }

}
