/*
  Jyna Healthcare - Component styles for JS-generated content and state toggles.
  Static layout uses Tailwind CDN classes. This file handles only what Tailwind
  cannot: dynamically-injected HTML, JS-toggled states, and complex selectors.
*/

/* --- Filter chips (JS toggles is-active) ----------------------------------- */
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: #2b465d;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.filter-chip:hover { border-color: #0c9f9a; color: #0c9f9a; }
.filter-chip.is-active {
  background: #163857;
  border-color: #163857;
  color: #fff;
}

/* --- Product cards (rendered by app.js) ------------------------------------ */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2eaf1;
  box-shadow: 0 2px 12px rgba(13, 36, 56, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(13, 36, 56, 0.13);
  transform: translateY(-2px);
}
.product-thumb,
.product-thumb--link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf3f7;
  height: 180px;
  min-height: 180px;
  overflow: hidden;
  text-decoration: none;
  contain: layout paint;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.product-thumb span {
  font-size: 2rem;
  font-weight: 700;
  color: #245073;
  font-family: "Iowan Old Style", Georgia, serif;
}
.product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}
.product-label-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.product-rental-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  background: #d4f2ef;
  color: #075956;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.product-title-link {
  color: #163857;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
}
.product-title-link:hover { color: #0c9f9a; }
.product-summary {
  font-size: 0.875rem;
  color: #53687c;
  line-height: 1.55;
  margin: 4px 0 2px;
}
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.btn-inquire {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #163857;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.btn-inquire:hover { background: #245073; }
.btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #188754;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.btn-whatsapp:hover { background: #146c43; }

/* --- Product grid layout ---------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* --- Pagination (JS-generated) --------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}
.pagination-btn {
  min-width: 40px;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: #163857;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pagination-btn:hover:not(:disabled) { border-color: #163857; background: #163857; color: #fff; }
.pagination-btn.is-active { background: #163857; border-color: #163857; color: #fff; }
.pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination-ellipsis { color: #8ca1b4; padding: 0 4px; font-weight: 600; }

/* --- Gallery thumbs ------------------------------------------------------- */
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e2eaf1;
  background: #edf3f7;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumb.is-active { border-color: #163857; }

.about-map-panel {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 24px 50px rgba(13, 36, 56, 0.08);
}

.about-map-panel__header {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.94) 62%, rgba(230, 247, 246, 0.85) 100%);
}

.about-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e2eaf1;
  background: #edf3f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.about-map-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 84px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 399;
}

.about-map-frame__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 500;
  padding: 9px 13px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 234, 241, 0.9);
  backdrop-filter: blur(10px);
  color: #163857;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
  letter-spacing: 0.03em;
}

.about-leaflet-map {
  height: 390px;
}

.about-leaflet-map .leaflet-control-zoom {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(13, 36, 56, 0.14);
}

.about-leaflet-map .leaflet-top,
.about-leaflet-map .leaflet-bottom {
  z-index: 420;
}

.about-leaflet-map .leaflet-top .leaflet-control {
  margin-top: 16px;
}

.about-leaflet-map .leaflet-left .leaflet-control {
  margin-left: 16px;
}

.about-leaflet-map .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 0;
  color: #163857;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.96);
}

.about-leaflet-map .leaflet-control-zoom a:first-child {
  border-bottom: 1px solid #e2eaf1;
}

.about-leaflet-map .leaflet-control-attribution {
  margin: 0;
  padding: 5px 10px;
  border-radius: 12px 0 0 0;
  background: rgba(255, 255, 255, 0.88);
  color: #53687c;
  font-size: 11px;
}

.about-leaflet-map .leaflet-tooltip {
  border: 0;
  border-radius: 9999px;
  background: rgba(22, 56, 87, 0.94);
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 36, 56, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
}

.about-leaflet-map .leaflet-tooltip-top::before {
  border-top-color: rgba(22, 56, 87, 0.94);
}

.jyna-map-pin-wrapper {
  background: transparent;
  border: 0;
}

.jyna-map-pin {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0c9f9a 0%, #163857 100%);
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(13, 36, 56, 0.26);
}

.jyna-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  background: rgba(12, 159, 154, 0.18);
  z-index: -1;
}

/* --- Product detail content (renderDetailContent) -------------------------- */
.detail-copy-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #2b465d;
}
.detail-copy-body p { margin: 0 0 0.75rem; }
.detail-section { margin: 1.25rem 0 0; }
.detail-section-title {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #163857;
  margin: 0 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #e6f7f6;
}
.detail-section-list {
  margin: 0.4rem 0 0 1.1rem;
  list-style: disc;
  color: #2b465d;
}
.detail-section-list li { margin-bottom: 0.3rem; }
.detail-spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: 0.4rem; }
.detail-spec-table th {
  text-align: left;
  padding: 6px 10px 6px 0;
  color: #53687c;
  font-weight: 600;
  width: 38%;
  vertical-align: top;
  border-bottom: 1px solid #e2eaf1;
}
.detail-spec-table td {
  padding: 6px 0 6px 10px;
  color: #163857;
  font-weight: 500;
  vertical-align: top;
  border-bottom: 1px solid #e2eaf1;
}

/* --- Loading / empty states ------------------------------------------------ */
.loading-copy { color: #53687c; font-style: italic; font-size: 0.95rem; }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state h2, .empty-state h3 { color: #163857; margin-bottom: 0.5rem; }
.empty-state p { color: #53687c; margin-bottom: 1.25rem; }

/* --- Mobile sticky contact bar --------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(13, 36, 56, 0.16);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
.mobile-bar__call { background: #163857; }
.mobile-bar__call:hover { background: #245073; }
.mobile-bar__whatsapp { background: #188754; }
.mobile-bar__whatsapp:hover { background: #146c43; }

@media (max-width: 767px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 56px; }
}

/* --- FAQ accordion --------------------------------------------------------- */
details.faq-item {
  border: 1px solid #e2eaf1;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
details.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.975rem;
  color: #163857;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: #0c9f9a;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { content: "-"; }
details.faq-item > p, details.faq-item > div {
  padding: 0 1.25rem 1rem;
  color: #2b465d;
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}
details.faq-item a { color: #0c9f9a; text-decoration: underline; }

/* --- Contact form inputs --------------------------------------------------- */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #10273c;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #0c9f9a;
  box-shadow: 0 0 0 3px rgba(12, 159, 154, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Shared shell + mobile redesign */
body {
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.site-notice {
  position: relative;
  z-index: 45;
}

.site-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.site-header__inner {
  position: relative;
}

.site-brand {
  min-width: 0;
}

.site-header__mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

.site-header__quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 9999px;
  background: #163857;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.mobile-menu-toggle,
.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #edf3f7;
  color: #163857;
  cursor: pointer;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(13, 36, 56, 0.45);
  z-index: 69;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: -20px 0 60px rgba(13, 36, 56, 0.18);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-panel__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  gap: 18px;
}

.mobile-menu-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-menu-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mobile-menu-panel__brand-copy {
  min-width: 0;
}

.mobile-menu-panel__notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #edf3f7;
  color: #53687c;
  font-size: 0.86rem;
  line-height: 1.5;
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
}

.mobile-menu-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  color: #163857;
  background: #fff;
  border: 1px solid #e2eaf1;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-nav__link.is-active {
  background: #163857;
  border-color: #163857;
  color: #fff;
}

.mobile-menu-panel__actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.mobile-menu-panel__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.mobile-menu-panel__actions .menu-call {
  background: #163857;
  color: #fff;
}

.mobile-menu-panel__actions .menu-whatsapp {
  background: #188754;
  color: #fff;
}

.mobile-menu-panel__actions .menu-contact {
  background: #edf3f7;
  color: #163857;
}

.detail-accordion {
  margin: 1rem 0 0;
  border: 1px solid #dbe5ee;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.detail-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #163857;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.detail-accordion summary::-webkit-details-marker {
  display: none;
}

.detail-accordion summary::after {
  content: "+";
  color: #0c9f9a;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.detail-accordion[open] summary::after {
  content: "-";
}

.detail-accordion__content {
  padding: 0 1.1rem 1rem;
}

.compact-card-grid > *,
.category-card-grid > * {
  min-width: 0;
}

.mobile-cta {
  overflow: hidden;
}

.mobile-cta.bg-teal p {
  color: #0d2438;
}

.mobile-cta.bg-navy p {
  color: rgba(255, 255, 255, 0.94);
}

.catalog-chip-row {
  scrollbar-width: none;
}

.catalog-chip-row::-webkit-scrollbar {
  display: none;
}

@media (max-width: 767px) {
  .site-notice {
    background: #10273c;
  }

  .site-notice__inner {
    min-height: 42px;
  }

  .site-notice__text,
  .site-notice__inner > p {
    font-size: 0.78rem;
    line-height: 1.3;
    max-width: 100%;
  }

  .site-notice__actions {
    display: none;
  }

  .site-header__mobile {
    display: flex;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
  }

  .site-brand .text-lg {
    font-size: 1rem;
  }

  .site-brand .text-xs {
    display: none;
  }

  .page-home .home-hero,
  .page-products .page-hero,
  .page-rentals .page-hero,
  .page-about .page-hero {
    padding-top: 1.75rem;
    padding-bottom: 1.9rem;
  }

  .page-home .hero-gradient {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .page-home .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .page-home .hero-actions a {
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-home .hero-action-tertiary {
    display: none;
  }

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

  .page-home .hero-metrics > .w-px {
    display: none;
  }

  .page-home .hero-metrics > div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.9rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .page-home .hero-metrics .text-2xl {
    font-size: 1.15rem;
  }

  .page-home .hero-metrics .text-xs {
    line-height: 1.45;
  }

  .page-home .hero-panel {
    min-height: 250px !important;
    border-radius: 24px;
  }

  .page-home main,
  .page-products main,
  .page-product main,
  .page-rentals main,
  .page-about main {
    padding-top: 1.25rem !important;
    padding-bottom: 4.75rem !important;
  }

  .page-home main {
    gap: 3.25rem !important;
  }

  .compact-card-grid,
  .category-card-grid,
  .rentals-process-grid,
  .rentals-category-grid {
    gap: 12px !important;
  }

  .compact-card-grid > *,
  .category-card-grid > *,
  .rentals-process-grid > *,
  .rentals-category-grid > * {
    padding: 1rem !important;
    border-radius: 18px !important;
  }

  .page-products .catalog-toolbar {
    position: sticky;
    top: 70px;
    z-index: 18;
    border-radius: 20px !important;
    padding: 0.95rem !important;
    box-shadow: 0 14px 24px rgba(13, 36, 56, 0.08);
  }

  .page-products .catalog-chip-row {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 8px !important;
    margin-inline: -0.1rem;
    padding-bottom: 2px;
  }

  .page-products .catalog-chip-row .filter-chip {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .page-products .catalog-helper-row {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .page-products .catalog-helper-row p {
    display: none;
  }

  .page-products #product-count {
    margin-top: 1rem;
    margin-bottom: 0.9rem;
  }

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

  .product-card {
    border-radius: 20px;
  }

  .product-thumb,
  .product-thumb--link {
    height: 148px;
  }

  .product-thumb img {
    padding: 10px;
  }

  .product-body {
    padding: 0.95rem;
    gap: 0.2rem;
  }

  .product-title-link {
    font-size: 0.98rem;
  }

  .product-summary {
    font-size: 0.83rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .product-actions {
    gap: 8px;
    padding-top: 8px;
  }

  .btn-inquire,
  .btn-whatsapp {
    min-height: 40px;
    font-size: 0.82rem;
    padding: 0.5rem 0.65rem;
  }

  .pagination {
    justify-content: stretch;
    gap: 8px;
  }

  .pagination-ellipsis {
    display: none;
  }

  .pagination-btn {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    font-size: 0.82rem;
    padding: 0.55rem 0.5rem;
  }

  .page-product .product-detail-page-shell {
    padding-top: 1rem !important;
  }

  .page-product #product-detail-shell {
    padding: 1rem !important;
    border-radius: 24px !important;
  }

  .page-product .detail-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
  }

  .page-product .detail-actions > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .page-product .product-main-visual {
    min-height: 240px;
    border-radius: 22px;
  }

  .page-product .product-main-visual img {
    max-height: 270px;
    padding: 14px;
  }

  .product-gallery-thumbs {
    gap: 6px;
  }

  .gallery-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .detail-copy-body {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .page-rentals .rentals-hero-card {
    padding: 1rem !important;
    border-radius: 24px !important;
  }

  .page-rentals .rentals-stat-grid {
    grid-template-columns: 1fr;
    gap: 10px !important;
  }

  .page-rentals .rentals-stat-grid > div {
    padding: 1rem !important;
  }

  .page-rentals .mobile-cta,
  .page-products .mobile-cta,
  .page-home .mobile-cta {
    padding: 1.15rem !important;
    border-radius: 24px !important;
  }

  .page-rentals .mobile-cta > div:last-child,
  .page-products .mobile-cta > div:last-child,
  .page-home .mobile-cta > div:last-child,
  .page-about .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
    width: 100%;
  }

  .page-rentals .mobile-cta > div:last-child > :last-child,
  .page-products .mobile-cta > div:last-child > :last-child,
  .page-home .mobile-cta > div:last-child > :last-child,
  .page-about .contact-actions > :last-child {
    grid-column: 1 / -1;
  }

  .page-rentals .mobile-cta a,
  .page-products .mobile-cta a,
  .page-home .mobile-cta a,
  .page-about .contact-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .page-about .about-map-panel {
    border-radius: 24px !important;
  }

  .page-about .about-map-panel__header {
    padding: 1rem !important;
  }

  .page-about .about-map-frame {
    border-radius: 20px;
  }

  .page-about .about-map-frame__badge {
    top: 12px;
    right: 12px;
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .page-about .about-leaflet-map {
    height: 320px;
  }

  .page-about .about-intro,
  .page-about .contact-section,
  .page-home .home-about {
    gap: 1rem !important;
  }

  .page-about .contact-form-panel,
  .page-products .catalog-toolbar,
  .page-home .home-offer-panel {
    border-radius: 22px !important;
  }

  .page-about .contact-form-panel {
    padding: 1rem !important;
  }

  .page-about .contact-info-panel .space-y-3,
  .page-home .home-about-copy .space-y-3 {
    display: grid;
    gap: 10px !important;
  }

  .page-about .contact-info-panel .space-y-3 > *,
  .page-home .home-about-copy .space-y-3 > * {
    padding: 0.9rem !important;
  }

  .page-about .contact-form-panel .grid.sm\\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .page-about .contact-form-panel .space-y-5 {
    gap: 0.9rem;
  }

  .mobile-bar {
    height: 52px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 36, 56, 0.16);
  }

  .mobile-bar a {
    font-size: 0.88rem;
    font-weight: 800;
  }

  .mobile-bar__call {
    background: #163857;
  }

  .mobile-bar__whatsapp {
    background: #188754;
  }

  body {
    padding-bottom: 72px;
  }

footer .grid {
    gap: 1.5rem !important;
  }
}

/* Accessibility contrast fixes for Lighthouse text/background checks. */
.bg-teal {
  background-color: #08736f !important;
}

.hover\:bg-teal-dark:hover {
  background-color: #065f5b !important;
}

.text-teal,
.group:hover .group-hover\:text-teal {
  color: #075e5b !important;
}

.text-teal-dark {
  color: #064f4c !important;
}

.bg-teal-soft {
  background-color: #dff3f1 !important;
}
