:root {
  --bg: #0f1218;
  --ink: #f4f7fb;
  --muted: #c0c9d8;
  --card: rgba(19, 26, 37, 0.76);
  --line: rgba(182, 202, 234, 0.22);
  --accent: #45d0bd;
  --accent-2: #ef6464;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(4, 10, 18, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(69, 208, 189, 0.25), transparent 30%),
    radial-gradient(circle at 94% 2%, rgba(239, 100, 100, 0.18), transparent 26%),
    linear-gradient(160deg, #11161f 0%, #0c1119 42%, #0d1520 100%);
  color: var(--ink);
  min-height: 100vh;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
}

.topbar {
  width: min(1100px, 92vw);
  margin: 1.25rem auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.6rem 0.5rem 0.75rem;
  background: rgba(10, 14, 22, 0.76);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0.65rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(1.05);
}

.topnav {
  display: flex;
  gap: 0.85rem;
  margin-left: auto;
  margin-right: 0.3rem;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.topnav a:hover {
  color: var(--ink);
}

.lang-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.lang-trigger {
  border: 1px solid rgba(176, 196, 226, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 0.45rem 0.72rem;
  font: inherit;
  font-size: 0.86rem;
  min-height: 38px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  cursor: pointer;
}

.lang-caret {
  color: var(--muted);
  font-size: 0.78rem;
}

.lang-flag {
  font-size: 0.98rem;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.38rem);
  width: 190px;
  border: 1px solid rgba(176, 196, 226, 0.28);
  border-radius: 12px;
  background: rgba(9, 15, 23, 0.98);
  box-shadow: 0 12px 28px rgba(1, 7, 14, 0.42);
  padding: 0.3rem;
  z-index: 35;
}

.lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  border-radius: 8px;
  padding: 0.46rem 0.52rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(69, 208, 189, 0.16);
}

.lang-option.active {
  background: rgba(69, 208, 189, 0.24);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  margin-top: 2rem;
}

.hero {
  padding: 3rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(19, 28, 42, 0.94), rgba(16, 24, 35, 0.9));
  box-shadow: var(--shadow);
  animation: reveal 700ms ease;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Goldman", sans-serif;
  margin: 0.4rem 0 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 68ch;
  margin: 1rem 0 0;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

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

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #31b3a2);
  color: #07131e;
  box-shadow: 0 8px 20px rgba(69, 208, 189, 0.28);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.card p {
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.glow {
  position: relative;
  overflow: hidden;
}

.glow::after {
  content: "";
  position: absolute;
  inset: auto -60% -90% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(69, 208, 189, 0.26), transparent 65%);
  pointer-events: none;
}

.form-shell,
.rec-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 21, 31, 0.87);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.progress-wrap {
  margin: 1rem 0 1.2rem;
}

.progress-text {
  font-size: 0.88rem;
  color: var(--muted);
}

.progress-track {
  margin-top: 0.5rem;
  height: 9px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-bar {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #45d0bd, #ef6464);
  transition: width 250ms ease;
}

.step-container {
  display: block;
  position: relative;
}

.step {
  display: none;
  animation: reveal 350ms ease;
}

.step.active {
  display: block;
}

.step-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  color: var(--muted);
  background: rgba(11, 17, 27, 0.42);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.loader-icon {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.loader-icon span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.32;
  animation: loaderPulse 780ms ease-in-out infinite;
}

.loader-icon span:nth-child(2) {
  animation-delay: 130ms;
}

.loader-icon span:nth-child(3) {
  animation-delay: 260ms;
}

.step-container.is-transitioning .step-loader {
  opacity: 1;
}

.step-container.is-transitioning .step {
  opacity: 0.2;
}

label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid rgba(178, 195, 225, 0.26);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  min-height: 44px;
}

input:focus,
select:focus {
  outline: 2px solid rgba(69, 208, 189, 0.35);
  border-color: var(--accent);
}

.form-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.recommendation {
  margin-top: 1rem;
  border: 1px dashed rgba(176, 196, 226, 0.35);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.recommendation.empty {
  color: var(--muted);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.rec-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0.8rem;
  background: rgba(9, 17, 26, 0.75);
}

.rec-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.consultation-box {
  margin-top: 0.95rem;
  border: 1px solid rgba(176, 196, 226, 0.35);
  border-radius: 13px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.consultation-box h4 {
  margin: 0;
  font-family: "Goldman", sans-serif;
  font-size: 1rem;
}

.consultation-box p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.product-showcase {
  margin-top: 1rem;
  border: 1px solid rgba(176, 196, 226, 0.35);
  border-radius: 13px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
}

.product-showcase h4 {
  margin: 0;
  font-family: "Goldman", sans-serif;
  font-size: 1rem;
}

.product-showcase-lead {
  margin: 0.45rem 0 0.7rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 18, 28, 0.78);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-copy {
  padding: 0.6rem;
}

.product-title {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.25;
}

.product-price {
  margin: 0.35rem 0 0;
  color: var(--accent);
  font-weight: 700;
}

.booking-btn {
  margin-top: 0.85rem;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
}

.booking-widget {
  margin-top: 0.85rem;
  border: 1px solid rgba(176, 196, 226, 0.24);
  border-radius: 16px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(13, 21, 32, 0.96) 0%, rgba(9, 16, 26, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 30px rgba(2, 8, 16, 0.38);
}

.booking-widget h4 {
  margin: 0;
  font-family: "Goldman", sans-serif;
  font-size: 1rem;
}

.booking-lead {
  margin: 0.45rem 0 0.95rem;
  color: var(--muted);
}

.booking-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(176, 196, 226, 0.2);
  border-radius: 12px;
  padding: 0.42rem 0.45rem;
  background: rgba(255, 255, 255, 0.03);
}

.booking-month-label {
  text-transform: capitalize;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}

.booking-nav {
  border: 1px solid rgba(176, 196, 226, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-nav:hover {
  border-color: rgba(69, 208, 189, 0.65);
  background: rgba(69, 208, 189, 0.12);
  transform: translateY(-1px);
}

.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.booking-weekdays {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.booking-calendar-grid {
  margin-top: 0.5rem;
}

.calendar-empty {
  height: 38px;
}

.calendar-day {
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(176, 196, 226, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.calendar-day:hover:not(:disabled):not(.selected) {
  border-color: rgba(69, 208, 189, 0.64);
  background: rgba(69, 208, 189, 0.11);
  transform: translateY(-1px);
}

.calendar-day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.calendar-day.today:not(.selected) {
  border-color: rgba(239, 100, 100, 0.65);
}

.calendar-day.selected {
  background: linear-gradient(120deg, #45d0bd, #31b3a2);
  color: #07131e;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(69, 208, 189, 0.34);
}

.booking-slots-head {
  margin-top: 0.88rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.booking-slots-head h5 {
  margin: 0;
  font-size: 0.9rem;
  font-family: "Goldman", sans-serif;
}

.booking-slots-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-slots {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.consultation-methods {
  margin-top: 0.85rem;
  border: 1px solid rgba(176, 196, 226, 0.3);
  border-radius: 12px;
  padding: 0.68rem;
  background: rgba(255, 255, 255, 0.02);
}

.consultation-methods h5 {
  margin: 0;
  font-size: 0.9rem;
  font-family: "Goldman", sans-serif;
}

.consultation-method-options {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.consultation-option {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
}

.consultation-option input {
  width: auto;
  margin: 0;
}

.payment-section {
  margin-top: 0.85rem;
  border: 1px solid rgba(176, 196, 226, 0.3);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.payment-gate {
  margin: 0.85rem 0 0;
  border: 1px dashed rgba(176, 196, 226, 0.35);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  color: var(--muted);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.02);
}

.payment-section h5 {
  margin: 0;
  font-size: 0.94rem;
  font-family: "Goldman", sans-serif;
}

.payment-note {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-options {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.52rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.payment-option input {
  width: auto;
  margin: 0;
}

.payment-panel {
  margin-top: 0.6rem;
}

.payment-fields {
  display: grid;
  gap: 0.5rem;
}

.payment-fields.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-fields .full-row {
  grid-column: 1 / -1;
}

.payment-fields label {
  margin-top: 0;
  font-size: 0.86rem;
  font-weight: 500;
}

.payment-help {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.slot-btn {
  border: 1px solid rgba(176, 196, 226, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.52rem 0.55rem;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.slot-btn:hover:not(.selected) {
  border-color: rgba(69, 208, 189, 0.64);
  background: rgba(69, 208, 189, 0.11);
  transform: translateY(-1px);
}

.slot-btn.selected {
  border-color: transparent;
  background: linear-gradient(120deg, #45d0bd, #31b3a2);
  color: #07131e;
  box-shadow: 0 8px 18px rgba(69, 208, 189, 0.28);
}

.booking-summary {
  margin: 0.85rem 0 0;
  color: var(--muted);
  border: 1px solid rgba(176, 196, 226, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.58rem 0.62rem;
  min-height: 44px;
}

.booking-confirm {
  margin-top: 0.65rem;
  width: 100%;
}

.booking-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cta-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border: 1px solid rgba(178, 195, 225, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  width: min(1100px, 92vw);
  margin: 2rem auto 2.6rem;
  color: var(--muted);
  text-align: center;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes loaderPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.32;
  }

  40% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .section {
    margin-top: 1.3rem;
  }

  .topbar {
    border-radius: 20px;
    padding: 0.5rem 0.55rem;
    flex-wrap: nowrap;
    top: 0.35rem;
    gap: 0.5rem;
  }

  .brand img {
    height: 28px;
  }

  .topnav {
    display: none;
  }

  .lang-wrap {
    margin-left: auto;
  }

  .lang-trigger {
    min-height: 36px;
    min-width: 136px;
    padding: 0.4rem 0.64rem;
    font-size: 0.82rem;
  }

  .grid.three,
  .rec-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  .form-shell,
  .rec-shell {
    padding: 0.9rem;
  }

  .form-nav {
    gap: 0.55rem;
  }

  .form-nav .btn {
    flex: 1;
    text-align: center;
    padding: 0.85rem 0.7rem;
  }

  .booking-nav {
    width: 36px;
    height: 34px;
  }

  .calendar-day {
    height: 38px;
    font-size: 0.9rem;
  }

  .booking-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-btn {
    padding: 0.48rem 0.78rem;
    font-size: 0.9rem;
  }

  .payment-options,
  .consultation-method-options,
  .payment-fields.two-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2rem 1rem;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: 95vw;
    padding: 0.45rem 0.5rem;
  }

  .lang-wrap {
    width: auto;
    margin-top: 0;
    justify-content: flex-end;
  }

  .lang-trigger {
    min-height: 33px;
    min-width: 128px;
    padding: 0.34rem 0.52rem;
  }

  .lang-menu {
    width: 170px;
  }

  h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.15rem);
  }

  .lead {
    font-size: 0.96rem;
  }

  .progress-text {
    font-size: 0.82rem;
  }

  label {
    font-size: 0.93rem;
  }

  input,
  select {
    font-size: 16px;
  }

  .booking-weekdays {
    font-size: 0.72rem;
    gap: 0.24rem;
  }

  .booking-calendar-grid {
    gap: 0.24rem;
  }

  .booking-slots-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .calendar-day {
    height: 34px;
    border-radius: 9px;
    font-size: 0.82rem;
  }

  .booking-summary,
  .payment-note,
  .payment-help,
  .product-showcase-lead {
    font-size: 0.84rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .topbar {
    border-radius: 16px;
    padding: 0.42rem 0.46rem;
  }

  .brand img {
    height: 24px;
  }

  .lang-trigger {
    min-width: 116px;
    padding: 0.31rem 0.45rem;
    font-size: 0.76rem;
  }

  .lang-option {
    font-size: 0.82rem;
    padding: 0.4rem 0.46rem;
  }

  .hero {
    padding: 1.55rem 0.82rem;
  }

  h1 {
    font-size: clamp(1.5rem, 8.6vw, 1.85rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.2rem, 6.2vw, 1.5rem);
  }

  h3 {
    font-size: clamp(1.05rem, 5.1vw, 1.22rem);
  }

  .lead {
    font-size: 0.9rem;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 1.1px;
  }

  .form-shell,
  .rec-shell,
  .recommendation,
  .consultation-box,
  .product-showcase,
  .booking-widget,
  .payment-section {
    padding: 0.72rem;
  }

  label {
    margin-top: 0.62rem;
    font-size: 0.9rem;
  }

  input,
  select {
    min-height: 42px;
    padding: 0.62rem 0.68rem;
  }

  .progress-wrap {
    margin: 0.8rem 0 1rem;
  }

  .progress-track {
    height: 8px;
  }

  .form-nav .btn {
    padding: 0.76rem 0.62rem;
    font-size: 0.9rem;
  }

  .booking-calendar-header {
    gap: 0.35rem;
  }

  .booking-month-label {
    font-size: 0.88rem;
  }

  .booking-nav {
    width: 32px;
    height: 30px;
  }

  .booking-weekdays {
    font-size: 0.66rem;
  }

  .calendar-day {
    height: 30px;
    font-size: 0.75rem;
  }

  .slot-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.84rem;
  }

  .product-copy {
    padding: 0.52rem;
  }

  .product-title {
    font-size: 0.81rem;
  }

  .product-price {
    font-size: 0.86rem;
  }

  .booking-btn,
  .booking-confirm {
    font-size: 0.92rem;
    padding: 0.78rem 0.9rem;
  }

  .footer {
    margin: 1.4rem auto 2rem;
    font-size: 0.84rem;
  }
}
