/* =====================================================
   Splash Weird – Global UI Styles (DROP-IN)
   ===================================================== */

/* ---------- Global reset / base ---------- */
* { box-sizing: border-box; }

html, body { height: 100%; }

:root{
  --nav-height-desktop: 66px;
  --nav-height-mobile: 54px;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  color: #0b1220;
  background: #fff;
  padding-top: var(--nav-height-desktop);
}

/* Remove default link underline globally */
a{
  color: inherit;
  text-decoration: none;
}

/* Optional underline utility */
.link{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link.subtle{ opacity: .8; }

/* ---------- Navbar ---------- */
.site-navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 18px;
  border-bottom: 1px solid #e7e7e7;
  background: #fff;

  /* keep navbar visible while scrolling */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;

  /* critical for dropdown clickability above page content */
  z-index: 5000;

  /* prevents dropdown clipping if any parent introduces overflow */
  overflow: visible;
  transform: none;
}

.nav-left{
  min-width: 0;
}

.nav-left a,
.nav-brand{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #0b1220;
}

.nav-brand{
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}

.navbar-logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
  body{
    padding-top: var(--nav-height-mobile);
  }

  .site-navbar{
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav-brand{
    min-height: 42px;
  }

  .navbar-logo {
    max-height: 42px;
  }
}

.nav-brand:hover .navbar-logo,
.nav-brand:focus-visible .navbar-logo {
  opacity: 0.92;
  transform: scale(1.03);
}

.nav-right{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.nav-user{
  opacity: 0.7;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
}

/* ---------- Buttons ---------- */
button,
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;

  text-decoration: none;
}

.nav-right .btn{
  padding: 4px 10px;
  font-size: 0.85rem;
  line-height: 1.2;
}

@media (max-width: 768px){
  .nav-right .btn{
    padding: 3px 8px;
    font-size: 0.8rem;
  }
}

.navbar-toggler{
  padding: 4px 6px;
  font-size: 0.9rem;
}

.navbar-collapse{
  align-items: center;
}

.btn-primary{
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn:hover,
button:hover{
  opacity: 0.92;
}

/* Make anchor buttons never look like links */
.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  text-decoration: none;
}

/* Full width helper */
.btn-block{
  width: 100%;
  display: inline-flex;
  text-align: center;
}

/* ---------- Layout container ---------- */
.sw-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* ---------- Base form controls ---------- */
input,
select,
textarea{
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 14px;
}

select{ background-color: #fff; }

/* ---------- Cards ---------- */
.card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
}

/* Small muted text helper */
.muted{
  opacity: 0.75;
}

/* ---------- Search page (home) ---------- */
.search-shell{
  max-width: 1100px;
  margin: 0 auto;
}

.page-title{
  font-size: 44px;
  margin: 8px 0 6px;
  letter-spacing: -0.02em;
}

.page-subtitle{
  opacity: 0.75;
  margin-bottom: 20px;
}

.search-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
}

/* ---------- Grid rows ---------- */
.search-row{
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.search-row-3{ grid-template-columns: 2fr 1fr 1fr; }
.search-row-2{ grid-template-columns: 1fr 1fr; }

.search-row-actions{
  grid-template-columns: 1fr auto;
  align-items: end;
}

.search-row > *{ min-width: 0; }

/* ---------- Fields ---------- */
.field{
  display: flex;
  flex-direction: column;
}

label{
  font-weight: 600;
  margin-bottom: 6px;
}

.hint{
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
}

/* ---------- Divider ---------- */
.divider{
  height: 1px;
  background: #eee;
  margin: 6px 0 18px;
}

/* ---------- Actions ---------- */
.actions{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
}

/* ---------- Results ---------- */
.result-card{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.result-title{ font-weight: 700; }

.result-meta{
  opacity: 0.7;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px){
  .search-row-3{ grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (max-width: 900px){
  .search-row-3,
  .search-row-2,
  .search-row-actions{
    grid-template-columns: 1fr;
  }

  .page-title{ font-size: 32px; }

  .actions .btn{ width: 100%; }
}

/* ---------- Date picker affordance ---------- */
input[name="desired_start"],
input[name="desired_end"],
input[name="alt_start"],
input[name="alt_end"]{
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 18H5V9h14v11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* ---------- Auth pages ---------- */
.auth-shell{
  max-width: 560px;
  margin: 0 auto;
  padding-top: 18px;
}

.auth-card{ padding: 22px; }

.auth-title{
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.auth-subtitle{ margin: 0; opacity: .75; }

.auth-divider{
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .6;
}
.auth-divider::before,
.auth-divider::after{
  content: "";
  height: 1px;
  background: #e6e6e6;
  flex: 1;
}
.auth-divider span{ font-size: 13px; }

.auth-form{ margin-top: 4px; }

.auth-field{ margin-bottom: 12px; }


.dob-group{
  display: flex;
  gap: 8px;
}

.dob-group select{
  flex: 1;
}

@media (max-width: 640px){
  .dob-group{
    display: grid;
    grid-template-columns: 1fr;
  }
}

.auth-label{
  display: block;
  font-size: 14px;
  margin: 0 0 6px;
  opacity: .85;
}

.req{ color: #b00020; margin-left: 2px; }

.auth-field input,
.auth-field select,
.auth-field textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus{
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}

.auth-field-error{
  margin-top: 6px;
  font-size: 13px;
  color: #b00020;
}

.auth-help{
  margin-top: 6px;
  font-size: 12px;
  opacity: .7;
}

.auth-error{
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f0c2c2;
  background: #fff2f2;
  color: #8a0000;
  font-size: 13px;
}

.auth-legal{
  margin: 14px 0 0;
  font-size: 13px;
  opacity: .75;
}

.auth-footer{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.auth-footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

/* Messages helpers (simple) */
.auth-messages {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-success { color: #155724; }
.alert-error { color: #721c24; }

/* =====================================================
   USER DROPDOWN (NAV) – CLICKABLE + RELIABLE
   ===================================================== */

.user-menu{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Large enough click target */
.user-menu-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;

  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.user-menu-btn:hover{ opacity: 0.92; }

.user-menu-btn.is-disabled,
.user-menu-btn[aria-disabled="true"]{
  opacity: 0.5;
  cursor: not-allowed;
}

.user-menu-btn.is-disabled .chev,
.user-menu-btn[aria-disabled="true"] .chev{
  display: none;
}

/* Dropdown menu panel */
.user-menu-dropdown{
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);

  /* ✅ must be above everything */
  z-index: 9999;

  /* ✅ make sure it can receive clicks */
  pointer-events: auto;

  padding: 8px;
}

.user-menu-dropdown.is-open{ display: block; }

.user-menu-item{
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: left;

  background: none;
  border: none;
  cursor: pointer;

  color: #111;
  text-decoration: none;
  border-radius: 10px;
}

.user-menu-item:hover{ background: #f6f6f6; }

.user-menu-divider{
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

.user-menu-logout{ font-weight: 600; }

/* CTA item inside dropdown */
.user-menu-item-cta{
  font-weight: 800;
  background: #111;
  color: #fff;
  border-radius: 12px;
  margin: 8px;
  padding: 10px 12px;
  text-align: center;
}
.user-menu-item-cta:hover{
  background: #111;
  opacity: 0.92;
}

/* ---------- Global footer ---------- */
.site-footer {
  background: #fff;
}

.site-footer-link {
  color: #0b1220;
  text-decoration: none;
  font-weight: 500;
}

.site-footer-link:hover,
.site-footer-link:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  transition: all 0.15s ease;
}

.site-footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus {
  background: #0b1220;
  color: #fff;
  border-color: #0b1220;
  text-decoration: none;
}

/* ---------- Search fallback styling ---------- */
.search-fallback-alert {
  background: #fff9e8;
  color: #5a4300;
}

.listing-card--alternative {
  border: 1px dashed #e6d5a4 !important;
}

/* ===============================
   Provider onboarding CTAs
   =============================== */

.provider-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;

  /* ✅ solid border like dropdown */
  border: 1px solid #111;
  background: #fff;
  color: #111;

  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: 8px;
}

.provider-cta:hover {
  background: #111;
  color: #fff;
}

/* Keep class for semantics, but visually identical */
.provider-cta.secondary {
  border: 1px solid #111;
}


/* =====================================================
   Stripe requirements list (user friendly)
   ===================================================== */

.stripe-requirements{
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}

.stripe-requirements li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
}

.stripe-requirements li::before{
  content: "•";
  font-weight: 900;
  line-height: 1.1;
}

/* ===============================
   Provider services list
   =============================== */

.services-page{
  max-width: 1150px;
  margin: 30px auto;
}

.services-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.services-list-shell{
  padding: 12px;
  border-radius: 14px;
}

.services-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px;
}

.service-row{
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.service-main{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.service-image{
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-image-placeholder{
  background: #f5f5f5;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.service-content{
  min-width: 0;
}

.service-title{
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.service-title:hover{
  text-decoration: underline;
}

.service-category{
  margin: 4px 0 12px;
}

.service-meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.service-meta-item{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-meta-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
  font-weight: 700;
}

.service-status-pill{
  border: 1px solid #111;
  color: #111;
  border-radius: 999px;
  padding: 2px 10px;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
}

.service-tags-wrap{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge{
  display: inline-flex;
  color: #111;
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  background: #fafafa;
}

.service-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-actions .provider-cta{
  margin-top: 0;
  width: 100%;
}

.service-actions > *{
  flex: 1 1 180px;
}

.service-action-delete{
  border-color: #d23d3d;
  color: #b42323;
}

.service-action-delete:hover{
  background: #b42323;
  color: #fff;
  border-color: #b42323;
}

@media (max-width: 920px){
  .services-list{
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .services-header{
    flex-direction: column;
    align-items: stretch;
  }

  .services-header .provider-cta{
    width: 100%;
    margin-top: 0;
  }

  .service-meta{
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 760px){
  .services-list{
    grid-template-columns: 1fr;
  }

  .service-main{
    flex-direction: column;
  }

  .service-meta{
    grid-template-columns: 1fr;
  }
}

.listing-card-image-link {
  display: block;
}

.listing-detail-shell {
  border-radius: 1rem;
}

.listing-detail-image-link {
  display: block;
}

.listing-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.listing-card-image--placeholder {
  background: #f4f6f8;
}

.listing-detail-image {
  width: 100%;
  height: clamp(260px, 45vw, 420px);
  border-radius: 0.75rem;
  object-fit: cover;
}

.listing-gallery-grid__link {
  display: block;
}

.listing-gallery-grid__image {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.service-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
}

.service-detail-meta__item {
  color: #1f2937;
}


.listing-detail-request-btn {
  min-width: 170px;
}

@media (max-width: 767.98px) {
  .service-detail-meta {
    grid-template-columns: 1fr;
  }
}

.unit-available-card {
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(15, 23, 42, 0.08);
}

.unit-available-card__image {
  height: 180px;
  object-fit: cover;
}

.unit-available-card .card-body {
  display: grid;
  gap: 0.25rem;
}


.garage-page .badge{ color:#111; }
.garage-page .unit-card .muted{ color:#111; opacity:.85; }

.menu-badge{
  position: absolute;
  top: -8px;
  left: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #d90429;
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.inquiry-page .inquiry-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.inquiry-eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:#6b7280;margin:0 0 2px;}
.inquiry-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:16px;}
.inquiry-meta-list{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.inquiry-meta-list li{display:flex;justify-content:space-between;gap:10px;border-bottom:1px solid #f1f1f1;padding-bottom:8px;}
.inquiry-meta-list li span{color:#6b7280;}
.inquiry-section-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#f9fafb;
  color:#111827;
  font-size:1rem;
  font-weight:600;
  text-align:left;
  padding:.65rem .85rem;
  cursor:pointer;
  transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.inquiry-section-toggle:hover{
  background:#f3f4f6;
  border-color:#d1d5db;
}
.inquiry-section-toggle:focus-visible{
  outline:0;
  border-color:#93c5fd;
  box-shadow:0 0 0 .2rem rgba(59,130,246,.2);
}
.inquiry-section-toggle-indicator{
  min-width:1.25rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  line-height:1;
  color:#374151;
}
.inquiry-section-toggle .indicator-expanded{
  display:none;
}
.inquiry-section-toggle[aria-expanded="true"] .indicator-collapsed{
  display:none;
}
.inquiry-section-toggle[aria-expanded="true"] .indicator-expanded{
  display:inline;
}
.inquiry-action-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;}
.inquiry-thread{display:grid;gap:10px;max-height:460px;overflow:auto;padding-right:4px;}
.message-bubble{border:1px solid #e5e7eb;border-radius:12px;padding:10px;background:#fff;max-width:88%;width:100%;justify-self:start;text-align:left;}
.message-bubble.is-me{background:#f3f8ff;border-color:#cfe1ff;justify-self:end;}
.inquiry-compose textarea{margin-bottom:10px;}
.quote-summary-card{
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px;
  background:#f9fafb;
}
.request-list{display:grid;gap:12px;}
.request-row{
  display:grid;
  grid-template-columns:minmax(220px, 260px) minmax(0, 1fr);
  grid-template-areas:
    "media title"
    "media details";
  align-items:stretch;
  gap:16px;
  padding:14px;
  text-decoration:none;
}
.request-row-media{
  grid-area:media;
  min-height:100%;
}
.request-row-main{
  grid-area:details;
  display:grid;
  gap:8px;
  min-width:0;
}
.request-row-title-wrap{
  grid-area:title;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.request-row-title{font-size:1.05rem;line-height:1.3;}
.request-row-description{line-height:1.4;}
.request-row-subtitle{line-height:1.4;}
.request-row-meta{color:#4b5563;}
.request-row-right{
  display:flex;
  justify-content:flex-end;
}
.request-row-link{font-weight:600;}
.reservations-filter-form{min-width:180px;}
.reservation-card-image{
  width:100%;
  height:100%;
  min-height:172px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#f8fafc;
}
.reservation-card-image-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  font-size:.875rem;
  font-weight:600;
}
.status-pill{background:#eef2ff;color:#3730a3;padding:4px 10px;border-radius:999px;font-size:12px;font-weight:700;}
.bg-orange{
  background:#fd7e14 !important;
}
.inquiry-time-highlight{
  border:1px solid #f6c56f;
  border-radius:10px;
  background:#fff7e8;
  padding:10px;
}
@media (max-width: 767.98px){
  .request-row{
    grid-template-columns:minmax(0, 1fr);
    grid-template-areas:
      "title"
      "media"
      "details";
    gap:12px;
    align-items:stretch;
  }
  .request-row-media{
    width:100%;
    min-height:0;
  }
  .request-row-title-wrap{
    align-items:center;
  }
  .reservation-card-image{
    width:100%;
    height:180px;
    min-height:180px;
  }
  .request-row-right{
    justify-content:flex-start;
  }
}
@media (max-width: 900px){.inquiry-grid{grid-template-columns:1fr;}}

.inquiry-thread--left{justify-items:start;}
.inquiry-thread--left .message-bubble{width:100%;text-align:left;}
.inquiry-mobile-tabs{
  display:none;
  margin-bottom:12px;
  border-bottom:0;
}
.inquiry-mobile-tabs .btn{
  font-weight:600;
}
.notification-card{border-left:4px solid #0d6efd;padding:12px;}

@media (max-width: 900px){
  .inquiry-mobile-tabs{
    display:flex;
    width:100%;
    flex-wrap:nowrap;
  }
  .inquiry-mobile-tabs .btn{
    flex:1 1 50%;
    white-space:nowrap;
    text-align:center;
    padding:.5rem .85rem;
    line-height:1.2;
  }
  .inquiry-grid .inquiry-panel{
    display:none;
  }
  .inquiry-grid .inquiry-panel.active,
  .inquiry-grid .inquiry-panel.show{
    display:block;
  }
}

@media (min-width: 901px){
  .inquiry-grid .inquiry-panel{
    display:block !important;
    opacity:1 !important;
  }
}

.provider-dashboard{
  max-width: 1160px;
}

.provider-onboarding-card{
  padding: 22px;
}

.provider-progress{
  height: 12px;
  border-radius: 999px;
  background: #edf0f3;
}

.provider-progress .progress-bar{
  background: #111;
}

.provider-progress-value{
  font-size: 1.1rem;
  font-weight: 700;
}

.provider-check-item{
  padding: 10px 12px;
  border: 1px solid #ececec;
  border-radius: 12px;
  font-size: 14px;
  background: #fafafa;
}

.provider-check-item.is-complete{
  border-color: #cee5d4;
  background: #f4fbf6;
}


.provider-check-link{
  display:block;
  color: inherit;
  text-decoration: none;
}

.provider-check-link:hover{
  color: inherit;
  border-color: #111;
}

.provider-check-link:focus-visible{
  outline: 2px solid #111;
  outline-offset: 2px;
}
.provider-action-card{
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
}

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

.provider-action-card-link:hover{
  color: inherit;
  text-decoration: none;
}

.provider-action-card-link:focus-visible{
  outline: 2px solid #111;
  outline-offset: 2px;
}

.provider-action-card--clickable{
  cursor: pointer;
}

.provider-action-card--clickable:focus-within{
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.15);
}

.provider-action-card--clickable.is-active{
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.15);
  background: #f9fbff;
}

.provider-action-card h4{
  font-size: 1.1rem;
}

.provider-action-meta{
  font-weight: 600;
  font-size: 14px;
}

.provider-earnings-filters .btn{
  white-space: nowrap;
}

.earnings-chart-shell{
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.earnings-chart{
  width: 100%;
  height: 220px;
}

@media (max-width: 767px){
  .provider-earnings-card-row .provider-action-card{
    padding: 10px;
  }

  .provider-earnings-card-row .provider-action-card h4{
    font-size: 0.9rem;
  }

  .provider-earnings-card-row .provider-progress-value{
    font-size: 0.95rem;
  }

  .provider-earnings-card-row .provider-action-meta,
  .provider-earnings-card-row .muted{
    font-size: 12px;
  }

  .provider-earnings-filters{
    row-gap: 10px;
  }
}

.provider-cta.disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

.provider-schedule-filter{
  padding: 16px;
}

.provider-status-check{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
}

.provider-status-check input{
  width: auto;
}

.provider-calendar-grid{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.provider-day-card{
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  min-height: 126px;
}

.provider-day-card.is-today{
  border-color: #111;
  box-shadow: 0 0 0 1px #111 inset;
}

.provider-week-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.provider-week-day{
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px;
}

.provider-week-item{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 10px;
}

@media (max-width: 1200px){
  .provider-calendar-grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 992px){
  .provider-calendar-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .provider-week-list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .provider-calendar-grid{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sw-star-rating{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sw-star{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 0;
}

.sw-star__icon{
  width: 2rem;
  height: 2rem;
  display: block;
  fill: #d1d5db;
  transition: fill 0.15s ease, transform 0.15s ease;
}

.sw-star:hover .sw-star__icon,
.sw-star:focus-visible .sw-star__icon{
  transform: scale(1.05);
}

.sw-star.is-filled .sw-star__icon{
  fill: #f5b301;
}

.sw-star:focus-visible{
  outline: 2px solid #111827;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
