/* ========================================
   Javis Reviews — Frontend Styles
   Elegant, refined design for hospitality
   ======================================== */


.strw-widget {
  --strw-accent: #C8A96E;
  --strw-accent-rgb: 200, 169, 110;
}

.strw-widget {
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
  color: #2c2c2c;
  max-width: 1200px;
  margin: 0 auto;
}
.strw-widget *, .strw-widget *:before, .strw-widget *:after { box-sizing: inherit; }

/* ======== THEME: ELEGANT (default) ======== */
.strw-theme-elegant {
  --strw-bg:         #faf9f7;
  --strw-card-bg:    #ffffff;
  --strw-card-hover: #fffef9;
  --strw-border:     #e8e2d8;
  --strw-text:       #2a2118;
  --strw-muted:      #8a7a69;
  --strw-header-bg:  #f5f1eb;
  --strw-star-full:  #C8A96E;
  --strw-star-empty: #ddd2c3;
  --strw-avatar-bg:  var(--strw-accent);
  --strw-radius:     12px;
  --strw-shadow:     0 4px 24px rgba(0,0,0,0.07);
}

/* ======== THEME: MODERN ======== */
.strw-theme-modern {
  --strw-bg:         #f8fafc;
  --strw-card-bg:    #ffffff;
  --strw-card-hover: #f0f9ff;
  --strw-border:     #e2e8f0;
  --strw-text:       #0f172a;
  --strw-muted:      #64748b;
  --strw-header-bg:  #f1f5f9;
  --strw-star-full:  #f59e0b;
  --strw-star-empty: #e2e8f0;
  --strw-avatar-bg:  #3b82f6;
  --strw-radius:     16px;
  --strw-shadow:     0 2px 16px rgba(0,0,0,0.08);
}

/* ======== THEME: MINIMAL ======== */
.strw-theme-minimal {
  --strw-bg:         #ffffff;
  --strw-card-bg:    #fafafa;
  --strw-card-hover: #f5f5f5;
  --strw-border:     #ebebeb;
  --strw-text:       #111111;
  --strw-muted:      #888888;
  --strw-header-bg:  #f5f5f5;
  --strw-star-full:  #222222;
  --strw-star-empty: #ddd;
  --strw-avatar-bg:  #222222;
  --strw-radius:     4px;
  --strw-shadow:     none;
}
.strw-theme-minimal .strw-card { border: 1px solid var(--strw-border); }

/* ======== THEME: BOLD ======== */
.strw-theme-bold {
  --strw-bg:         #0a0a0a;
  --strw-card-bg:    #161616;
  --strw-card-hover: #1f1f1f;
  --strw-border:     #2a2a2a;
  --strw-text:       #f0f0f0;
  --strw-muted:      #888888;
  --strw-header-bg:  #111111;
  --strw-star-full:  var(--strw-accent);
  --strw-star-empty: #333333;
  --strw-avatar-bg:  var(--strw-accent);
  --strw-radius:     8px;
  --strw-shadow:     0 4px 32px rgba(0,0,0,0.4);
}
.strw-theme-bold .strw-card-name { color: #ffffff; }
.strw-theme-bold .strw-summary { border-color: #2a2a2a; }
.strw-theme-bold .strw-cta-bar { border-top-color: #2a2a2a; }

/* ======== SUMMARIES ======== */
.strw-summaries {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.strw-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--strw-card-bg);
  border: 1px solid var(--strw-border);
  border-radius: var(--strw-radius);
  text-decoration: none;
  flex: 1;
  min-width: 220px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.strw-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--strw-accent-rgb),0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.strw-summary:hover::before { opacity: 1; }
.strw-summary:hover {
  border-color: rgba(var(--strw-accent-rgb), 0.4);
  box-shadow: var(--strw-shadow);
  transform: translateY(-2px);
}
.strw-summary-logo svg { display: block; }
.strw-ta-badge {
  width: 36px; height: 36px;
  background: #34E0A1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.strw-summary-data { flex: 1; }
.strw-summary-name {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--strw-text);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.strw-summary-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
}
.strw-summary-row strong { color: var(--strw-text); font-size: 1.05rem; }
.strw-muted { color: var(--strw-muted); font-size: 0.78rem; }
.strw-summary-arrow {
  color: var(--strw-muted);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.strw-summary:hover .strw-summary-arrow { opacity: 1; transform: translateX(0); }

/* ======== STARS ======== */
.strw-stars-sm, .strw-card-stars {
  display: inline-flex;
  gap: 1px;
}
.strw-star { font-size: 13px; line-height: 1; }
.strw-star.full  { color: var(--strw-star-full); }
.strw-star.half  { color: var(--strw-star-full); opacity: 0.55; }
.strw-star.empty { color: var(--strw-star-empty); }
.strw-stars-ta .strw-star.full { color: #00AA6C; }
.strw-stars-ta .strw-star.half { color: #00AA6C; }

/* ======== GRID LAYOUTS ======== */
.strw-layout-grid .strw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.strw-layout-list .strw-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strw-layout-masonry .strw-reviews-grid {
  columns: 3;
  column-gap: 20px;
}
.strw-layout-masonry .strw-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* ======== CARD ======== */
.strw-card {
  background: var(--strw-card-bg);
  border: 1px solid var(--strw-border);
  border-radius: var(--strw-radius);
  padding: 22px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.strw-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--strw-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.strw-card:hover {
  background: var(--strw-card-hover);
  border-color: rgba(var(--strw-accent-rgb), 0.3);
  box-shadow: var(--strw-shadow);
  transform: translateY(-3px);
}
.strw-card:hover::after { transform: scaleX(1); }

.strw-featured {
  border-color: rgba(var(--strw-accent-rgb), 0.4);
  background: linear-gradient(135deg, var(--strw-card-bg), rgba(var(--strw-accent-rgb), 0.04));
}
.strw-featured::after { transform: scaleX(0.6); }
.strw-featured-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  max-width: 100%;
  margin: 0 0 3px;
  padding: 3px 9px;
  border: 1px solid rgba(var(--strw-accent-rgb), 0.25);
  border-radius: 20px;
  background: rgba(var(--strw-accent-rgb), 0.1);
  color: var(--strw-accent);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.strw-card-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
}
.strw-card-avatar {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
}
.strw-card-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.strw-avatar-init {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--strw-avatar-bg);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}
.strw-card-meta { flex: 1; min-width: 0; }
.strw-card-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--strw-text);
  margin-bottom: 5px;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.strw-card-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.strw-card-date {
  font-size: 0.75rem;
  color: var(--strw-muted);
}
.strw-card-source {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  min-width: 88px;
  max-width: 128px;
  color: var(--strw-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.strw-source-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  line-height: 1;
}
.strw-source-label {
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.strw-ta-icon-sm {
  background: #34E0A1;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  color: #000;
  padding: 1px 4px;
}

.strw-card-text {
  margin: 0;
  padding: 14px 16px;
  background: var(--strw-bg);
  border-left: 3px solid rgba(var(--strw-accent-rgb), 0.35);
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--strw-muted);
  font-style: italic;
  position: relative;
}
.strw-card-text::before {
  content: '"';
  position: absolute;
  top: -6px; left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(var(--strw-accent-rgb), 0.25);
  line-height: 1;
}
.strw-card-text p:last-child { margin-bottom: 0; }

/* ======== TITLE ======== */
.strw-widget-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--strw-text);
  margin: 0 0 24px;
  text-align: center;
}

/* ======== SLIDER ======== */
.strw-layout-slider .strw-slider-outer {
  position: relative;
  overflow: hidden;
  padding: 4px 0 48px;
}
.strw-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.strw-slider-track .strw-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
}
.strw-sl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--strw-card-bg);
  border: 1px solid var(--strw-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--strw-text);
  box-shadow: var(--strw-shadow);
  z-index: 5;
  line-height: 1;
}
.strw-sl-prev { left: -20px; }
.strw-sl-next { right: -20px; }
.strw-sl-btn:hover {
  background: var(--strw-accent);
  border-color: var(--strw-accent);
  color: #fff;
}
.strw-sl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.strw-sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--strw-border);
  cursor: pointer;
  transition: all 0.25s;
}
.strw-sl-dot.active {
  background: var(--strw-accent);
  width: 22px;
  border-radius: 4px;
}

/* ======== CTA BAR ======== */
.strw-cta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--strw-border);
}
.strw-cta-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--strw-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.strw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.strw-cta-google {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #3c4043;
}
.strw-cta-google:hover {
  background: #f8f9fa;
  border-color: #4285F4;
  box-shadow: 0 2px 10px rgba(66,133,244,0.2);
  color: #3c4043;
}
.strw-cta-ta {
  background: #34E0A1;
  border: 1.5px solid transparent;
  color: #000;
}
.strw-cta-ta:hover {
  background: #00AA6C;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,170,108,0.3);
}
.strw-ta-cta-logo {
  font-size: 10px;
  font-weight: 900;
  background: rgba(0,0,0,0.15);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ======== EMPTY STATE ======== */
.strw-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--strw-muted);
}
.strw-empty span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.strw-empty p { margin: 0; font-size: 0.9rem; }
.strw-empty a { color: var(--strw-accent); }

/* ======== RESPONSIVE ======== */
@media (max-width: 860px) {
  .strw-layout-grid .strw-reviews-grid,
  .strw-layout-masonry .strw-reviews-grid {
    grid-template-columns: 1fr;
    columns: 1;
  }
  .strw-slider-track .strw-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .strw-card-top { flex-wrap: wrap; }
  .strw-card-meta { flex: 1 1 calc(100% - 59px); }
  .strw-card-source {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: flex-start;
    min-width: 0;
    max-width: none;
    margin-left: 59px;
    text-align: left;
  }
  .strw-featured-badge { margin: 0 4px 0 0; }
}

@media (max-width: 560px) {
  .strw-summaries { flex-direction: column; }
  .strw-slider-track .strw-card { flex: 0 0 88%; }
  .strw-cta-bar { flex-direction: column; align-items: flex-start; }
  .strw-sl-prev { left: 4px; }
  .strw-sl-next { right: 4px; }
}

/* Multi-brand/admin diagnostics */
.strw-admin-notice {
  padding: 12px 14px;
  border: 1px solid #d63638;
  border-left-width: 4px;
  background: #fff;
  color: #1d2327;
}
.strw-summary:not(a) { cursor: default; }
.strw-sl-dot {
  appearance: none;
  border: 0;
  padding: 0;
}
.strw-sl-dot:focus-visible,
.strw-sl-btn:focus-visible,
.strw-cta-btn:focus-visible,
.strw-summary:focus-visible {
  outline: 2px solid var(--strw-accent);
  outline-offset: 3px;
}

/* Javis Reviews 3.1: sizing is based on the available widget space. */
.strw-widget { min-width: 0; container-type: inline-size; font-family: inherit; }
.strw-widget .screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.strw-widget .strw-card { min-width: 0; overflow-wrap: anywhere; }
.strw-widget .strw-card-top { flex-wrap: wrap; }
.strw-widget .strw-card-meta { flex: 1 1 calc(100% - 59px); }
.strw-widget .strw-card-source {
  flex: 1 1 100%; flex-direction: row; justify-content: flex-start;
  min-width: 0; max-width: none; margin: 0; gap: 6px; text-align: start; flex-wrap: wrap;
}
.strw-widget .strw-card-name { font-family: inherit; font-weight: 600; }
.strw-widget .strw-card-stars { gap: 4px; flex-wrap: wrap; }
.strw-widget .strw-card-date { margin-inline-start: 4px; }
.strw-widget .strw-card-text { font-weight: 400; }
.strw-widget .strw-card-text p { margin: 0 0 10px; }
.strw-widget .strw-card-text p:last-child { margin-bottom: 0; }
.strw-widget .strw-card-text::before { pointer-events: none; }
.strw-widget .strw-review-link { display: block; color: inherit; text-decoration: none; font: inherit; }
.strw-widget .strw-review-link-hint { display: block; margin-top: 12px; font-size: 0.8rem; font-style: normal; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.strw-widget .strw-review-link:hover .strw-review-link-hint { text-decoration-thickness: 2px; }
.strw-widget .strw-review-link:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.strw-widget .strw-slider-outer { padding-bottom: 64px; }
.strw-widget .strw-slider-track { align-items: stretch; }
.strw-widget .strw-slider-track .strw-card { flex: 0 0 100%; min-width: 0; }
.strw-widget .strw-sl-btn { top: auto; bottom: 4px; transform: none; padding: 0; }
.strw-widget .strw-sl-prev { left: 0; }
.strw-widget .strw-sl-next { right: 0; }
.strw-widget .strw-sl-btn:disabled { opacity: .35; cursor: default; }
.strw-widget .strw-sl-dots { bottom: 4px; gap: 0; max-width: calc(100% - 104px); overflow-x: auto; }
.strw-widget .strw-sl-dot { flex: 0 0 24px; width: 24px; height: 44px; background: transparent; position: relative; padding: 0; border: 0; }
.strw-widget .strw-sl-dot::before { content: ''; position: absolute; width: 7px; height: 7px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--strw-border); }
.strw-widget .strw-sl-dot.active::before { background: var(--strw-accent); width: 18px; border-radius: 6px; }
.strw-widget [hidden] { display: none !important; }
.strw-widget .strw-cta-bar { flex-direction: column; align-items: stretch; gap: 12px; }
.strw-widget .strw-cta-label { display: block; white-space: nowrap; font-size: 12px; letter-spacing: .02em; line-height: 1.5; text-transform: none; }
.strw-widget .strw-cta-actions { display: flex; gap: 10px; flex-wrap: nowrap; min-width: 0; }
.strw-widget .strw-cta-btn { justify-content: center; flex: 1 1 0; min-width: 0; min-height: 44px; padding: 10px 12px; line-height: 1.3; font-size: 13px; font-weight: 500; }
.strw-widget .strw-cta-btn svg, .strw-widget .strw-ta-cta-logo { flex-shrink: 0; }
.strw-widget .strw-cta-text { overflow-wrap: anywhere; white-space: normal; }
.strw-widget .strw-cta-short { display: none; }
.strw-widget .strw-summary { min-width: 0; }
.strw-widget .strw-summary-data { min-width: 0; overflow-wrap: anywhere; }
.strw-widget .strw-summary-row { flex-wrap: wrap; }
.strw-widget.strw-layout-grid .strw-reviews-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%,310px),1fr)); }
.strw-widget.strw-layout-masonry .strw-reviews-grid { columns: 310px; }
@container (max-width: 559px) {
  .strw-widget .strw-cta-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .strw-widget .strw-cta-short { display: inline; white-space: nowrap; }
  .strw-widget .strw-card { padding: 18px; }
  .strw-widget .strw-summaries { flex-direction: column; }
}
@container (min-width: 720px) {
  .strw-widget .strw-cta-bar { flex-direction: row; align-items: center; }
  .strw-widget .strw-cta-actions { flex: 1; }
}
@supports not (container-type: inline-size) {
  @media (max-width: 560px) {
    .strw-widget .strw-cta-text { display: none; }
    .strw-widget .strw-cta-short { display: inline; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .strw-widget *, .strw-widget *::before, .strw-widget *::after { transition: none !important; animation: none !important; }
}
[dir="rtl"] .strw-widget .strw-card-text { border-left: 0; border-right: 3px solid rgba(var(--strw-accent-rgb), .35); }

/* 3.2: reading controls, server-backed filters and loading states. */
.strw-widget .strw-filters { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)) auto; align-items: end; gap: 12px; padding: 16px; margin: 0 0 20px; border: 1px solid var(--strw-border); border-radius: var(--strw-radius); background: var(--strw-card-bg); color: var(--strw-text); }
.strw-widget .strw-filters label { display: block; min-width: 0; font-size: 12px; font-weight: 600; line-height: 1.5; }
.strw-widget .strw-filters select { display: block; width: 100%; max-width: 100%; height: auto; min-height: 44px; padding: 9px 28px 9px 10px; margin: 6px 0 0; font: inherit; font-size: 14px; font-weight: 400; color: var(--strw-text); background-color: var(--strw-card-bg); border: 1px solid var(--strw-border); border-radius: 8px; text-transform: none; letter-spacing: normal; }
.strw-widget .strw-filter-reset, .strw-widget .strw-load-more, .strw-widget .strw-feed-retry, .strw-widget .strw-read-toggle { font: inherit; font-size: 13px; font-weight: 500; line-height: 1.4; min-height: 44px; color: var(--strw-text); background: var(--strw-card-bg); border: 1px solid var(--strw-border); padding: 9px 14px; border-radius: 8px; cursor: pointer; margin: 0; text-transform: none; letter-spacing: normal; }
.strw-widget .strw-review-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; margin-top: 8px; }
.strw-widget .strw-review-actions:empty { display: none; }
.strw-widget .strw-read-toggle { padding: 6px 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: 3px; }
.strw-widget .strw-review-actions .strw-review-link-hint { display: inline-flex; align-items: center; gap: 3px; min-height: 44px; margin: 0; color: var(--strw-text); font-size: 12px; font-weight: 500; }
.strw-widget .strw-feed-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.strw-widget .strw-result-status, .strw-widget .strw-filter-empty { font-size: 13px; font-weight: 400; line-height: 1.6; margin: 0; color: var(--strw-muted); }
.strw-widget .strw-filter-empty { padding: 20px; text-align: center; border: 1px dashed var(--strw-border); border-radius: 8px; margin-top: 14px; }
.strw-widget .strw-results[aria-busy="true"] { opacity: .55; }
.strw-widget .strw-load-more:disabled { opacity: .6; cursor: wait; }
.strw-widget .strw-filters select:focus-visible, .strw-widget .strw-filter-reset:focus-visible, .strw-widget .strw-read-toggle:focus-visible, .strw-widget .strw-load-more:focus-visible, .strw-widget .strw-feed-retry:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.strw-widget .strw-no-navigation { padding-bottom: 4px; }
.strw-widget .strw-slider-outer:not([data-strw-ready="1"]) .strw-slider-track { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr)); }
.strw-widget .strw-slider-outer:not([data-strw-ready="1"]) .strw-sl-btn, .strw-widget .strw-slider-outer:not([data-strw-ready="1"]) .strw-sl-dots { display: none; }
@container (max-width: 559px) {
  .strw-widget .strw-filters { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 12px; }
  .strw-widget .strw-filters select { font-size: 16px; }
  .strw-widget .strw-filter-reset { align-self: end; }
}
@supports not (container-type: inline-size) {
  @media (max-width:560px) { .strw-widget .strw-filters { grid-template-columns: repeat(2,minmax(0,1fr)); } }
}
@container (max-width: 359px) {
  .strw-widget .strw-filters { grid-template-columns: minmax(0,1fr); gap: 10px; }
  .strw-widget .strw-filters label { display: grid; grid-template-columns: 70px minmax(0,1fr); align-items: center; gap: 8px; }
  .strw-widget .strw-filters select { margin-top: 0; }
  .strw-widget .strw-filter-reset { justify-self: end; }
}

/* 3.3: provider panels use the space available in a page or sidebar. */
.strw-split { container-type: inline-size; max-width: 1200px; min-width: 0; margin: 0 auto; color: var(--strw-text); font-family: inherit; box-sizing: border-box; }
.strw-split *, .strw-split *::before, .strw-split *::after { box-sizing: inherit; }
.strw-split-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.strw-split .strw-platform-panel { min-width: 0; }
.strw-split .strw-card { transition: box-shadow .3s ease, border-color .3s ease, background-color .3s ease, transform .3s ease; }
.strw-split .strw-platform-title { margin: 0 0 20px; padding: 0 0 12px; border-bottom: 2px solid var(--strw-border); color: var(--strw-text); font: inherit; font-size: 20px; font-weight: 650; line-height: 1.4; }
.strw-split .strw-trip-panel .strw-platform-title { border-color: #00aa6c; }
.strw-split .strw-google-panel .strw-platform-title { border-color: #4285f4; }
.strw-split .strw-trip-frame { display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 120px; border: 1px solid var(--strw-border); border-radius: 12px; background: #fff; }
.strw-split .strw-trip-fallback { margin: 12px 0 0; }
.strw-split .strw-trip-fallback a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: var(--strw-text); font-size: 14px; text-underline-offset: 3px; }
.strw-split .strw-trip-fallback a:focus-visible { outline: 2px solid var(--strw-accent); outline-offset: 3px; }
.strw-split .strw-trip-note { font-size: 12px; line-height: 1.5; color: var(--strw-muted); margin: 4px 0 0; }
.strw-split .strw-split-cta { --strw-accent: inherit; --strw-accent-rgb: inherit; }
@container (max-width: 759px) {
  .strw-split-panels { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
@supports not (container-type: inline-size) {
  @media (max-width: 800px) { .strw-split-panels { grid-template-columns: minmax(0, 1fr); } }
}
