﻿/*!
 * OkkarHotel Pro â€” shortcode gap-fillers
 *
 * Per the v9.0.0-beta6 visual integration brief: the THEME owns the
 * design system. The plugin emits semantic markup with theme class
 * names (.oh-bookcard, .oh-btn, .oh-hotel, .oh-compare, .oh-faq,
 * .oh-trust, .oh-banner, .oh-field, etc.). The theme styles those.
 *
 * This stylesheet exists ONLY for the handful of structural rules
 * that don't belong in the theme â€” small grid layouts that don't
 * appear elsewhere on the site, and gap-fillers for sections the
 * theme doesn't already cover. Everything else must inherit from the
 * theme's CSS custom properties (--oh-bg, --oh-text, --oh-brand,
 * --oh-brand-accent, --oh-border, --oh-radius-lg, etc.).
 *
 * Rules from the brief enforced here:
 *   - No hex colours; only var(--oh-*) custom properties
 *   - No font-family declarations (inherit from body)
 *   - No !important (theme wins on specificity by load order)
 *   - No drop shadows except theme's --oh-shadow-*
 *   - Light mode only (no prefers-color-scheme overrides)
 */

/* â”€â”€â”€ Booking wizard (front-page variant) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * The brief mandates a 1.3fr 1fr 1fr 0.85fr 0.85fr auto desktop grid for
 * the WHERE / CHECK-IN / CHECK-OUT / ADULTS / CHILDREN / CTA layout.
 * Theme provides .oh-bookcard + .oh-field; this just sets the layout.
 */
.oh-bookcard__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 0.85fr 0.85fr auto;
    gap: 12px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .oh-bookcard__inner { grid-template-columns: 1fr 1fr; }
    .oh-bookcard__inner > .oh-btn { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .oh-bookcard__inner { grid-template-columns: 1fr; }
}

/* The plugin's wizard form posts to the search-results URL. The
   underlying form element shouldn't impose its own styling â€” let
   .oh-bookcard own all visual rules. */
form.oh-search-wizard__form { margin: 0; padding: 0; background: transparent; }

/* â”€â”€â”€ Why-us 4-card grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * Theme styles .oh-why-us__card (icon + title + description). Plugin
 * only sets the responsive 4-up grid.
 */
.oh-why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

/* â”€â”€â”€ Reviews highlights carousel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * Used by [oh_reviews_summary] for the 4-up review-card row. Theme
 * paints the card body; plugin only owns the responsive grid.
 */
.oh-reviews__grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: stretch;
}
@media (max-width: 800px) {
    .oh-reviews__grid { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ Trust strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * Theme owns .oh-trust (dark band). Plugin only sets the inner 4-up
 * responsive grid.
 */
.oh-trust__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 28px;
    align-items: flex-start;
}
.oh-trust__item { display: flex; align-items: flex-start; gap: 10px; }

/* â”€â”€â”€ Travel tips (3-up card grid) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * [oh_travel_tips] â€” 3 cards with image / chip / title / excerpt / foot.
 * Plugin owns the card chrome here because no theme selector covers
 * this shape today. Colours use var(--oh-*) tokens so the theme drives
 * the palette via its CSS custom properties; the hex fallbacks are only
 * defaults for installs where the theme variables aren't defined yet.
 */
.oh-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.oh-tips-card {
    display: flex;
    flex-direction: column;
    background: var(--oh-surface, #fff);
    border: 1px solid var(--oh-border, #e5e7eb);
    border-radius: var(--oh-radius-lg, 12px);
    overflow: hidden;
}
.oh-tips-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--oh-bg-soft, #f6f8fc);
    overflow: hidden;
}
.oh-tips-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oh-tips-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    color: var(--oh-text-muted, #64748b);
    background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(15,23,42,0.04) 18px 19px);
}
.oh-tips-card__chip {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 4px 12px;
    background: var(--oh-surface, #fff);
    border: 1px solid var(--oh-border, #e5e7eb);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--oh-text, #0f172a);
}
.oh-tips-card__body { padding: 18px 18px 12px; flex: 1 1 auto; }
.oh-tips-card__title { margin: 0 0 8px; font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
.oh-tips-card__title a { color: var(--oh-text, #0f172a); text-decoration: none; }
.oh-tips-card__title a:hover { text-decoration: underline; }
.oh-tips-card__excerpt { margin: 0; color: var(--oh-text-muted, #64748b); font-size: 0.9375rem; line-height: 1.5; }
.oh-tips-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--oh-border, #e5e7eb);
    margin-top: 12px;
    font-size: 0.8125rem;
}
.oh-tips-card__meta { color: var(--oh-text-muted, #64748b); }
.oh-tips-card__meta > [aria-hidden] { margin: 0 4px; color: var(--oh-text-faint, #94a3b8); }
.oh-tips-card__read { color: var(--oh-brand, #1e3a5f); font-weight: 600; text-decoration: none; }
.oh-tips-card__read:hover { text-decoration: underline; }

/* â”€â”€â”€ Reviews summary (4-up: summary + 3 quotes) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * [oh_reviews_summary] mockup: big 4.7 / 5 card on the left, 3 quote
 * cards to the right.
 */
.oh-reviews__grid {
    display: grid;
    grid-template-columns: minmax(200px, 0.85fr) repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
@media (max-width: 1024px) { .oh-reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .oh-reviews__grid { grid-template-columns: 1fr; } }

.oh-reviews-card {
    background: var(--oh-surface, #fff);
    border: 1px solid var(--oh-border, #e5e7eb);
    border-radius: var(--oh-radius-lg, 12px);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
}
.oh-reviews-card--summary { gap: 12px; }
.oh-reviews-card__score {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.oh-reviews-card__score-num { font-size: 2.75rem; font-weight: 800; color: var(--oh-text, #0f172a); line-height: 1; }
.oh-reviews-card__score-denom { font-size: 1rem; color: var(--oh-text-muted, #64748b); }
.oh-reviews-card__stars { color: var(--oh-brand-accent, #c7956d); font-size: 1rem; letter-spacing: 1px; }
.oh-reviews-card__count { color: var(--oh-text-muted, #64748b); font-size: 0.875rem; }
.oh-reviews-card__count b { color: var(--oh-text, #0f172a); font-weight: 700; }
.oh-reviews-card__quote { margin: 8px 0 12px; color: var(--oh-text, #0f172a); font-size: 0.9375rem; line-height: 1.55; font-style: normal; }
.oh-reviews-card__meta { margin-top: auto; font-size: 0.8125rem; display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.oh-reviews-card__author { color: var(--oh-text, #0f172a); font-weight: 700; }
.oh-reviews-card__where { color: var(--oh-brand, #1e3a5f); }

/* â”€â”€â”€ Compare table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * [oh_compare_hotels] â€” single-card table with soft header band,
 * region subtitle in <small>, semantic âœ“/â€” cells.
 */
.oh-compare__scroller { overflow-x: auto; }
.oh-compare {
    width: 100%;
    border-collapse: collapse;
    background: var(--oh-surface, #fff);
    border: 1px solid var(--oh-border, #e5e7eb);
    border-radius: var(--oh-radius-lg, 12px);
    overflow: hidden;
    font-size: 0.9375rem;
}
.oh-compare thead th {
    background: var(--oh-bg-soft, #f6f8fc);
    padding: 22px 20px;
    text-align: left;
    vertical-align: top;
    font-weight: 700;
    color: var(--oh-text, #0f172a);
    border-bottom: 1px solid var(--oh-border, #e5e7eb);
}
.oh-compare thead th a { color: inherit; text-decoration: none; }
.oh-compare thead th small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--oh-text-muted, #64748b);
}
.oh-compare tbody th {
    text-align: left;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--oh-text-muted, #64748b);
    background: transparent;
    border-bottom: 1px solid var(--oh-border, #e5e7eb);
    vertical-align: top;
    width: 200px;
}
.oh-compare tbody td {
    padding: 16px 20px;
    color: var(--oh-text, #0f172a);
    border-bottom: 1px solid var(--oh-border, #e5e7eb);
    vertical-align: top;
}
.oh-compare tbody tr:last-child th,
.oh-compare tbody tr:last-child td { border-bottom: 0; }
.oh-compare__cell--yes { color: var(--oh-success, #15803d); }
.oh-compare__cell--no  { color: var(--oh-text-faint, #94a3b8); }

/* â”€â”€â”€ FAQ 2-column grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * [oh_faq] â€” 2 columns side-by-side per the HONEST ANSWERS mockup,
 * inside a single soft card. Theme paints the .oh-faq__item details/
 * summary visual styling.
 */
.oh-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    background: var(--oh-surface, #fff);
    border: 1px solid var(--oh-border, #e5e7eb);
    border-radius: var(--oh-radius-lg, 12px);
    padding: 8px 28px;
}
@media (max-width: 760px) { .oh-faq { grid-template-columns: 1fr; padding: 8px 18px; } }

.oh-faq__item {
    padding: 18px 0;
    border-bottom: 1px solid var(--oh-border, #e5e7eb);
}
.oh-faq__item:last-child,
.oh-faq__item:nth-last-child(2):nth-child(2n+1) {
    /* Last item AND last-in-column when even count: no bottom border */
    border-bottom: 0;
}
.oh-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--oh-text, #0f172a);
}
.oh-faq__q::-webkit-details-marker { display: none; }
.oh-faq__q .plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--oh-border, #e5e7eb);
    background: var(--oh-surface, #fff);
    color: var(--oh-text-muted, #64748b);
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.oh-faq__item[open] .plus {
    transform: rotate(45deg);
    background: var(--oh-brand, #1e3a5f);
    color: var(--oh-text-on-dark, #fff);
    border-color: var(--oh-brand, #1e3a5f);
}
.oh-faq__a {
    margin-top: 10px;
    color: var(--oh-text-muted, #64748b);
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 60ch;
}


/* ============================================================================
 * Front-page search wizard ([oh_search_wizard_front_page]) - v9.0.0-beta18
 * ----------------------------------------------------------------------------
 * Styles the markup emitted by okkar_oh_shortcodes_search_wizard_front_page
 * (in feature-ourhotels-shortcodes.php). Theme's front-page.php wraps the
 * shortcode in <div class="oh-bookcard">, so we ride inside that container.
 * ========================================================================= */

.oh-bookcard {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 16px !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.oh-bookcard__form {
  display: block !important;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  box-sizing: border-box !important;
}
.oh-bookcard__form * { box-sizing: border-box !important; }

.oh-bookcard__form .oh-bookcard__inner {
  display: grid !important;
  grid-template-columns: 2fr 1.3fr 1.3fr 1fr 1fr auto !important;
  gap: 6px !important;
  align-items: stretch !important;
  background: #fff !important;
  border-radius: 18px !important;
  padding: 8px !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22) !important;
}

.oh-bookcard__form .oh-field {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 12px 18px !important;
  border: 1px solid #e6eaf0 !important;
  border-radius: 12px !important;
  background: #fff !important;
  min-width: 0 !important;
  min-height: 64px !important;
  overflow: hidden !important;
  transition: border-color .15s ease, background-color .15s ease;
}
.oh-bookcard__form .oh-field:hover,
.oh-bookcard__form .oh-field:focus-within {
  border-color: #cbd5e1 !important;
  background: #f8fafc !important;
}

.oh-bookcard__form .oh-field__label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  pointer-events: none !important;
}

.oh-bookcard__form .oh-field__display,
.oh-bookcard__form .oh-field__stepvalue {
  display: block !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}
.oh-bookcard__form .oh-field__display {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  pointer-events: none !important;
}
.oh-bookcard__form .oh-field__stepvalue {
  text-align: center !important;
  min-width: 24px !important;
  pointer-events: none !important;
}

.oh-bookcard__form .oh-field--overlay { cursor: pointer !important; }
.oh-bookcard__form .oh-field--overlay .oh-field__value {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: transparent !important;
  opacity: 0 !important;
  cursor: pointer !important;
  font: inherit !important;
  z-index: 2 !important;
  -webkit-appearance: none !important;
}
.oh-bookcard__form .oh-field--overlay .oh-field__value::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
  cursor: pointer !important;
}

.oh-bookcard__form .oh-field--stepper .oh-field__stepper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}
.oh-bookcard__form .oh-field__step {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  color: #0f172a !important;
  border-radius: 999px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  padding: 0 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color .12s ease, border-color .12s ease, transform .08s ease;
  -webkit-user-select: none;
  user-select: none;
}
.oh-bookcard__form .oh-field__step:hover  { background: #f1f5f9 !important; border-color: #94a3b8 !important; }
.oh-bookcard__form .oh-field__step:active { transform: scale(0.94); }
.oh-bookcard__form .oh-field__step:disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.oh-bookcard__form .oh-bookcard__submit,
.oh-bookcard__form .oh-btn--accent {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 30px !important;
  background: #c89464 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  min-height: 64px !important;
  transition: background-color .15s ease, transform .08s ease, box-shadow .15s ease;
  box-shadow: 0 2px 6px rgba(200, 148, 100, 0.30) !important;
  text-decoration: none !important;
}
.oh-bookcard__form .oh-bookcard__submit:hover,
.oh-bookcard__form .oh-btn--accent:hover  { background: #b8845a !important; box-shadow: 0 4px 12px rgba(184, 132, 90, 0.40) !important; }
.oh-bookcard__form .oh-bookcard__submit:active,
.oh-bookcard__form .oh-btn--accent:active { transform: scale(0.98); }

.oh-bookcard__form .oh-bookcard__trust {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 12px 0 0 10px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.4 !important;
}
.oh-bookcard__form .oh-bookcard__trust-tick {
  flex: 0 0 14px;
  color: #22c55e !important;
}

@media (max-width: 980px) {
  .oh-bookcard__form .oh-bookcard__inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .oh-bookcard__form .oh-field--overlay[data-cell="where"],
  .oh-bookcard__form .oh-bookcard__submit,
  .oh-bookcard__form .oh-btn--accent { grid-column: 1 / -1 !important; }
  .oh-bookcard__form .oh-bookcard__submit,
  .oh-bookcard__form .oh-btn--accent { margin-top: 4px !important; padding: 14px 22px !important; }
}
@media (max-width: 520px) {
  .oh-bookcard__form .oh-bookcard__inner { grid-template-columns: 1fr !important; }
}
/* v9.0.0-beta19: dropdown option text was inheriting `color: transparent`
   from the overlay select, making other hotel names invisible when the
   user opened the dropdown. Force option text to dark, regardless of
   parent overlay rules. Two selectors: with and without the `select.`
   prefix, because browsers vary in which selector wins for native option
   styling. */
.oh-bookcard__form .oh-field--overlay select.oh-field__value option,
.oh-bookcard__form .oh-field--overlay .oh-field__value option {
  color: #0f172a !important;
  background: #ffffff !important;
}
/* ============================================================================
 * Travel-tips carousel ([oh_travel_tips]) - v9.0.0-beta21
 * ----------------------------------------------------------------------------
 * 3 cards visible, ~9 more in the scroll track (12 random posts total).
 * Prev/Next buttons scroll by 1 card width. Single column on mobile.
 * ========================================================================= */

.oh-tips__carousel {
  position: relative;
  padding: 0 56px;
  margin: 0 auto;
  max-width: 1280px;
}
.oh-tips__track {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.oh-tips__track::-webkit-scrollbar { display: none; }

.oh-tips__track > .oh-tips-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  scroll-snap-align: start;
}

.oh-tips__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.10);
  z-index: 5;
  transition: background-color .15s ease, transform .08s ease, opacity .15s ease;
  -webkit-user-select: none;
  user-select: none;
}
.oh-tips__nav:hover  { background: #f8fafc; }
.oh-tips__nav:active { transform: translateY(-50%) scale(0.94); }
.oh-tips__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.oh-tips__nav--prev { left: 0; }
.oh-tips__nav--next { right: 0; }

@media (max-width: 980px) {
  .oh-tips__carousel { padding: 0 44px; }
  .oh-tips__track > .oh-tips-card {
    flex-basis: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }
}
@media (max-width: 640px) {
  .oh-tips__carousel { padding: 0 36px; }
  .oh-tips__track > .oh-tips-card {
    flex-basis: 88% !important;
    max-width: 88% !important;
  }
  .oh-tips__nav { width: 36px; height: 36px; font-size: 18px; }
}
/* ============================================================================
 * FAQ "Show more" toggle ([oh_faq]) - v9.0.0-beta23
 * ----------------------------------------------------------------------------
 * First 3 questions are visible on initial load; remaining items render with
 * `hidden` (server-side) and reveal when the visitor clicks "Show more".
 * The toggle removes itself after expansion - it is single-shot.
 * ========================================================================= */

.oh-faq__more-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 8px;
}
.oh-faq__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .08s ease, box-shadow .15s ease;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.oh-faq__more:hover  { background: #f8fafc; border-color: #94a3b8; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08); }
.oh-faq__more:active { transform: scale(0.97); }
.oh-faq__more:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}
.oh-faq__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

/* ============================================================================
 * Reviews summary - aggregate + carousel ([oh_reviews_summary]) - v9.0.0-beta28
 * ----------------------------------------------------------------------------
 * Layout: aggregate card pinned LEFT at a fixed 260px column via CSS grid,
 * quote cards in a horizontal scrolling carousel on the RIGHT.
 *
 * v9.0.0-beta28: switched from flexbox (which collapsed in some layout
 * contexts and made the carousel render at zero width, hiding all the
 * cards) to CSS grid with an explicit 260px + 1fr template. Cards inside
 * the track now use a fixed 320px width instead of percentage-based
 * widths so they always paint regardless of the carousel column's
 * computed width.
 * ========================================================================= */

.oh-reviews__layout {
  display: grid;
  /* minmax(0, 1fr) instead of plain 1fr: lets the carousel column shrink
     below its content's intrinsic min-size. With plain 1fr, the track's
     min-content (a fixed 320px card) propagates upward as the column's
     min-width and can collapse / overflow the layout when the parent
     can't grow to fit. minmax(0, 1fr) explicitly allows the column to
     shrink — the carousel's `overflow-x: auto` then handles scrolling. */
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
  width: 100%;
}

.oh-reviews__carousel {
  position: relative;
  min-width: 0;
  width: 100%;
  padding: 0 52px;
}

.oh-reviews__track {
  display: flex !important;
  gap: 18px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 8px;
  width: 100%;
}
.oh-reviews__track::-webkit-scrollbar { display: none; }

.oh-reviews__track > .oh-reviews-card--quote {
  flex: 0 0 320px !important;
  width: 320px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  scroll-snap-align: start;
  height: auto;
}

.oh-reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  z-index: 3;
  transition: background-color .15s ease, transform .08s ease, opacity .15s ease;
}
.oh-reviews__nav:hover  { background: #f8fafc; }
.oh-reviews__nav:active { transform: translateY(-50%) scale(0.94); }
.oh-reviews__nav:disabled { opacity: 0.32; cursor: not-allowed; }
.oh-reviews__nav--prev { left: 0; }
.oh-reviews__nav--next { right: 0; }

@media (max-width: 980px) {
  .oh-reviews__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .oh-reviews__carousel {
    padding: 0 44px;
  }
  .oh-reviews__track > .oh-reviews-card--quote {
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
  }
}
@media (max-width: 640px) {
  .oh-reviews__carousel { padding: 0 38px; }
  .oh-reviews__track > .oh-reviews-card--quote {
    flex: 0 0 86% !important;
    width: 86% !important;
    min-width: 240px !important;
    max-width: 86% !important;
  }
  .oh-reviews__nav { width: 34px; height: 34px; font-size: 18px; }
}