﻿:root {
  --header-height: 90px;
  --ink: #241A34;
  --ocean: #1FA3C8;
  --reef: #11C7A3;
  --sun: #FFC857;
  --coral: #FF7A59;
  --sand: #F4E7C5;
  --sky: #E8F6FB;
  --white: #ffffff;
  --muted: #7b7791;
  --bg: #f5fbfd;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(31, 163, 200, 0.18), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(255, 122, 89, 0.16), transparent 45%),
    linear-gradient(180deg, #fbfeff, var(--bg));
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
  background: #221c31;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.header-row {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.brand-group {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-title-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo-link img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-copy { display: grid; gap: 2px; min-width: 0; align-content: center; }
.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  color: rgba(247, 249, 252, 0.95);
}
.brand-copy span {
  color: rgba(240, 242, 247, 0.78);
  font-size: 0.78rem;
  white-space: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.user-menu-wrap {
  position: relative;
}

.user-avatar-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  min-height: 48px;
  padding: 5px 8px 5px 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.avatar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(247, 249, 252, 0.95);
  font-weight: 700;
  font-size: 0.85rem;
}

.avatar-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.avatar-icon.has-photo {
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
}

.avatar-icon.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.user-avatar-btn.is-auth .avatar-icon {
  background: linear-gradient(135deg, var(--ocean), var(--reef));
  color: #fff;
}

.avatar-label {
  font-weight: 600;
  font-size: 0.84rem;
  max-width: 132px;
  color: rgba(242, 245, 249, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  background: rgba(34, 28, 49, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.user-dropdown button,
.user-dropdown a {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(242, 245, 249, 0.92);
  display: block;
  text-decoration: none;
}

.user-dropdown button:hover,
.user-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 16, 29, 0.56);
  display: grid;
  place-items: center;
  padding: 16px;
}

.profile-modal[hidden] {
  display: none !important;
}

.profile-modal-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(34, 28, 49, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(34, 28, 49, 0.22);
  overflow: hidden;
}

.profile-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(34, 28, 49, 0.08);
}

.profile-modal-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

.profile-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 49, 0.12);
  background: rgba(34, 28, 49, 0.04);
  cursor: pointer;
}

.profile-form {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.profile-form label {
  display: grid;
  gap: 6px;
}

.profile-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(36, 26, 52, 0.78);
}

.profile-form input,
.profile-form select {
  width: 100%;
  border: 1px solid rgba(34, 28, 49, 0.14);
  border-radius: 14px;
  min-height: 46px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-identity p,
.profile-identity strong {
  margin: 0;
}

.profile-identity p {
  color: var(--muted);
  font-size: 0.86rem;
}

.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean), var(--reef));
  color: #fff;
  font-weight: 700;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-whatsapp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.16);
}

.profile-whatsapp-status {
  color: rgba(36, 26, 52, 0.84);
  font-size: 0.88rem;
  line-height: 1.4;
}

.profile-whatsapp-status.is-valid {
  color: #118f62;
  font-weight: 700;
}

.profile-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: linear-gradient(135deg, var(--ocean), var(--reef));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 199, 163, 0.25);
}
.btn.soft {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(36, 26, 52, 0.1);
}

.location-bar {
  width: 100%;
  background: linear-gradient(180deg, #6f8341, #586b2f);
  border-bottom: 1px solid rgba(38, 50, 15, 0.35);
}

.location-bar-inner {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
}

.location-label {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.gps-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gps-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.gps-btn.is-authorized {
  background: rgba(255, 255, 255, 0.92);
  color: #41511d;
  border-color: rgba(255, 255, 255, 0.56);
}

.menu-band {
  margin-top: 2px;
  padding: 4px 0 6px;
  scroll-margin-top: 98px;
}

.results-divider {
  padding: 2px 0 8px;
}

.results-divider-line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(34, 28, 49, 0),
    rgba(31, 163, 200, 0.55) 22%,
    rgba(17, 199, 163, 0.72) 50%,
    rgba(255, 122, 89, 0.55) 78%,
    rgba(34, 28, 49, 0)
  );
  box-shadow: 0 2px 10px rgba(17, 199, 163, 0.12);
}

.results-heading {
  padding: 0 0 10px;
}

.results-heading .container {
  display: grid;
  gap: 10px;
}

.results-heading-copy {
  display: grid;
  gap: 3px;
}

.results-heading-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.1;
  color: #221c31;
}

.results-heading-copy p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(36, 26, 52, 0.66);
  letter-spacing: 0.02em;
}

.category-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  overflow: visible;
  padding: 2px 0 6px;
}

.category-tile {
  border: 1px solid rgba(36, 26, 52, 0.08);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  min-height: 56px;
  padding: 6px 12px 6px 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: start;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 6px 14px rgba(36, 26, 52, 0.10);
}

.category-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36, 26, 52, 0.14);
}

.category-tile.is-active {
  background: linear-gradient(135deg, rgba(31,163,200,0.16), rgba(17,199,163,0.14));
  border-color: rgba(31, 163, 200, 0.28);
  box-shadow: 0 10px 22px rgba(31, 163, 200, 0.18);
}

.category-icon {
  width: 38px;
  height: 38px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36,26,52,.06);
  font-size: 1.35rem;
  line-height: 1;
}

.category-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.category-name {
  font-size: 0.92rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
  white-space: normal;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero { padding: 6px 0 10px; }
main.has-random-photo {
  background:
    linear-gradient(180deg, rgba(251,254,255,.90), rgba(245,251,253,.94)),
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.34), transparent 42%),
    var(--main-random-image) center top / cover no-repeat fixed;
}
.hero-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}
.hero-grid-single { grid-template-columns: 1fr; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.2);
  color: #a56a00;
  font-weight: 600;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 6px 0 8px;
}

.hero p { margin: 0; color: var(--muted); max-width: 68ch; }
.hero-slogan {
  font-weight: 700;
  color: #0b6f88;
  margin-top: 2px;
}
.hero-subtitle {
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 12px;
}
.section-heading h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
}
.section-heading p { margin: 0; color: var(--muted); }

.services-section { padding: 6px 0 42px; scroll-margin-top: 108px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: rgba(255,255,255,.9);
  border: 1px solid #221c31;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 14px 30px rgba(34, 28, 49, 0.16);
  display: grid;
  gap: 0;
  overflow: hidden;
  outline: none;
  transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
}
.service-card:hover {
  box-shadow: 0 18px 38px rgba(34, 28, 49, 0.2);
  transform: translateY(-1px);
}
.service-card:focus-visible,
.service-card.is-selected {
  border-color: rgba(31, 163, 200, 0.95);
  box-shadow:
    0 0 0 2px rgba(31, 163, 200, 0.18),
    0 16px 38px rgba(31, 163, 200, 0.2),
    0 0 18px rgba(17, 199, 163, 0.22);
}
.service-card.empty { grid-column: 1 / -1; text-align: center; color: var(--muted); }
.service-card.empty {
  padding: 16px;
}

.service-card-header {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(34, 28, 49, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,255,.93));
}

.service-thumb {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: var(--service-media-bg, rgba(232,246,251,0.6));
}

.service-thumb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--service-media-bg, rgba(232,246,251,0.6));
}

.service-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: var(--service-media-fit, contain);
  display: block;
  background: var(--service-media-bg, rgba(232,246,251,0.6));
}

.service-thumb-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,163,200,.18), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255,122,89,.12), transparent 60%),
    linear-gradient(180deg, rgba(34,28,49,.03), rgba(34,28,49,.08));
  color: rgba(34, 28, 49, 0.75);
}

.service-thumb-empty span {
  font-size: 2rem;
  line-height: 1;
}

.service-thumb-empty .category-icon-img {
  width: 40px;
  height: 40px;
  opacity: 0.84;
}

.service-card-headcopy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  margin-bottom: 10px;
}

.card-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .76rem;
  background: rgba(31,163,200,0.12);
  color: #0b6f88;
  font-weight: 700;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(11,111,136,0.10);
  font-size: .8rem;
  line-height: 1;
}

.badge-icon .category-icon-img {
  width: 14px;
  height: 14px;
}
.price {
  font-weight: 700;
  color: var(--coral);
}
.price-stack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-original {
  color: #4a4a4a;
  text-decoration: line-through;
  font-size: 0.82rem;
  font-weight: 700;
}
.price-offer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #c95636;
  font-weight: 800;
}
.price-offer-star {
  color: #e0a100;
  font-size: 0.75rem;
  line-height: 1;
}
.featured-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.24rem;
  color: #ffc83d;
  text-shadow: 0 0 10px rgba(255, 216, 87, 0.95), 0 2px 5px rgba(138, 94, 0, 0.45);
  filter: drop-shadow(0 0 4px rgba(255, 224, 102, 0.7));
  font-size: 0.85em;
}
.price-whatsapp {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(34, 28, 49, 0.2);
  box-shadow:
    0 8px 20px rgba(37, 211, 102, 0.34),
    0 3px 10px rgba(34, 28, 49, 0.16);
  animation: waFloat 2.8s ease-in-out infinite;
}
.price-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 12px 24px rgba(37, 211, 102, 0.38),
    0 6px 14px rgba(34, 28, 49, 0.2);
}
.price-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .price-whatsapp { animation: none; }
}
.service-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subtitle .featured-star,
.detail-product-subtitle .featured-star {
  vertical-align: text-top;
}

.service-card-body {
  padding: 12px 14px 12px;
  display: grid;
  gap: 9px;
}

.service-card-status-stack {
  display: grid;
  gap: 8px;
}

.service-card-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-card-status-row .service-status {
  margin-top: 0;
}

.service-card-status-row .service-calendar-link {
  flex: 0 0 auto;
}

.service-card-calendar-row {
  display: flex;
  align-items: center;
}

.service-summary {
  margin: 0;
  color: rgba(36, 26, 52, 0.9);
  font-size: .88rem;
  line-height: 1.35;
  min-height: 2.6em;
}

.meta {
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(34, 28, 49, 0.05);
  border: 1px solid rgba(34, 28, 49, 0.08);
  padding: 4px 8px;
}

.service-card-footer {
  border-top: 1px solid rgba(34, 28, 49, 0.08);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  flex-wrap: nowrap;
}

.service-calendar-link,
.service-detail-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: .86rem;
}

.service-calendar-link {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(63, 95, 29, 0.18);
  justify-content: center;
  background: rgba(63, 95, 29, 0.08);
  color: #3f5f1d;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(63, 95, 29, 0.14);
}

.service-fresh-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #8d4b00;
  background: rgba(255, 184, 77, 0.16);
  border: 1px solid rgba(180, 107, 0, 0.22);
}

.service-detail-link {
  color: #1a5165;
  margin-right: auto;
}

.service-detail-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 163, 200, 0.12);
  border: 1px solid rgba(31, 163, 200, 0.22);
  box-shadow: 0 6px 14px rgba(31, 163, 200, 0.16);
}

.service-detail-link-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.service-card-ask {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(34, 28, 49, 0.14);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.28), 0 4px 10px rgba(34, 28, 49, 0.14);
}

.service-card-ask svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.service-card-ask.is-disabled,
.detail-contact-fab.is-disabled {
  background: #cfd6dd;
  color: #6f7882;
  box-shadow: none;
  cursor: not-allowed;
  animation: none;
}

.service-card-footer .service-detail-link-icon {
  margin: 0;
}

.meta-availability {
  background: rgba(191, 54, 54, 0.1) !important;
  border-color: rgba(191, 54, 54, 0.18) !important;
  color: #9f2c2c !important;
}

.detail-block {
  background: rgba(232,246,251,0.42);
  border-radius: 12px;
  padding: 10px;
}
.detail-block h4 {
  margin: 0 0 6px;
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.detail-block ul { margin: 0; padding-left: 18px; display: grid; gap: 4px; font-size: .86rem; }

.availability-block {
  display: grid;
  gap: 12px;
}

.availability-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.availability-block-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.availability-summary {
  margin: 6px 0 0;
  font-size: .84rem;
  color: var(--muted);
}

.availability-summary.is-warning {
  color: #9f2c2c;
  font-weight: 700;
}

.availability-toggle {
  border: 1px solid rgba(104, 138, 42, 0.22);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: #4e6f1d;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
}

.availability-toggle.icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(78, 111, 29, 0.12);
}

.availability-toggle.icon-only svg {
  width: 22px;
  height: 22px;
}

.availability-collapsible[hidden] {
  display: none;
}

.availability-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.availability-month-card {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(34, 28, 49, 0.08);
  background: rgba(255,255,255,0.88);
}

.availability-month-card h5 {
  margin: 0 0 10px;
  font-size: .88rem;
  text-transform: capitalize;
}

.availability-weekdays,
.availability-days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.availability-weekdays {
  margin-bottom: 6px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.availability-day {
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(34, 28, 49, 0.08);
  padding: 6px 4px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.96);
}

.availability-day.is-empty {
  min-height: 56px;
  border: 0;
  background: transparent;
}

.availability-day.is-available {
  background: rgba(31, 163, 72, 0.12);
  border-color: rgba(31, 163, 72, 0.18);
  color: #1f7a3e;
}

.availability-day.is-unavailable {
  background: rgba(191, 54, 54, 0.12);
  border-color: rgba(191, 54, 54, 0.18);
  color: #a12424;
}

.availability-day.is-today {
  background: #0a2d66;
  border-color: #6fe6ff;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(111, 230, 255, 0.88), 0 0 18px rgba(111, 230, 255, 0.52);
}

.availability-day.is-today .availability-day-price,
.availability-day.is-today .availability-day-num {
  color: #ffffff;
}

.availability-day.is-past {
  background: rgba(122, 128, 138, 0.12);
  border-color: rgba(122, 128, 138, 0.16);
  color: rgba(88, 94, 104, 0.82);
  cursor: default;
}

.availability-day.is-past .availability-day-price {
  opacity: 0;
}

.availability-day-num {
  font-size: .78rem;
  font-weight: 800;
}

.availability-day-price {
  font-size: .67rem;
  line-height: 1.1;
  text-align: center;
}

.availability-day-price-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(31, 163, 200, 0.28);
  border-radius: 10px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #143948;
  text-align: center;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.options-strip {
  padding: 0 0 34px;
}

.options-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(232,246,251,.72));
  border: 1px solid rgba(36,26,52,.08);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 16px 32px rgba(36,26,52,.04);
}

.options-header {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(36,26,52,.08);
}

.options-header h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
}
.service-status {
  display: inline-flex;
  align-items: center;
  margin-top: 3px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}
.service-status.is-soldout {
  background: rgba(152, 71, 0, 0.12);
  color: #8a4200;
  border: 1px solid rgba(152, 71, 0, 0.18);
}

.service-status.is-rented {
  background: rgba(191, 54, 54, 0.12);
  color: #a12424;
  border: 1px solid rgba(191, 54, 54, 0.2);
}

.service-status.is-upcoming {
  background: rgba(17, 163, 200, 0.14);
  color: #0d6076;
  border: 1px solid rgba(17, 163, 200, 0.22);
}

.options-stack {
  display: grid;
  gap: 14px;
}

.options-group {
  display: grid;
  gap: 8px;
}

.options-group h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(36, 26, 52, 0.76);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.option-card {
  border: 1px solid rgba(36,26,52,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  padding: 12px;
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 114px;
}
.ad-card .option-icon {
  min-width: 28px;
}

.option-card:hover {
  box-shadow: 0 10px 24px rgba(36,26,52,.06);
}

.option-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,163,200,.12);
  color: #0b6f88;
  font-weight: 700;
}

.option-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
  line-height: 1.15;
}

.option-card small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.2;
}

.option-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(36, 26, 52, 0.1);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94));
}

.option-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 28px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a5165;
  border: 1px solid rgba(31, 163, 200, 0.28);
  background: rgba(31, 163, 200, 0.12);
}

.offer-card-link {
  color: inherit;
  text-decoration: none;
}

.offer-card-link:hover,
.offer-card-link:focus-visible {
  text-decoration: underline;
}

.option-card-actions {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.option-whatsapp {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.24);
}

.option-whatsapp svg {
  width: 15px;
  height: 15px;
}

.offer-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94));
}

.offer-carousel img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(36, 26, 52, 0.1);
  aspect-ratio: 16 / 9;
  object-fit: var(--offer-media-fit, contain);
  background: transparent;
}

.offer-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 49, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(34, 28, 49, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.offer-carousel-nav.prev { left: 8px; }
.offer-carousel-nav.next { right: 8px; }

#topBannersMount,
#bottomBannersMount {
  margin-bottom: 12px;
}

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

.banner-card {
  border: 1px solid rgba(36,26,52,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(36, 26, 52, 0.05);
}

.banner-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.banner-card-copy {
  padding: 10px;
  display: grid;
  gap: 6px;
}

.banner-card-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.banner-card-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.delayed-banner-item {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: min(340px, calc(100% - 28px));
  z-index: 45;
}

.delayed-banner-item .banner-card {
  box-shadow: 0 16px 26px rgba(34, 28, 49, 0.2);
}

.delayed-banner-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 49, 0.14);
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}

.splash-banner-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(20, 18, 34, 0.68);
  display: grid;
  place-items: center;
  padding: 16px;
}

.splash-banner-card {
  width: min(560px, 100%);
  position: relative;
}

.splash-banner-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 49, 0.2);
  background: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1rem;
}

.category-loader {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(18, 16, 29, 0.5);
}

.category-loader:not([hidden]) {
  display: grid;
  place-items: center;
}

.category-loader[hidden] {
  display: none !important;
}

body.is-category-loading {
  overflow: hidden;
}

.category-loader-inner {
  width: 92px;
  height: 92px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(34, 28, 49, 0.1);
  box-shadow: 0 18px 34px rgba(34, 28, 49, 0.2);
  display: grid;
  place-items: center;
}

.category-loader-inner img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(34, 28, 49, 0.3));
  animation: loaderSpin 1.2s linear infinite, loaderFloat 2.2s ease-in-out infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

.detail-main {
  min-height: calc(100vh - var(--header-height));
}

.detail-page-shell {
  padding: 14px 0 34px;
}

.detail-preview-note {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 163, 200, 0.22);
  background: rgba(31, 163, 200, 0.1);
  color: #0f4254;
  font-size: 0.92rem;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1a5165;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(34, 28, 49, 0.08);
  box-shadow: 0 8px 16px rgba(34, 28, 49, 0.06);
}

.detail-loading-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(34, 28, 49, 0.1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(34, 28, 49, 0.08);
}

.detail-loading-card p {
  margin: 0 0 8px;
}

.detail-loading-card small {
  color: var(--muted);
}

.detail-product-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(34, 28, 49, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(34, 28, 49, 0.12);
  backdrop-filter: blur(2px);
}

.detail-product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(34, 28, 49, 0.08);
  background:
    radial-gradient(circle at 10% 15%, rgba(31,163,200,.08), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.95));
}

.detail-product-titleblock {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.detail-product-titleblock h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.detail-product-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.detail-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-product-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(34, 28, 49, 0.86);
  border: 1px solid rgba(34, 28, 49, 0.08);
  background: rgba(34, 28, 49, 0.03);
}

.detail-product-pricebox {
  flex-shrink: 0;
  min-width: 86px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.detail-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 89, 0.28);
  background: rgba(255, 122, 89, 0.08);
  color: #c95636;
  font-weight: 800;
  padding: 10px 12px;
  white-space: nowrap;
}

.detail-price-offer {
  gap: 8px;
  flex-wrap: wrap;
}

.detail-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.detail-gallery-wrap {
  display: grid;
  align-content: start;
  gap: 12px;
}

.detail-gallery-carousel,
.detail-gallery-empty {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34, 28, 49, 0.12);
  background: var(--detail-media-bg, rgba(255,255,255,.96));
  min-height: 320px;
  aspect-ratio: 16 / 10;
}

.detail-gallery-single {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34, 28, 49, 0.12);
  background: var(--detail-media-bg, rgba(255,255,255,.96));
  display: grid;
  place-items: center;
  padding: 12px;
}

.detail-gallery-single img {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(72vh, 680px);
  object-fit: var(--detail-media-fit, contain);
  display: block;
  background: var(--detail-media-bg, linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94)));
}

.detail-gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: var(--detail-media-fit, contain);
  display: block;
  background: var(--detail-media-bg, linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94)));
}

.offer-detail-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
}

.offer-detail-thumb {
  padding: 0;
  border: 1px solid rgba(34, 28, 49, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.offer-detail-thumb.is-active {
  border-color: rgba(31, 163, 200, 0.44);
  box-shadow: 0 0 0 2px rgba(31, 163, 200, 0.16);
}

.offer-detail-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94));
}

.detail-gallery-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  background:
    radial-gradient(circle at 18% 15%, rgba(31,163,200,.14), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255,122,89,.12), transparent 50%),
    linear-gradient(180deg, rgba(34,28,49,.02), rgba(34,28,49,.06));
  color: rgba(34, 28, 49, 0.8);
  text-align: center;
}

.detail-gallery-empty span {
  font-size: 2.4rem;
}

.detail-gallery-empty small {
  color: var(--muted);
}

.detail-gallery-carousel {
  position: relative;
}

.detail-gallery-stage {
  height: 100%;
  background: var(--detail-media-bg, linear-gradient(180deg, rgba(240, 248, 252, 0.98), rgba(226, 240, 247, 0.94)));
}

.detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 49, 0.16);
  background: rgba(255,255,255,.85);
  color: rgba(34, 28, 49, 0.9);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 18px rgba(34, 28, 49, 0.12),
    0 2px 8px rgba(34, 28, 49, 0.08);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.detail-gallery-nav.prev { left: 10px; }
.detail-gallery-nav.next { right: 10px; }

.detail-gallery-nav:hover {
  background: rgba(255,255,255,.98);
  box-shadow:
    0 14px 24px rgba(34, 28, 49, 0.16),
    0 6px 14px rgba(34, 28, 49, 0.12);
}

.detail-gallery-nav svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 3px rgba(34, 28, 49, 0.22));
}

.detail-gallery-image {
  cursor: zoom-in;
}

.detail-gallery-image:focus-visible {
  outline: 3px solid rgba(31, 163, 200, 0.34);
  outline-offset: -3px;
}

.detail-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.detail-gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.62);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(34, 28, 49, 0.18);
}

.detail-gallery-dot.is-active {
  background: #25d366;
  transform: scale(1.15);
}

.detail-content-wrap {
  display: grid;
  gap: 10px;
  align-content: start;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(13, 12, 20, 0.88);
  display: grid;
  place-items: center;
  padding: 20px;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox-shell {
  position: relative;
  width: min(100%, 1440px);
  height: min(92vh, 940px);
  display: grid;
  align-items: center;
}

.image-lightbox-stage {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.image-lightbox-stage::-webkit-scrollbar {
  display: none;
}

.image-lightbox-track {
  height: 100%;
  display: flex;
}

.image-lightbox-slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
}

.image-lightbox-slide img {
  max-width: min(94vw, 1380px);
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.calendar-lightbox .image-lightbox-shell {
  width: min(100%, 1120px);
  height: min(calc(100dvh - 24px), 900px);
  align-items: stretch;
  overflow: hidden;
}

.calendar-lightbox .image-lightbox-stage {
  height: 100%;
  overflow-y: hidden;
}

.calendar-lightbox .image-lightbox-track {
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.calendar-lightbox-slide {
  height: 100%;
  padding: 52px 4px 6px;
  align-content: stretch;
  place-items: stretch;
}

.calendar-lightbox-month {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(12px, 1.8vw, 18px);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,247,252,.93));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.calendar-lightbox-month h5 {
  margin: 0 0 16px;
  font-size: 1.12rem;
  text-transform: capitalize;
  color: #1f2b2a;
}

.calendar-lightbox .availability-weekdays {
  margin-bottom: 10px;
}

.calendar-lightbox .availability-days-grid {
  height: 100%;
  gap: 4px;
  align-content: stretch;
  grid-auto-rows: minmax(0, 1fr);
}

.calendar-lightbox .availability-day {
  min-height: 0;
  height: auto;
  padding: 8px 4px;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.image-lightbox-nav.prev { left: 12px; }
.image-lightbox-nav.next { right: 12px; }

.image-lightbox-nav:disabled {
  opacity: 0.34;
  cursor: default;
}

.image-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.image-lightbox-counter {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

body.has-lightbox-open {
  overflow: hidden;
}

.detail-description {
  margin: 0;
  color: rgba(36, 26, 52, 0.9);
  line-height: 1.45;
  font-size: .92rem;
}

.detail-actions-bar {
  border-top: 1px solid rgba(34, 28, 49, 0.12);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(249,252,255,.97));
}

.detail-actions-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-share-group {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(34, 28, 49, 0.1);
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 16px rgba(34, 28, 49, 0.06);
}

.detail-share-title {
  font-size: .76rem;
  font-weight: 800;
  color: var(--muted);
}

.detail-share-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 28, 49, 0.12);
  background: rgba(248, 252, 255, 0.98);
  color: rgba(34, 28, 49, 0.92);
  box-shadow: 0 8px 16px rgba(34, 28, 49, 0.08);
}

.detail-share-btn.is-whatsapp {
  border-color: rgba(37, 211, 102, 0.22);
}

.detail-share-btn.is-instagram {
  border-color: rgba(221, 42, 123, 0.2);
}

.detail-share-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.detail-share-icon > svg:first-child {
  width: 100%;
  height: 100%;
  display: block;
}

.detail-share-icon-whatsapp {
  color: #13995f;
}

.detail-share-icon-instagram {
  color: #b52b6c;
}

.detail-share-arrow {
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1f2b2a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.detail-share-arrow svg {
  width: 9px;
  height: 9px;
  display: block;
}

.detail-contact-fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(34, 28, 49, 0.18);
  box-shadow:
    0 10px 22px rgba(37, 211, 102, 0.34),
    0 6px 14px rgba(34, 28, 49, 0.16);
  animation: waFloat 2.8s ease-in-out infinite;
}

.detail-contact-fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 140;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.site-toast {
  min-width: min(320px, calc(100vw - 32px));
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(34, 28, 49, 0.12);
  background: rgba(255,255,255,.98);
  color: rgba(34, 28, 49, 0.92);
  box-shadow: 0 18px 36px rgba(34, 28, 49, 0.16);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: auto;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast.is-warning {
  border-color: rgba(191, 54, 54, 0.18);
  background: rgba(255, 244, 244, 0.98);
  color: #842727;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: #221c31;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.footer-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
}
.footer-brand strong { display: block; font-family: "Montserrat", sans-serif; }
.footer-brand strong { color: rgba(247,249,252,.95); }
.footer-brand p { margin: 2px 0 0; color: rgba(240,242,247,.76); font-size: .88rem; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social { display: flex; align-items: center; gap: 10px; }
.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 18px rgba(36,26,52,0.12);
}
.social-circle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social-circle.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-circle.facebook { background: #1877f2; }
.social-circle.whatsapp { background: #25d366; color: #ffffff; }

@media (max-width: 1080px) {
  .category-menu-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-product-grid { grid-template-columns: 1fr; }
  .detail-gallery-carousel,
  .detail-gallery-empty,
  .detail-gallery-stage img { min-height: 280px; }
  .detail-gallery-single img { max-height: min(68vh, 600px); }
  .options-grid { grid-template-columns: 1fr; }
  .banner-position-grid { grid-template-columns: 1fr; }
  .footer-row { align-items: flex-start; padding: 14px 0; }
  .footer-right { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 760px) {
  :root { --header-height: 90px; }
  .site-header .container {
    width: calc(100% - 10px);
  }
  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px;
    align-items: center;
    min-height: var(--header-height);
    padding: 6px 0;
  }
  .brand-group { gap: 8px; }
  .brand-logo-link img { width: 42px; height: 42px; padding: 4px; }
  .brand-copy { width: 100%; }
  .brand-copy strong { font-size: 0.86rem; }
  .brand-copy span {
    display: block;
    font-size: 0.68rem;
    line-height: 1.18;
    max-width: none;
    width: 100%;
  }
  .header-actions { flex-shrink: 0; justify-self: end; }
  .avatar-label {
    display: inline-block;
    font-size: 0.68rem;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }
  .user-avatar-btn {
    min-height: 36px;
    padding: 2px 4px 2px 2px;
    gap: 4px;
    box-shadow: 0 5px 12px rgba(36, 26, 52, 0.08);
  }
  .avatar-icon { width: 30px; height: 30px; font-size: 0.72rem; }
  .avatar-icon svg { width: 16px; height: 16px; }
  .menu-band { margin-top: 2px; padding-top: 0; scroll-margin-top: 98px; }
  .location-bar-inner { min-height: 36px; padding: 0 8px; }
  .location-label { font-size: 0.72rem; }
  .gps-btn { width: 28px; height: 28px; }
  .gps-btn svg { width: 16px; height: 16px; }
  .category-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 6px;
    padding-left: 0;
    padding-right: 0;
  }
  .category-tile {
    min-height: 52px;
    padding: 5px 10px 5px 7px;
    border-radius: 3px;
    gap: 6px;
  }
  .category-icon {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    font-size: 1.1rem;
  }
  .category-name { font-size: 0.76rem; line-height: 1.02; }
  .services-grid { grid-template-columns: 1fr; }
  .delayed-banner-item {
    right: 8px;
    bottom: 8px;
    width: min(320px, calc(100% - 16px));
  }
  .service-card-header {
    padding: 0;
  }
  .service-thumb {
    min-height: 180px;
  }
  .service-card-body { padding: 10px 11px 11px; }
  .service-card-footer { padding: 8px 10px; }
  .service-detail-link { font-size: .82rem; }
  .service-detail-link-icon {
    width: 28px;
    height: 28px;
  }
  .section-heading { flex-direction: column; align-items: flex-start; }
  .detail-page-shell { padding: 10px 0 24px; }
  .detail-back-link { margin-bottom: 8px; padding: 7px 10px; font-size: .85rem; }
  .detail-product-header {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .detail-product-pricebox {
    min-width: 0;
    justify-content: flex-start;
  }
  .detail-price { padding: 8px 10px; font-size: .88rem; }
  .detail-product-grid { gap: 10px; padding: 10px; }
  .detail-gallery-carousel,
  .detail-gallery-empty,
  .detail-gallery-stage img { min-height: 220px; }
  .detail-gallery-single { padding: 8px; }
  .detail-gallery-single img { max-height: min(62vh, 420px); }
  .image-lightbox { padding: 14px; }
  .image-lightbox-close { top: 12px; right: 12px; }
  .image-lightbox-counter { top: 12px; left: 12px; font-size: 0.76rem; }
  .image-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .image-lightbox-nav.prev { left: 4px; }
  .image-lightbox-nav.next { right: 4px; }
  .calendar-lightbox-slide {
    padding: 48px 2px 4px;
  }
  .calendar-lightbox-month {
    padding: 10px;
    border-radius: 18px;
  }
  .calendar-lightbox-month h5 {
    margin-bottom: 10px;
    font-size: .96rem;
  }
  .calendar-lightbox .availability-days-grid {
    gap: 3px;
  }
  .calendar-lightbox .availability-day {
    min-height: 0;
    padding: 6px 2px;
  }
  .detail-actions-bar {
    padding: 10px;
    align-items: flex-end;
  }
  .detail-share-group {
    width: 100%;
    justify-content: space-between;
  }
  .detail-contact-fab {
    align-self: flex-end;
    width: 42px;
    height: 42px;
  }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-right { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .category-tile,
  .service-card,
  .detail-contact-fab,
  .category-loader-inner img { transition: none; animation: none; }
}
