@font-face {
  font-family: 'RobotoCustom';
  src: url('media/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RobotoCustom';
  src: url('media/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b1220;
  --card: rgba(255, 255, 255, .08);
  --card2: rgba(255, 255, 255, .06);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 18px 60px rgba(0, 0, 0, .35);
  --r: 22px;
  --bg2: #24306e;
  --bg1: #24306e;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #e11d48;
  --brand2: #fb7185;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
  --shadow2: 0 10px 30px rgba(2, 6, 23, 0.18);
}

html,
body {
  font-family: 'RobotoCustom', sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.intro-screen {
  background-color: #24306e;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.logomm {
  max-width: 250px;
}

.logomm:hover {
  cursor: pointer;
}

.intro-screen-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 8px;
  font-size: 1.5rem;
  max-width: 50%;
}

.intro-screen-text {
  color: white;
}

.intro-screen-starttext {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.intro-screen img,
.intro-screen-text h1,
.intro-screen-starttext,
.intro-img {
  opacity: 0;
}

.intro-img {
  width: 35%;
}

.intro-screen img {
  animation: fadeIn 2s ease-out forwards;
}

.intro-img {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.intro-screen-text h1 {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.intro-screen-starttext {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.main-dashboard {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 80vh;
}

.main-dashboard-toolbar {
  background-color: #24306e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.4rem;
}

.main-dashboard-button_wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 75px;
}

.main-dasboard-welcome {
  max-width: 275px;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.notification_counter {
  font-size: 1.4rem;
  color: white;
  border-radius: 12px;
  border: 1px solid white;
  min-width: 75px;
  padding: 5px;
  margin-right: 5px;
  text-align: right;
}

.notification_counter::after {
  content: "🔔"
}

.notification_counter:hover {
  cursor: pointer;
  background-color: red;
}


.option_section {
  width: 100%;
  min-height: 80vh;
}

.option_section h1 {
  font-size: 1.4rem;
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

.option_section_products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-height: 100%;
}

.product-card {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-family: Arial, sans-serif;
}

.product-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #333;
  font-weight: bold;
}

.product-attr {
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  color: black;
  text-align: left;
}

.product-attr:last-child {
  border-bottom: none;
}

.no-products {
  padding: 15px;
  background: #ffe0e0;
  border: 1px solid #ffb0b0;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  color: #a00;
}

.product-btn-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
}

.product-button {
  border: 1px solid red;
  background-color: red;
  color: white;
  text-align: center;
  width: 40%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem
}

.option_secton_contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-option {
  border: 1px solid red;
  background-color: red;
  color: white;
  text-align: center;
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin: 8px auto;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.1s ease,
    box-shadow 0.25s ease;
}

/* Hover */
.contact-option:hover {
  background-color: #ff3b3b;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Active / click */
.contact-option:active {
  background-color: #cc0000;
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.2);
}

.contact-option.browsePast {
  margin-top: 18px;
  background-color: #444;
  border-color: #444;
}

.contact-option.browsePast:hover {
  background-color: #555;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




.wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  /* 👈 centers container */
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

@media (max-width: 860px) {
  .wrap {
    grid-template-columns: 1fr;
  }
}

.hero {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(500px 220px at 15% 15%, rgba(56, 189, 248, .22), transparent 55%),
    radial-gradient(460px 260px at 70% 25%, rgba(168, 85, 247, .20), transparent 60%),
    radial-gradient(520px 260px at 50% 80%, rgba(34, 197, 94, .16), transparent 60%);
  filter: blur(12px);
  z-index: 0;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .22);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .2px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

h1 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 58ch;
}

.ctaRow {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(5, 10, 20, .95);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: transform .12s ease, filter .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0px);
  filter: brightness(.98);
}

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.mini {
  font-size: 13px;
  color: var(--muted);
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel h2 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .88);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .16);
}

.num {
  min-width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: 13px;
}

.step b {
  display: block;
  margin: 0 0 2px;
  font-size: 14px;
  letter-spacing: .1px;
}

.step span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.notice {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.45;
  background: rgba(0, 0, 0, .10);
}

.hidden {
  display: none !important;
}

/* Simple top toast for small screens */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 16, 30, .86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.toast strong {
  font-size: 14px;
}

.toast span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.toast .actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.toast .x {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.intro-subtitle {
  margin: 10px 0 0;
  opacity: .85;
  font-size: 1rem;
  text-align: center;
}

.intro-install {
  margin-top: 18px;
  width: min(520px, 92%);
  color: white;
}

.intro-install-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
}

.intro-install-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.intro-install-btn:active {
  transform: translateY(0px);
  filter: brightness(.98);
}

.intro-install-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.intro-install-hint {
  margin: 10px 2px 0;
  font-size: .9rem;
  opacity: .75;
}

.intro-install-steps {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.intro-step {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .12);
}

.intro-step strong {
  display: block;
  margin-bottom: 6px;
}

.intro-step ol {
  margin: 0;
  padding-left: 18px;
  opacity: .9;
}

.intro-step li {
  margin: 4px 0;
}

.intro-ios-note {
  display: block;
  margin-top: 8px;
  opacity: .75;
}

.reg-section {
  background-color: #24306e;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.reg-card {
  width: min(560px, 100%);
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.reg-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.02em;
}

.reg-desc {
  margin: 0 0 18px;
  line-height: 1.5;
  opacity: .92;
}

.reg-form {
  display: grid;
  gap: 10px;
}

.reg-label {
  font-weight: 700;
  font-size: 14px;
  opacity: .95;
}

.reg-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.reg-input {
  flex: 1;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(0, 0, 0, .18);
  color: #fff;
  outline: none;
  font-size: 16px;
}

.reg-input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.reg-input:focus {
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .12);
}

.reg-submit {
  padding: 14px 16px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  color: #24306e;
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}

.reg-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.reg-submit:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.reg-help {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .78);
}

.reg-status {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  min-height: 20px;
}

.reg-status.ok {
  color: green;
}

.reg-status.err {
  color: red;
}

.option_section_service {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

h2 {
  text-align: center;
  color: white;
  font-size: 1.4rem;
  margin: 8px 0 14px;
}

@media (max-width:520px) {
  .reg-input-row {
    flex-direction: column;
  }

  .reg-submit {
    width: 100%;
  }
}

.product-item {
  margin: 14px 0;
  width: 100%;
}

.trailer-card {
  min-width: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.pretend {
  min-height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trailer-card:hover {
  box-shadow: 0 12px 34px rgba(15, 23, 42, .10);
  transform: translateY(-1px);
}

.trailer-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.trailer-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.trailer-card__subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(15, 23, 42, .65);
}

.trailer-card__badge {
  background: #0f172a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .2px;
}

.trailer-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.trailer-card__field .label {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  margin-bottom: 4px;
}

.trailer-card__field .value {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.trailer-card__grid_long {
  display: grid;
  grid-template-columns: 1;
  gap: 12px;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.trailer-card__field_long {
  width: 100%;
}

.trailer-card__field_long .label {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  margin-bottom: 4px;
}

.trailer-card__field_long .value {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.trailer-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}

.btn:hover {
  background: rgba(15, 23, 42, .04);
  border-color: rgba(15, 23, 42, .22);
}

.btn:active {
  transform: translateY(1px);
}

.btn-right {
  margin-left: auto;
}

.muted {
  color: rgba(15, 23, 42, .55);
  font-size: 12px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.trailer-card__service {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .2s ease;
  margin-top: 0;
}

.trailer-card.is-expanded .trailer-card__service {
  max-height: 1200px;
  /* big enough for content */
  opacity: 1;
  margin-top: 14px;
}

.service-item {
  background: rgba(15, 23, 42, .02);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.service-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.service-item__index {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pill {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.service-item__desc {
  font-size: 12px;
  color: rgba(15, 23, 42, .78);
  line-height: 1.45;
  white-space: normal;
}

.float-right {
  float: right;
}

/* Container */
.warranty-timeline {
  width: 100%;
  max-width: 100%;
}

/* Track */
.warranty-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 12px;
  padding-top: 8px;
}

/* Base line */
.warranty-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 4px;
  border-radius: 999px;
  background: #e6e8ee;
}

/* Progress fill */
.warranty-fill {
  position: absolute;
  left: 0;
  top: 18px;
  height: 4px;
  border-radius: 999px;
  background: #29a36a;
  width: 25%;
  transition: width 220ms ease;
}

/* Point */
.warranty-point {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

/* Dot */
.warranty-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  border: 2px solid #c7ccd6;
  background: #fff;
  color: transparent;
  /* shows ✓ only when done */
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Text */
.warranty-meta {
  margin-top: 10px;
  line-height: 1.2;
}

.warranty-label {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  margin-bottom: 4px;
  color: #2b2f38;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.warranty-date {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}


/* States */
.warranty-point.done .warranty-dot {
  border-color: #29a36a;
  background: #29a36a;
  color: #fff;
}

.warranty-point.todo .warranty-dot {
  border-color: #c7ccd6;
  background: #fff;
}

.warranty-point.overdue .warranty-dot {
  border-color: #d24b4b;
  background: #fff;
  color: transparent;
}

/* Legend pill */
.warranty-legend {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.warranty-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e6e8ee;
  background: #fff;
}

.warranty-pill.ok {
  border-color: rgba(46, 204, 113, 0.5);
  color: #1e8449;
  margin-top: 10px;
}

.warranty-pill.warn {
  border-color: rgba(231, 76, 60, 0.55);
  color: #922b21;
  margin-top: 10px;
}

.warranty-pill.expired {
  border-color: rgba(243, 156, 18, 0.6);
  color: #9c640c;
  margin-top: 10px;
}

.service-item__date {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  /* row gap / column gap */
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
}

/* Every label */
.service-item__date .label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.60);
  align-self: center;
}

/* Every value */
.service-item__date .value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  font-variant-numeric: tabular-nums;
  text-align: right;
  align-self: center;
}

/* Optional: subtle separation between rows */
.service-item__date .label:not(:first-child),
.service-item__date .value:not(:nth-child(2)) {
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bookings-booking-wrapper {
  width: 100%;
}

/* Card */
.booking-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 16px;
  margin: 12px 0;
  overflow: hidden;
}

.booking-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-card__titlewrap {
  min-width: 0;
}

.booking-card__title {
  margin: 0 0 6px 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

.booking-card__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.75;
  width: 100%;
  margin-bottom: 6px;
}

.booking-card__meta-item {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  min-width: 0;
}

.booking-card__meta-label {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 600;
}

.booking-card__meta-value {
  color: rgba(15, 23, 42, 0.85);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.booking-card__meta-sep {
  color: rgba(15, 23, 42, 0.35);
}

/* Status pill */
.status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}

.status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

/* Variants */
.status-pill.is-waiting {
  color: #92400e;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.25);
}

.status-pill.is-accepted {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.25);
}

.status-pill.is-done {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.25);
}

/* Body */
.booking-card__body {
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.booking-info {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.booking-kv {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
}



.booking-kv__label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
  margin-bottom: 4px;
}

.booking-kv__value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.88);
}

/* Responsive */
@media (max-width: 820px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-card__meta-value {
    max-width: 220px;
  }
}

.bookService-form {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 16px;
  margin: 12px 0;
  overflow: hidden;
}

#bookServiceTyph2 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.bookService-products {
  height: auto;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  border-radius: 16px;
  padding: 12px;
}


.bookService-product {
  flex: 0 0 auto;
  width: 220px;
  cursor: pointer;
  position: relative;
}

.bookService-product-card {
  height: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bookService-product-card p {
  font-size: 11px;
  color: rgba(15, 23, 42, .55);
  margin-bottom: 4px;
}

.bookService-product-order {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.bookService-product-type {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.bookService-product-vin {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.bookService-product-service-count {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.bookService-product.active {
  transform: scale(1.05);
  z-index: 2;
}

.bookService-product.active::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  /* match card radius */
  border: 2px solid #6fcf3f;
  /* stronger green */
  pointer-events: none;
}

h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
}

.bookService-details {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 16px;
  margin: 12px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  color: #222;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #58ac32;
  box-shadow: 0 0 0 3px rgba(88, 172, 50, 0.15);
}

.bookService-buttonWrapper {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}

.input-error {
  outline: 2px solid #e53935 !important;
  outline-offset: 2px;
  animation: shake 0.25s ease;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }

  75% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ----- Theme tokens ----- */


/* ----- Page/container ----- */
.main-dashboard {
  min-height: 100vh;
  padding: 8px;
  color: var(--text);

  /* dark stylish background with subtle glow */
  background:
    radial-gradient(900px 600px at 25% -10%, rgba(225, 29, 72, 0.28), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(99, 102, 241, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}

/* ----- Top toolbar ----- */
.main-dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px;
  border-radius: calc(var(--radius) + 2px);

  /* glassy dark bar */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.25);

  /* entrance animation */
  animation: slideDown 520ms cubic-bezier(.2, .8, .2, 1) both;
  margin-bottom: 15px;
}

.logomm {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

/* Notification pill (top right) */
.notification_counter {
  margin: 0;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);

  position: relative;
  overflow: hidden;
}

.notification_counter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.7;
}

/* ----- Button wrapper / layout ----- */
.main-dashboard-button_wrapper {
  max-width: 520px;
  margin: 26px auto 0;
  display: grid;
  gap: 25px;
}

/* Welcome text */
.main-dasboard-welcome {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  padding: 18px 2px 6px;
  animation: fadeUp 520ms cubic-bezier(.2, .8, .2, 1) 80ms both;
}

/* ----- White “card buttons” ----- */
.main-dashboard-button {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 74px;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(8px);
  opacity: 0;
  animation: cardIn 560ms cubic-bezier(.2, .8, .2, 1) both;
}

.main-dashboard-button-small {
  background: red;
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 44px;
  min-width: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(8px);
  opacity: 0;
  animation: cardIn 560ms cubic-bezier(.2, .8, .2, 1) both;
}

#showProductsBtn {
  animation-delay: 120ms;
}

#showServiceBtn {
  animation-delay: 190ms;
}

#showContactBtn {
  animation-delay: 260ms;
}

#logout {
  animation-delay: 330ms;
}

/* transitions */
.main-dashboard-button {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

/* ----- Animations ----- */
@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cardIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }

  60% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* ----- Reduce motion accessibility ----- */
@media (prefers-reduced-motion: reduce) {

  .main-dashboard-toolbar,
  .main-dasboard-welcome,
  .main-dashboard-button,
  .notification_counter::after {
    animation: none !important;
    transition: none !important;
  }
}

.main-dashboard-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.16);
  transform: scale(0);
  animation: ripple 520ms ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

/* CONTACT SECTION */
.option_section#showContact {
  animation: pageIn 420ms cubic-bezier(.2, .8, .2, 1) both;
}

h1 {
  margin: 8px 0 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* Wrapper */
.option_secton_contact {
  max-width: 560px;
  margin: 0 auto;
}

/* MESSAGES CONTAINER */
.messages {
  width: 100%;
  height: min(60vh, 560px);
  overflow-y: auto;
  padding: 16px;
  gap: 12px;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  scroll-behavior: smooth;
}

/* MESSAGE BUBBLES */
.message {
  min-width: 35%;
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.message .meta {
  font-size: 11px;
  color: #64748b;
  line-height: 1;
}

.message .text {
  font-size: 24px;
  line-height: 1.25;
  word-break: break-word;
  color: black;
}

.message small {
  font-size: 11px;
  color: #64748b;
}

.message p {
  margin: 0;
  font-size: 15px;
}

.message.me {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(88, 172, 50, 0.22);
  box-shadow: 0 12px 30px rgba(88, 172, 50, 0.10), 0 10px 26px rgba(2, 6, 23, 0.18);
}

.message.them {
  align-self: flex-start;
  border: 1px solid rgba(225, 29, 72, 0.18);
}

/* little “tail” (subtle) */
.message.me::after,
.message.them::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 10px;
  background: inherit;
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.95;
}

.message {
  position: relative;
}

.message.me::after {
  right: -4px;
}

.message.them::after {
  left: -4px;
}

.chat-empty {
  margin: auto;
  padding: 40px 30px;
  max-width: 420px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-empty__icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.chat-empty h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.chat-empty p {
  margin: 0 0 18px 0;
  font-size: 14px;
  color: #666;
}

.chat-empty__contact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}


/* SENDER BAR */
.sender {
  width: 100%;
  margin-top: 12px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.chat-empty__hours {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 3px 0;
}

.hours-row span:first-child {
  color: #444;
}

.hours-row span:last-child {
  font-weight: 600;
  color: #222;
}

.chat-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.chat-link:hover {
  text-decoration: underline;
}

/* Textarea */
.newmessage {
  width: 100%;
  min-height: 54px;
  max-height: 140px;
  font-size: 16px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  line-height: 1.25;
  outline: none;
  resize: none;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.newmessage:focus {
  border-color: rgba(150, 225, 29, 0.75);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18);
}

/* Send button */
.newmessagesend {
  border-radius: 16px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(180deg, #ff2d55, #e11d48);
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.25);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.newmessagesend:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.newmessagesend:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.22);
}

.message-date {
  font-size: 0.5rem;
  color: #64748b;
  line-height: 1.5;
}

.message-text {
  font-size: 1rem;
  line-height: 1;
  word-break: break-word;
  color: black;
}

/* Animations */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Reduce motion */
@media (prefers-reduced-motion: reduce) {

  .option_section#showContact,
  .message {
    animation: none !important;
  }

  .newmessagesend,
  .newmessage {
    transition: none !important;
  }
}