* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-elevated: #f7f7f7;
  --border: #d9d9d9;
  --text: #000000;
  --muted: #2f2f2f;
  --accent: #111111;
  --accent-hover: #000000;
  /* Nepal flag palette (approx.) — crimson field, blue border, white emblems */
  --nepal-crimson: #c8102e;
  --nepal-blue: #003893;
  --nepal-white-glow: rgba(255, 255, 255, 0.35);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-nav.nav-hidden {
  transform: translateY(-115%);
  opacity: 0.98;
}

.site-nav a.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: none;
}

.barber-icon {
  display: inline-block;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
  animation: spinSideways 2.2s linear infinite;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

@keyframes spinSideways {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.site-nav a:not(.logo) {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav a:not(.logo):hover {
  color: var(--text);
}

main {
  flex: 1;
  padding-top: 4.5rem;
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  background:
    linear-gradient(rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.62)),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

/* Letters styled like the Nepali flag: crimson fill, blue outline, soft white highlight */
.flag-type {
  color: var(--nepal-crimson);
  -webkit-text-stroke: 2px var(--nepal-blue);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 var(--nepal-white-glow),
    0 0 28px rgba(200, 16, 46, 0.45);
}

.hero h1 .flag-type {
  letter-spacing: 0.14em;
}

.site-nav .logo .flag-type {
  -webkit-text-stroke-width: 1px;
  text-shadow: 0 1px 0 var(--nepal-white-glow);
}

@supports not (-webkit-text-stroke: 1px red) {
  .flag-type {
    -webkit-text-stroke: 0 transparent;
    text-shadow:
      0 0 1px var(--nepal-blue),
      0 0 2px var(--nepal-blue),
      0 1px 0 var(--nepal-white-glow);
  }
}

.hero .tagline {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #555;
  background: var(--bg-elevated);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-row a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.social-row a:hover {
  color: var(--text);
  border-color: #555;
  background: var(--bg-elevated);
}

.page-section {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-section h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
}

.page-section .lead {
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.track-card {
  margin-bottom: 1rem;
}

.track-meta {
  margin: 0.25rem 0;
  color: var(--muted);
}

.track-meta strong {
  color: var(--text);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #525252;
  background: #262626;
  color: #e5e5e5;
  font-size: 0.86rem;
  font-weight: 600;
}

.status-pill.is-ready {
  border-color: #16a34a;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
}

.track-note {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.track-form {
  display: grid;
  gap: 0.6rem;
}

.track-form label {
  font-size: 0.85rem;
  color: var(--muted);
}

.track-form input {
  border: 1px solid var(--border);
  background: #101010;
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.track-form input:focus {
  outline: 1px solid var(--nepal-blue);
  border-color: var(--nepal-blue);
}

.track-error {
  margin: 0;
  color: #f87171;
  font-size: 0.9rem;
}

.barber-panel {
  border-color: rgba(0, 56, 147, 0.5);
  background: linear-gradient(180deg, rgba(0, 56, 147, 0.1), rgba(20, 20, 20, 0.9));
}

.track-controls {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

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

.shop-header {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.shop-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.08em;
}

.shop-header p {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.category-label {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.product-card .ph {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1f1f1f, #121212);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card .meta {
  padding: 1rem;
}

.product-card .meta strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.product-card .meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Featured sneaker listing */
.product-spotlight {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .product-spotlight {
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
  }
}

.product-spotlight__media {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  min-height: 280px;
}

.product-spotlight__img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-spotlight__body {
  text-align: left;
}

.product-spotlight__body h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.product-spotlight__subtitle {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.product-spotlight__price {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.product-spotlight__stock {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #86efac;
  font-weight: 600;
}

.product-spotlight__stock strong {
  color: #bbf7d0;
}

.size-fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.size-legend {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
  padding: 0;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-opt {
  min-width: 3.25rem;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.size-opt:hover:not(:disabled) {
  border-color: #555;
}

.size-opt:disabled,
.size-opt[aria-disabled="true"] {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--muted);
}

.size-opt--active {
  border-color: var(--nepal-crimson);
  background: rgba(200, 16, 46, 0.12);
  box-shadow: 0 0 0 1px var(--nepal-crimson);
}

.product-spotlight__qty {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-spotlight__pay-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.payment-pill svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.payment-pill--visa {
  border-color: #1a1f71;
  background: rgba(26, 31, 113, 0.25);
  color: #c4c8f5;
}

.payment-pill--apple {
  border-color: #333;
  background: #1c1c1e;
}

.product-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem 3rem;
}

.site-footer-col {
  flex: 1 1 180px;
  max-width: 20rem;
  text-align: center;
}

.site-footer-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer-address {
  margin: 0 0 1.25rem;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.site-footer-map {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nepal-crimson);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer-map:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.site-footer-contact {
  margin: 0;
  font-size: 1.1rem;
}

.site-footer-phone {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-footer-phone:hover {
  color: var(--nepal-crimson);
}

.site-footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  text-align: left;
  display: inline-block;
}

.site-footer-hours li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1.25rem;
  margin: 0;
  max-width: 19rem;
}

.site-footer-hours .day {
  font-weight: 600;
  color: var(--text);
}

.site-footer-hours .time {
  color: var(--muted);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Clean Essentials homepage */
.clean-logo {
  width: auto !important;
  height: auto !important;
  min-width: 170px;
  padding: 0.2rem 0;
}

.clean-logo img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
}

.clean-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.12), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1), transparent 45%);
}

.clean-hero .flag-type {
  color: #000000;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.clean-showcase {
  max-width: min(72rem, 100%);
}

.clean-showcase__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.clean-showcase__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.clean-showcase__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.clean-showcase__figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .clean-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 3.8vw, 1.9rem);
  letter-spacing: 0.03em;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.service-grid .card {
  margin: 0;
}

.service-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.discount-promo-modal {
  z-index: 68;
}

.discount-promo-modal__content {
  border: 2px solid var(--accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.discount-promo-modal__intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.discount-promo-modal__form {
  margin-top: 0.15rem;
}

.discount-promo-modal__thanks-msg {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--text);
}

.discount-promo-modal__actions {
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.promo-modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  margin: 20vh auto 0;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.promo-modal__content h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.promo-modal__content p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.promo-modal__close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: #111111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.book-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.book-modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 480px);
  max-height: min(90vh, 640px);
  margin: 6vh auto 0;
  padding: 1.35rem 1.35rem 1.1rem;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.book-modal__eyebrow {
  margin: 0 0 0.25rem;
  padding-right: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.book-modal__content h2 {
  margin: 0 0 0.5rem;
  padding-right: 2rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.book-modal__intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.book-modal__mailto {
  display: inline-block;
  margin: 0.35rem 0;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.book-form__row {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.book-form__row--split {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 420px) {
  .book-form__row--split {
    grid-template-columns: 1fr;
  }
}

.book-form__row--vehicle {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 480px) {
  .book-form__row--vehicle {
    grid-template-columns: 1.1fr 1.1fr 0.75fr;
  }
}

.book-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.book-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.book-form__field input {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  font: inherit;
}

.book-form__fieldset {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.85rem 0.75rem;
  margin: 0 0 1rem;
}

.book-form__legend {
  padding: 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.book-form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  cursor: pointer;
}

.book-form__radio input {
  margin: 0;
}

.book-form__actions {
  margin-top: 0.25rem;
}

.book-form__actions .btn {
  width: 100%;
}

.book-form__actions--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.book-form__actions--split .btn {
  width: auto;
}

@media (max-width: 420px) {
  .book-form__actions--split {
    grid-template-columns: 1fr;
  }
}

.book-modal__done {
  padding-top: 0.25rem;
}

.book-modal__done-title {
  margin: 0 0 0.5rem;
  padding-right: 2rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.book-modal__sms-copy {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: vertical;
  min-height: 9rem;
  background: var(--bg-elevated, #f7f7f7);
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-page {
  padding-top: 5.2rem;
}

.service-hero {
  padding-bottom: 1rem;
}

.service-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.package-card {
  margin: 0;
}

.package-card--gold {
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.45);
}

.package-card h2 {
  margin: 0.1rem 0 0.8rem;
  font-size: 2rem;
  color: #000;
}

.package-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-size: 0.8rem;
}

.package-note {
  margin: 0 0 0.75rem;
}

.package-card--featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(14, 165, 233, 0.65);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.35);
}

.diamond-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.diamond-drop {
  position: absolute;
  top: -12%;
  color: rgba(59, 130, 246, 0.55);
  text-shadow: 0 0 8px rgba(125, 211, 252, 0.65);
  font-size: 0.95rem;
  animation: diamond-fall linear infinite;
}

.diamond-drop:nth-child(1) {
  left: 8%;
  animation-duration: 4.6s;
  animation-delay: -1.2s;
}

.diamond-drop:nth-child(2) {
  left: 23%;
  animation-duration: 5.2s;
  animation-delay: -2.1s;
}

.diamond-drop:nth-child(3) {
  left: 41%;
  animation-duration: 4.2s;
  animation-delay: -0.8s;
}

.diamond-drop:nth-child(4) {
  left: 60%;
  animation-duration: 5.5s;
  animation-delay: -3s;
}

.diamond-drop:nth-child(5) {
  left: 76%;
  animation-duration: 4.8s;
  animation-delay: -1.7s;
}

.diamond-drop:nth-child(6) {
  left: 90%;
  animation-duration: 5.1s;
  animation-delay: -2.6s;
}

@keyframes diamond-fall {
  0% {
    transform: translateY(-10%) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(125%) rotate(180deg);
    opacity: 0;
  }
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.service-list li + li {
  margin-top: 0.32rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list strong {
  color: #000;
}

.service-cta {
  justify-content: flex-start;
  margin-top: 1.4rem;
  margin-bottom: 0;
}

.booking-form {
  margin-bottom: 1rem;
}

.booking-fieldset {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  margin: 0 0 0.85rem;
}

.booking-fieldset legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0;
  color: var(--text);
}

.choice-row input[type="number"],
.choice-row select {
  width: 100%;
  max-width: 280px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.cart-card {
  margin: 0;
}

.cart-card h3 {
  margin: 0 0 0.8rem;
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.cart-list li:last-child {
  border-bottom: 0;
}

.cart-total,
.cart-payment {
  margin: 0.8rem 0 0;
}

.cart-pay-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.cart-contact-hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.cart-receipt-panel {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.cart-receipt-panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.cart-receipt-panel__intro {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}

.cart-receipt-actions {
  margin-top: 0.75rem;
}

.cart-start-over {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 860px) {
  .service-packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
