/**
 * Roho Connect — Front-End Luxury Theme
 * File: /wp-content/themes/roho-theme/assets/css/roho-style.css
 *
 * Aesthetic: Kenyan luxury editorial — deep burgundy rose, warm gold accents,
 * Playfair Display headings, soft cream backgrounds, intimate and premium.
 *
 * Architecture:
 *   1. Google Fonts import
 *   2. CSS custom properties (design tokens)
 *   3. Base reset & typography
 *   4. Layout wrappers
 *   5. Homepage hero & social proof
 *   6. Browse page
 *   7. Profile card
 *   8. Profile page
 *   9. Unlock block & timer ring
 *  10. Subscription plans
 *  11. Profile registration form
 *  12. Testimonials
 *  13. Contact page
 *  14. FAQ accordion
 *  15. Payment modal
 *  16. Animations & keyframes
 *  17. Responsive overrides
 */

/* ══════════════════════════════════════════════════════════════════
   1. GOOGLE FONTS
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ══════════════════════════════════════════════════════════════════
   2. DESIGN TOKENS
   ══════════════════════════════════════════════════════════════════ */

:root {
    /* ── Brand colours ──────────────────────────── */
    --roho-rose:         #E8171D;
    --roho-rose-mid:     #FF3B40;
    --roho-rose-light:   #FFD7CD;
    --roho-rose-pale:    #FFF0EE;
    --roho-gold:         #C9922A;
    --roho-gold-mid:     #e0aa4a;
    --roho-gold-light:   #fdf6eb;
    --roho-cream:        #faf7f4;
    --roho-green:        #1a7a1a;
    --roho-wa:           #25D366;

    /* ── Neutrals ───────────────────────────────── */
    --roho-text:         #1a1010;
    --roho-text-soft:    #3d2828;
    --roho-muted:        #8a7070;
    --roho-border:       #e8dde2;
    --roho-border-mid:   #d4bfc8;
    --roho-bg:           #faf7f5;
    --roho-white:        #ffffff;

    /* ── Shadows ────────────────────────────────── */
    --roho-shadow:       0 2px 16px rgba(232,23,29,.07);
    --roho-shadow-md:    0 4px 24px rgba(232,23,29,.11);
    --roho-shadow-lg:    0 8px 40px rgba(232,23,29,.16);
    --roho-shadow-gold:  0 4px 24px rgba(201,146,42,.18);

    /* ── Radii ──────────────────────────────────── */
    --roho-radius:       12px;
    --roho-radius-lg:    18px;
    --roho-radius-pill:  100px;

    /* ── Typography ─────────────────────────────── */
    --font-display:      'Playfair Display', Georgia, serif;
    --font-body:         'DM Sans', system-ui, sans-serif;

    /* ── Transitions ────────────────────────────── */
    --roho-trans:        all .2s cubic-bezier(.4,0,.2,1);
    --roho-trans-slow:   all .35s cubic-bezier(.4,0,.2,1);

    /* ── Gradients ──────────────────────────────── */
    --roho-grad:         linear-gradient(135deg, #E8171D 0%, #FF3B40 100%);
    --roho-grad-gold:    linear-gradient(135deg, #C9922A 0%, #e0aa4a 100%);
    --roho-grad-hero:    linear-gradient(160deg, #781A1D 0%, #E8171D 45%, #FF3B40 100%);
    --roho-grad-card:    linear-gradient(to top, rgba(232,23,29,.85) 0%, rgba(232,23,29,.3) 45%, transparent 75%);
}

/* ══════════════════════════════════════════════════════════════════
   3. BASE RESET & TYPOGRAPHY
   ══════════════════════════════════════════════════════════════════ */

.roho-wrap *,
.roho-wrap *::before,
.roho-wrap *::after {
    box-sizing: border-box;
}

.roho-wrap {
    font-family:  var(--font-body);
    font-size:    15px;
    line-height:  1.65;
    color:        var(--roho-text);
    background:   var(--roho-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Display headings use Playfair */
.roho-wrap h1,
.roho-wrap h2,
.roho-wrap h3,
.roho-display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height:  1.2;
    color:        var(--roho-text);
}

/* Italic accent used throughout */
.roho-italic {
    font-family: var(--font-display);
    font-style:  italic;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════
   4. LAYOUT WRAPPERS
   ══════════════════════════════════════════════════════════════════ */

.roho-page-wrap {
    max-width:  1180px;
    margin:     0 auto;
    padding:    0 20px;
}

.roho-section {
    padding: 64px 0;
}

.roho-section--sm {
    padding: 40px 0;
}

/* Decorative horizontal rule */
.roho-divider {
    display:      block;
    width:        60px;
    height:       3px;
    background:   var(--roho-grad-gold);
    border-radius: var(--roho-radius-pill);
    margin:       16px auto;
}

/* ══════════════════════════════════════════════════════════════════
   5. HOMEPAGE HERO & SOCIAL PROOF
   ══════════════════════════════════════════════════════════════════ */

/* Hero section */
.roho-hero {
    position:         relative;
    background:       var(--roho-grad-hero);
    color:            #fff;
    padding:          90px 20px 80px;
    text-align:       center;
    overflow:         hidden;
}

/* Subtle floral/pattern overlay */
.roho-hero::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.roho-hero::after {
    content:    '';
    position:   absolute;
    bottom:     -2px;
    left:       0;
    right:      0;
    height:     80px;
    background: var(--roho-bg);
    clip-path:  ellipse(55% 100% at 50% 100%);
}

.roho-hero__inner {
    position:   relative;
    z-index:    1;
    max-width:  680px;
    margin:     0 auto;
}

.roho-hero__eyebrow {
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    font-size:      12px;
    font-weight:    600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color:          rgba(255,255,255,.7);
    margin-bottom:  20px;
}

.roho-hero__eyebrow::before,
.roho-hero__eyebrow::after {
    content: '';
    display: block;
    width:   28px;
    height:  1px;
    background: rgba(255,255,255,.4);
}

.roho-hero__title {
    font-family:  var(--font-display);
    font-size:    clamp(2.2rem, 5vw, 3.6rem);
    font-weight:  800;
    color:        #fff;
    margin:       0 0 12px;
    line-height:  1.12;
    letter-spacing: -.01em;
}

.roho-hero__title em {
    font-style:  italic;
    font-weight: 400;
    color:       var(--roho-gold-mid);
}

.roho-hero__subtitle {
    font-size:    1.05rem;
    color:        rgba(255,255,255,.78);
    max-width:    500px;
    margin:       0 auto 36px;
    line-height:  1.7;
}

.roho-hero__cta {
    display:        flex;
    gap:            14px;
    justify-content: center;
    flex-wrap:      wrap;
    margin-bottom:  44px;
}

/* Hero profile bubbles */
.roho-hero__faces {
    display:        flex;
    justify-content: center;
    align-items:    center;
    gap:            0;
    margin-bottom:  18px;
}

.roho-hero__face {
    width:        48px;
    height:       48px;
    border-radius: 50%;
    border:       2.5px solid rgba(255,255,255,.6);
    object-fit:   cover;
    margin-left:  -12px;
    background:   rgba(255,255,255,.15);
}

.roho-hero__face:first-child { margin-left: 0; }

.roho-hero__trust {
    font-size:  13px;
    color:      rgba(255,255,255,.65);
}

/* Live stats strip */
.roho-hero-stats {
    display:          flex;
    justify-content:  center;
    gap:              40px;
    flex-wrap:        wrap;
    padding:          28px 20px;
    background:       rgba(255,255,255,.06);
    border-top:       1px solid rgba(255,255,255,.1);
    margin-top:       40px;
}

.roho-hero-stat {
    text-align: center;
}

.roho-hero-stat__num {
    display:      block;
    font-family:  var(--font-display);
    font-size:    2rem;
    font-weight:  700;
    color:        var(--roho-gold-mid);
    line-height:  1;
    margin-bottom: 4px;
}

.roho-hero-stat__label {
    font-size:  12px;
    color:      rgba(255,255,255,.6);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* How it works strip */
.roho-how {
    display:         flex;
    justify-content: center;
    gap:             0;
    flex-wrap:       wrap;
    padding:         48px 20px;
    background:      var(--roho-white);
    border-bottom:   1px solid var(--roho-border);
}

.roho-how__step {
    display:    flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding:    0 32px;
    position:   relative;
    max-width:  200px;
}

.roho-how__step + .roho-how__step::before {
    content:    '→';
    position:   absolute;
    left:       -10px;
    top:        20px;
    color:      var(--roho-border-mid);
    font-size:  20px;
}

.roho-how__icon {
    width:          56px;
    height:         56px;
    background:     var(--roho-rose-pale);
    border-radius:  50%;
    display:        flex;
    align-items:    center;
    justify-content: center;
    font-size:      24px;
    margin-bottom:  14px;
    border:         1.5px solid #f0c4d4;
}

.roho-how__title {
    font-size:   14px;
    font-weight: 600;
    color:       var(--roho-rose);
    margin:      0 0 6px;
}

.roho-how__desc {
    font-size:  12px;
    color:      var(--roho-muted);
    line-height: 1.5;
    margin:     0;
}

/* Featured profiles carousel header */
.roho-section-head {
    display:        flex;
    align-items:    baseline;
    justify-content: space-between;
    margin-bottom:  28px;
    gap:            16px;
    flex-wrap:      wrap;
}

.roho-section-head__title {
    font-family: var(--font-display);
    font-size:   clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    margin:      0;
    color:       var(--roho-text);
}

.roho-section-head__title em {
    color:       var(--roho-rose);
    font-style:  italic;
}

.roho-section-head__link {
    font-size:   14px;
    color:       var(--roho-rose-mid);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.roho-section-head__link:hover {
    color: var(--roho-rose);
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════
   6. BROWSE PAGE
   ══════════════════════════════════════════════════════════════════ */

.roho-browse-wrap {
    max-width:  1200px;
    margin:     0 auto;
    padding:    32px 20px 60px;
}

/* Counters bar — already styled in inline CSS, enhanced here */
.roho-counters-bar {
    background:    var(--roho-grad);
    border-radius: var(--roho-radius);
    padding:       14px 24px;
    display:       flex;
    align-items:   center;
    gap:           20px;
    color:         #fff;
    font-size:     14px;
    margin-bottom: 28px;
    flex-wrap:     wrap;
    box-shadow:    var(--roho-shadow-md);
}

.roho-counter {
    display:     flex;
    align-items: center;
    gap:         6px;
}

.roho-counter__value {
    font-family: var(--font-display);
    font-size:   18px;
    font-weight: 700;
    color:       var(--roho-gold-mid);
}

.roho-counter__label {
    color: rgba(255,255,255,.8);
}

.roho-counter__sep {
    color:   rgba(255,255,255,.3);
    font-size: 20px;
}

/* Browse two-column layout */
.roho-browse-layout {
    display:              grid;
    grid-template-columns: 280px 1fr;
    gap:                  28px;
    align-items:          start;
}

/* ── Filter sidebar ───────────────────────────────────────────── */

.roho-filters {
    background:   var(--roho-white);
    border:       1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:      24px;
    position:     sticky;
    top:          24px;
    box-shadow:   var(--roho-shadow);
}

.roho-filters__header {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    margin-bottom:   20px;
    padding-bottom:  16px;
    border-bottom:   1.5px solid var(--roho-border);
}

.roho-filters__title {
    font-family: var(--font-display);
    font-size:   16px;
    font-weight: 700;
    color:       var(--roho-rose);
    margin:      0;
}

.roho-filters__reset {
    font-size:       12px;
    color:           var(--roho-muted);
    background:      none;
    border:          none;
    cursor:          pointer;
    text-decoration: underline;
    padding:         0;
    transition:      color .15s;
}

.roho-filters__reset:hover {
    color: var(--roho-rose);
}

.roho-filter-group {
    margin-bottom: 16px;
}

.roho-filter-label {
    display:        block;
    font-size:      11px;
    font-weight:    700;
    color:          var(--roho-muted);
    margin-bottom:  6px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Browse toolbar */
.roho-browse-toolbar {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    margin-bottom:   20px;
}

.roho-results-count {
    font-size:   13px;
    color:       var(--roho-muted);
    margin:      0;
}

.roho-results-count strong {
    color:       var(--roho-rose);
    font-weight: 700;
}

.roho-filters-toggle {
    display: none;
}

/* Load more */
.roho-load-more-wrap {
    text-align:  center;
    margin-top:  40px;
    padding-top: 32px;
    border-top:  1px dashed var(--roho-border);
}

/* Browse loading state */
.roho-browse-loading {
    grid-column:   1 / -1;
    text-align:    center;
    padding:       60px 24px;
    color:         var(--roho-muted);
    font-family:   var(--font-display);
    font-style:    italic;
    font-size:     18px;
}

/* ══════════════════════════════════════════════════════════════════
   7. PROFILE CARD
   ══════════════════════════════════════════════════════════════════ */

.roho-profile-grid {
    display:              grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap:                  22px;
}

.roho-profile-card {
    background:    var(--roho-white);
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    overflow:      hidden;
    box-shadow:    var(--roho-shadow);
    transition:    var(--roho-trans-slow);
    position:      relative;
    animation:     roho-fade-up .4s both;
}

.roho-profile-card:hover {
    transform:  translateY(-5px);
    box-shadow: var(--roho-shadow-lg);
    border-color: var(--roho-border-mid);
}

/* Photo */
.roho-profile-card__photo-link {
    display: block;
}

.roho-profile-card__photo-wrap {
    position:     relative;
    aspect-ratio: 3 / 4;
    overflow:     hidden;
}

.roho-profile-card__photo {
    width:          100%;
    height:         100%;
    object-fit:     cover;
    display:        block;
    transition:     transform .4s cubic-bezier(.4,0,.2,1);
}

.roho-profile-card:hover .roho-profile-card__photo {
    transform: scale(1.04);
}

/* Gradient overlay on hover */
.roho-profile-card__overlay {
    position:    absolute;
    inset:       0;
    background:  var(--roho-grad-card);
    opacity:     0;
    transition:  opacity .25s;
    display:     flex;
    align-items: flex-end;
    padding:     16px;
}

.roho-profile-card:hover .roho-profile-card__overlay {
    opacity: 1;
}

.roho-profile-card__unlock-hint {
    color:       #fff;
    font-size:   13px;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Badges */
.roho-profile-card__badges {
    position:       absolute;
    top:            10px;
    left:           10px;
    display:        flex;
    flex-direction: column;
    gap:            5px;
}

.roho-badge--featured {
    background:    rgba(201,146,42,.92);
    color:         #fff;
    font-size:     10px;
    font-weight:   700;
    padding:       3px 9px;
    border-radius: var(--roho-radius-pill);
    letter-spacing: .03em;
    backdrop-filter: blur(4px);
}

.roho-badge--verified {
    background:    rgba(26,122,26,.92);
    color:         #fff;
    font-size:     10px;
    font-weight:   700;
    padding:       3px 9px;
    border-radius: var(--roho-radius-pill);
    letter-spacing: .03em;
    backdrop-filter: blur(4px);
}

/* Card body */
.roho-profile-card__body {
    padding: 16px;
}

.roho-profile-card__header {
    display:     flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.roho-profile-card__name {
    font-family: var(--font-display);
    font-size:   17px;
    font-weight: 700;
    color:       var(--roho-text);
    margin:      0;
}

.roho-profile-card__views {
    font-size:  11px;
    color:      var(--roho-muted);
    white-space: nowrap;
}

.roho-profile-card__location {
    font-size:     12px;
    color:         var(--roho-muted);
    margin:        0 0 10px;
}

.roho-profile-card__meta {
    display:     flex;
    flex-wrap:   wrap;
    gap:         5px;
    margin-bottom: 10px;
}

.roho-profile-card__bio {
    font-size:   12px;
    color:       #666;
    margin:      0 0 12px;
    line-height: 1.55;
}

.roho-profile-card__footer {
    display:     flex;
    align-items: center;
    justify-content: space-between;
    gap:         8px;
    padding-top: 12px;
    border-top:  1px solid var(--roho-border);
}

.roho-popular-badge {
    font-size:   11px;
    color:       var(--roho-rose-mid);
    font-weight: 600;
    white-space: nowrap;
}

/* Empty / browse states */
.roho-browse-empty {
    grid-column: 1 / -1;
    text-align:  center;
    padding:     80px 24px;
}

.roho-browse-empty__icon {
    font-size:     52px;
    margin-bottom: 16px;
    display:       block;
}

.roho-browse-empty h3 {
    font-family: var(--font-display);
    font-size:   22px;
    color:       var(--roho-text);
    margin:      0 0 8px;
}

.roho-browse-empty p {
    color: var(--roho-muted);
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   8. PROFILE PAGE (single)
   ══════════════════════════════════════════════════════════════════ */

.roho-profile-page {
    max-width:   1100px;
    margin:      0 auto;
    padding:     36px 20px 64px;
    animation:   roho-fade-up .5s both;
}

.roho-profile-page__layout {
    display:              grid;
    grid-template-columns: 340px 1fr;
    gap:                  36px;
    align-items:          start;
}

/* ── Sidebar ───────────────────────────────────────────────────── */

.roho-profile-page__sidebar {
    position: sticky;
    top:      24px;
}

.roho-profile-photo-wrap {
    position:      relative;
    border-radius: var(--roho-radius-lg);
    overflow:      hidden;
    margin-bottom: 14px;
    box-shadow:    var(--roho-shadow-md);
}

.roho-profile-photo {
    width:        100%;
    display:      block;
    aspect-ratio: 3 / 4;
    object-fit:   cover;
}

/* Subtle inner glow on photo */
.roho-profile-photo-wrap::after {
    content:  '';
    position: absolute;
    inset:    0;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.15);
    border-radius: var(--roho-radius-lg);
    pointer-events: none;
}

.roho-photo-badge {
    position:      absolute;
    top:           12px;
    left:          12px;
    padding:       5px 12px;
    border-radius: var(--roho-radius-pill);
    font-size:     11px;
    font-weight:   700;
    color:         #fff;
    backdrop-filter: blur(6px);
    letter-spacing: .03em;
}

.roho-photo-badge--featured {
    background: rgba(201,146,42,.9);
}

.roho-photo-badge--verified {
    background: rgba(26,122,26,.9);
}

/* Extra photos */
.roho-extra-photos {
    display:              grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                  8px;
    margin-bottom:        14px;
}

.roho-extra-photo {
    width:         100%;
    aspect-ratio:  1;
    object-fit:    cover;
    border-radius: 8px;
    display:       block;
}

/* Profile stats */
.roho-profile-stats {
    display:       flex;
    gap:           12px;
    margin-bottom: 16px;
}

.roho-stat {
    flex:          1;
    text-align:    center;
    background:    var(--roho-rose-pale);
    border-radius: 10px;
    padding:       12px 8px;
    border:        1px solid #f0c4d4;
}

.roho-stat__val {
    display:     block;
    font-family: var(--font-display);
    font-size:   22px;
    font-weight: 700;
    color:       var(--roho-rose);
}

.roho-stat__lbl {
    font-size:  11px;
    color:      var(--roho-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Content column ───────────────────────────────────────────── */

.roho-profile-page__content {
    min-width: 0;
}

.roho-profile-header {
    margin-bottom: 16px;
    padding-bottom: 20px;
    border-bottom:  1.5px solid var(--roho-border);
}

.roho-profile-name {
    font-family:   var(--font-display);
    font-size:     clamp(1.8rem, 4vw, 2.4rem);
    font-weight:   800;
    color:         var(--roho-text);
    margin:        0 0 6px;
    display:       flex;
    align-items:   center;
    gap:           10px;
    flex-wrap:     wrap;
}

.roho-verified-badge {
    display:          inline-flex;
    align-items:      center;
    justify-content:  center;
    width:            26px;
    height:           26px;
    background:       var(--roho-green);
    color:            #fff;
    border-radius:    50%;
    font-size:        13px;
    font-weight:      700;
    flex-shrink:      0;
}

.roho-profile-location {
    font-size:   15px;
    color:       var(--roho-muted);
    margin:      0;
}

.roho-profile-tags {
    display:     flex;
    flex-wrap:   wrap;
    gap:         8px;
    margin-bottom: 28px;
}

/* Profile sections */
.roho-profile-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--roho-border);
}

.roho-profile-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.roho-profile-section__title {
    font-family:   var(--font-display);
    font-size:     16px;
    font-weight:   700;
    color:         var(--roho-rose);
    margin:        0 0 14px;
    padding-bottom: 8px;
    border-bottom:  1px solid var(--roho-rose-pale);
}

.roho-profile-bio {
    font-size:   15px;
    line-height: 1.75;
    color:       var(--roho-text-soft);
    margin:      0;
}

/* Details grid */
.roho-details-grid {
    display:              grid;
    grid-template-columns: 1fr 1fr;
    gap:                  0;
    border:               1.5px solid var(--roho-border);
    border-radius:        var(--roho-radius);
    overflow:             hidden;
}

.roho-detail {
    display:         flex;
    flex-direction:  column;
    padding:         12px 16px;
    border-bottom:   1px solid var(--roho-border);
    border-right:    1px solid var(--roho-border);
}

.roho-detail:nth-child(even) {
    border-right: none;
}

.roho-detail:nth-last-child(-n+2) {
    border-bottom: none;
}

.roho-detail__label {
    font-size:      10px;
    font-weight:    700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color:          var(--roho-muted);
    margin-bottom:  3px;
}

.roho-detail__value {
    font-size:   14px;
    font-weight: 500;
    color:       var(--roho-text);
}

/* Interests & languages */
.roho-interests {
    display:   flex;
    flex-wrap: wrap;
    gap:       8px;
}

/* Desktop CTA box */
.roho-profile-cta-desktop {
    margin-top: 24px;
}

.roho-cta-box {
    background:    var(--roho-rose-pale);
    border:        2px solid #f0c4d4;
    border-radius: var(--roho-radius-lg);
    padding:       24px;
    text-align:    center;
}

.roho-cta-text {
    font-size:     14px;
    color:         var(--roho-rose);
    margin:        0 0 16px;
    font-weight:   500;
}

/* ══════════════════════════════════════════════════════════════════
   9. UNLOCK BLOCK & TIMER RING
   ══════════════════════════════════════════════════════════════════ */

.roho-unlock-block {
    background:    var(--roho-white);
    border:        2px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       24px;
    text-align:    center;
    box-shadow:    var(--roho-shadow);
}

/* Locked state */
#roho-locked-state {
    animation: roho-fade-in .3s both;
}

.roho-lock-icon {
    font-size:     42px;
    margin-bottom: 12px;
    display:       block;
    opacity:       .8;
}

.roho-lock-text {
    font-size:   15px;
    color:       var(--roho-text);
    margin:      0 0 6px;
    line-height: 1.55;
}

.roho-lock-subtext {
    font-size:     12px;
    color:         var(--roho-muted);
    margin:        0 0 20px;
}

.roho-pay-note {
    font-size:  11px;
    color:      var(--roho-muted);
    margin:     10px 0 0;
    line-height: 1.6;
}

/* Unlocked state */
#roho-unlocked-state {
    animation: roho-fade-in .4s both;
}

/* SVG Timer ring */
.roho-timer-wrap {
    position:      relative;
    width:         140px;
    height:        140px;
    margin:        0 auto 16px;
}

.roho-timer-ring {
    width:     140px;
    height:    140px;
    transform: rotate(-90deg);
}

.roho-timer-ring__bg {
    fill:         none;
    stroke:       #f0e4ea;
    stroke-width: 9;
}

.roho-timer-ring__progress {
    fill:               none;
    stroke:             var(--roho-rose);
    stroke-width:       9;
    stroke-linecap:     round;
    transition:         stroke-dashoffset 1s linear;
    filter:             drop-shadow(0 0 6px rgba(123,30,58,.35));
}

.roho-timer-text {
    position:        absolute;
    inset:           0;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    justify-content: center;
}

.roho-timer-display {
    font-family:         var(--font-display);
    font-size:           24px;
    font-weight:         700;
    color:               var(--roho-rose);
    font-variant-numeric: tabular-nums;
    line-height:         1;
}

.roho-timer-label {
    font-size:  10px;
    color:      var(--roho-muted);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.roho-unlocked-note {
    font-size:     13px;
    color:         var(--roho-green);
    margin:        0 0 16px;
    font-weight:   500;
}

/* Contact details (revealed post-payment) */
.roho-contact-details {
    background:    var(--roho-rose-pale);
    border:        1.5px solid #f0c4d4;
    border-radius: var(--roho-radius);
    padding:       16px;
    margin-top:    14px;
    animation:     roho-scale-in .35s cubic-bezier(.34,1.56,.64,1) both;
}

.roho-contact-phone {
    display:     flex;
    align-items: center;
    gap:         8px;
    margin-top:  10px;
    padding-top: 10px;
    border-top:  1px solid #f0c4d4;
}

.roho-contact-label {
    font-size:   13px;
    color:       var(--roho-muted);
    font-weight: 500;
}

.roho-contact-value {
    font-size:     15px;
    font-weight:   700;
    color:         var(--roho-text);
    font-variant-numeric: tabular-nums;
}

/* WhatsApp icon in button */
.roho-wa-icon {
    width:  20px;
    height: 20px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   10. SUBSCRIPTION PLANS PAGE
   ══════════════════════════════════════════════════════════════════ */

.roho-plans-wrap {
    max-width:   1100px;
    margin:      0 auto;
    padding:     40px 20px 60px;
}

.roho-plans-intro {
    text-align:    center;
    margin-bottom: 40px;
}

.roho-plans-heading {
    font-family: var(--font-display);
    font-size:   clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color:       var(--roho-text);
    margin:      0 0 10px;
}

.roho-plans-subheading {
    font-size:  15px;
    color:      var(--roho-muted);
    max-width:  520px;
    margin:     0 auto;
    line-height: 1.7;
}

/* Active subscription status banner */
.roho-sub-status {
    margin-bottom: 28px;
}

.roho-sub-active-card {
    display:       flex;
    align-items:   center;
    gap:           14px;
    background:    #e8f5e8;
    border:        1.5px solid #a3d9a3;
    border-radius: var(--roho-radius);
    padding:       16px 20px;
    animation:     roho-fade-in .3s both;
}

.roho-sub-active__icon {
    font-size:   28px;
    flex-shrink: 0;
}

.roho-sub-active-card p {
    margin:    6px 0 0;
    font-size: 13px;
    color:     #2d6e2d;
}

/* Plan cards grid */
.roho-plans-grid {
    display:              grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:                  20px;
    margin-bottom:        40px;
}

.roho-plan-card {
    background:    var(--roho-white);
    border:        2px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       28px 20px 24px;
    text-align:    center;
    position:      relative;
    transition:    var(--roho-trans-slow);
    box-shadow:    var(--roho-shadow);
    cursor:        pointer;
    animation:     roho-fade-up .4s both;
}

.roho-plan-card:nth-child(2) { animation-delay: .05s; }
.roho-plan-card:nth-child(3) { animation-delay: .10s; }
.roho-plan-card:nth-child(4) { animation-delay: .15s; }

.roho-plan-card:hover {
    border-color: var(--roho-rose-mid);
    box-shadow:   var(--roho-shadow-lg);
    transform:    translateY(-4px);
}

.roho-plan-card--popular {
    border-color:    var(--roho-rose);
    box-shadow:      0 8px 32px rgba(123,30,58,.18);
}

.roho-plan-card--popular::before {
    content:          '';
    position:         absolute;
    inset:            0;
    border-radius:    calc(var(--roho-radius-lg) - 1px);
    background:       linear-gradient(160deg, rgba(123,30,58,.04) 0%, transparent 60%);
    pointer-events:   none;
}

.roho-plan-card--selected {
    border-color:  var(--roho-rose);
    background:    var(--roho-rose-pale);
    box-shadow:    var(--roho-shadow-lg);
    transform:     translateY(-4px);
}

.roho-plan-card__badge {
    position:      absolute;
    top:           -13px;
    left:          50%;
    transform:     translateX(-50%);
    background:    var(--roho-grad);
    color:         #fff;
    font-size:     11px;
    font-weight:   700;
    padding:       4px 16px;
    border-radius: var(--roho-radius-pill);
    white-space:   nowrap;
    box-shadow:    var(--roho-shadow-md);
    letter-spacing: .03em;
}

.roho-plan-card__icon {
    font-size:     36px;
    margin-bottom: 10px;
}

.roho-plan-card__name {
    font-family:   var(--font-display);
    font-size:     20px;
    font-weight:   700;
    color:         var(--roho-text);
    margin:        0 0 4px;
}

.roho-plan-card__tagline {
    font-size:     12px;
    color:         var(--roho-muted);
    margin:        0 0 16px;
}

.roho-plan-card__price {
    display:         flex;
    align-items:     baseline;
    justify-content: center;
    gap:             4px;
    margin-bottom:   18px;
}

.roho-plan-card__currency {
    font-size:   15px;
    color:       var(--roho-rose);
    font-weight: 600;
}

.roho-plan-card__amount {
    font-family: var(--font-display);
    font-size:   38px;
    font-weight: 800;
    color:       var(--roho-rose);
    line-height: 1;
}

.roho-plan-card__period {
    font-size: 13px;
    color:     var(--roho-muted);
}

.roho-plan-card__features {
    list-style:    none;
    margin:        0 0 22px;
    padding:       0;
    font-size:     13px;
    text-align:    left;
}

.roho-plan-card__features li {
    padding:       5px 0;
    color:         #444;
    display:       flex;
    align-items:   center;
    gap:           6px;
    border-bottom: 1px solid var(--roho-border);
}

.roho-plan-card__features li:last-child {
    border-bottom: none;
}

/* Sub payment form */
.roho-sub-form-wrap {
    max-width:     540px;
    margin:        0 auto 36px;
    animation:     roho-fade-up .35s both;
}

.roho-sub-form-card {
    background:    var(--roho-white);
    border:        2px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       32px;
    box-shadow:    var(--roho-shadow-md);
}

.roho-sub-form-card__title {
    font-family:   var(--font-display);
    font-size:     20px;
    font-weight:   700;
    color:         var(--roho-rose);
    margin:        0 0 24px;
    padding-bottom: 16px;
    border-bottom:  1.5px solid var(--roho-border);
}

/* STK states */
.roho-stk-waiting {
    text-align: center;
    padding:    24px 0;
}

.roho-stk-waiting p {
    color:      var(--roho-muted);
    font-size:  14px;
    margin:     10px 0;
}

.roho-stk-timer {
    display:       inline-block;
    background:    var(--roho-rose-pale);
    color:         var(--roho-rose);
    padding:       6px 18px;
    border-radius: var(--roho-radius-pill);
    font-weight:   700;
    font-size:     14px;
    margin-top:    10px;
    border:        1px solid #f0c4d4;
}

.roho-stk-success {
    text-align:  center;
    padding:     28px 0;
    animation:   roho-scale-in .4s cubic-bezier(.34,1.56,.64,1) both;
}

.roho-stk-success h4 {
    font-family:   var(--font-display);
    font-size:     22px;
    color:         var(--roho-green);
    margin:        10px 0 8px;
}

.roho-stk-success p {
    font-size:  14px;
    color:      var(--roho-muted);
}

/* Pay summary row */
.roho-pay-summary {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    padding:         14px 18px;
    background:      var(--roho-rose-pale);
    border-radius:   10px;
    margin-bottom:   18px;
    border:          1px solid #f0c4d4;
}

.roho-pay-label {
    font-size:   14px;
    color:       var(--roho-muted);
    font-weight: 500;
}

.roho-pay-amount {
    font-family: var(--font-display);
    font-size:   20px;
    font-weight: 700;
    color:       var(--roho-rose);
}

.roho-plans-faq {
    text-align: center;
    font-size:  13px;
    color:      var(--roho-muted);
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   11. PROFILE REGISTRATION FORM
   ══════════════════════════════════════════════════════════════════ */

.roho-form-wrap {
    max-width: 780px;
    margin:    0 auto;
    padding:   40px 20px 60px;
}

.roho-form-intro {
    text-align:    center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom:  1.5px solid var(--roho-border);
}

.roho-form-heading {
    font-family: var(--font-display);
    font-size:   clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color:       var(--roho-text);
    margin:      0 0 8px;
}

.roho-form-subheading {
    font-size:   14px;
    color:       var(--roho-muted);
    line-height: 1.7;
    max-width:   520px;
    margin:      0 auto;
}

/* Fieldsets */
.roho-fieldset {
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       28px;
    margin-bottom: 24px;
    background:    var(--roho-white);
    box-shadow:    var(--roho-shadow);
    animation:     roho-fade-up .4s both;
}

.roho-fieldset:nth-child(2) { animation-delay: .05s; }
.roho-fieldset:nth-child(3) { animation-delay: .10s; }
.roho-fieldset:nth-child(4) { animation-delay: .15s; }
.roho-fieldset:nth-child(5) { animation-delay: .20s; }

.roho-fieldset__legend {
    font-family:   var(--font-display);
    font-size:     15px;
    font-weight:   700;
    color:         var(--roho-rose);
    padding:       0 10px;
    letter-spacing: .01em;
}

.roho-fieldset__desc {
    font-size:     13px;
    color:         var(--roho-muted);
    margin:        0 0 20px;
    line-height:   1.6;
    padding:       10px 14px;
    background:    var(--roho-gold-light);
    border-radius: 8px;
    border-left:   3px solid var(--roho-gold);
}

/* Photo upload */
.roho-photo-upload {
    position: relative;
}

.roho-file-input {
    position: absolute;
    opacity:  0;
    width:    100%;
    height:   100%;
    cursor:   pointer;
    top:      0;
    left:     0;
    z-index:  2;
}

.roho-photo-preview {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    justify-content: center;
    gap:            10px;
    border:         2px dashed var(--roho-border-mid);
    border-radius:  var(--roho-radius);
    padding:        36px 20px;
    background:     var(--roho-bg);
    cursor:         pointer;
    transition:     var(--roho-trans);
    min-height:     160px;
}

.roho-photo-preview:hover {
    border-color: var(--roho-rose-mid);
    background:   var(--roho-rose-pale);
}

.roho-photo-upload__icon  { font-size: 36px; }
.roho-photo-upload__text  { font-weight: 600; color: var(--roho-text); font-size: 14px; }
.roho-photo-upload__hint  { font-size: 12px; color: var(--roho-muted); }

/* Extra photos grid */
.roho-extra-upload-grid {
    display:   flex;
    gap:       10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.roho-extra-slot {
    width:    80px;
    height:   80px;
    position: relative;
}

.roho-extra-label {
    display:         flex;
    align-items:     center;
    justify-content: center;
    width:           100%;
    height:          100%;
    border:          2px dashed var(--roho-border-mid);
    border-radius:   10px;
    cursor:          pointer;
    background:      var(--roho-bg);
    transition:      var(--roho-trans);
}

.roho-extra-label:hover {
    border-color: var(--roho-rose-mid);
    background:   var(--roho-rose-pale);
}

.roho-extra-label__plus {
    font-size: 24px;
    color:     var(--roho-muted);
}

/* Form submit area */
.roho-form-submit {
    background:    var(--roho-rose-pale);
    border:        1.5px solid #f0c4d4;
    border-radius: var(--roho-radius-lg);
    padding:       28px;
    margin-top:    8px;
}

.roho-submit-note {
    font-size:   12px;
    color:       var(--roho-muted);
    text-align:  center;
    margin:      12px 0 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   12. TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */

.roho-testimonials-wrap {
    max-width:   1100px;
    margin:      0 auto;
    padding:     40px 20px 64px;
}

.roho-testimonials-grid {
    display:              grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap:                  22px;
    margin-bottom:        48px;
}

.roho-testimonial-card {
    background:    var(--roho-white);
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       24px;
    box-shadow:    var(--roho-shadow);
    transition:    var(--roho-trans);
    animation:     roho-fade-up .4s both;
}

.roho-testimonial-card:hover {
    box-shadow:   var(--roho-shadow-md);
    transform:    translateY(-3px);
    border-color: var(--roho-border-mid);
}

.roho-testimonial-card--featured {
    border-color: var(--roho-gold);
    background:   var(--roho-gold-light);
    box-shadow:   var(--roho-shadow-gold);
}

.roho-testimonial-card--featured::before {
    content:        '⭐ Featured Story';
    display:        block;
    font-size:      10px;
    font-weight:    700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color:          var(--roho-gold);
    margin-bottom:  12px;
}

.roho-testimonial-card__stars {
    font-size:     18px;
    margin-bottom: 12px;
    display:       block;
}

.roho-testimonial-card__quote {
    font-family:   var(--font-display);
    font-style:    italic;
    font-size:     15px;
    line-height:   1.75;
    color:         var(--roho-text-soft);
    margin:        0 0 16px;
    position:      relative;
    padding-left:  18px;
}

.roho-testimonial-card__quote::before {
    content:   '\201C';
    position:  absolute;
    left:      0;
    top:       -4px;
    font-size: 36px;
    line-height: 1;
    color:     var(--roho-rose);
    opacity:   .3;
    font-family: var(--font-display);
}

.roho-testimonial-card__author {
    display:     flex;
    align-items: center;
    gap:         10px;
    font-size:   13px;
    font-weight: 600;
    padding-top: 14px;
    border-top:  1px solid var(--roho-border);
    color:       var(--roho-text);
}

.roho-testimonial-card__county {
    color:       var(--roho-muted);
    font-weight: 400;
}

/* Testimonial form */
.roho-testimonial-form-wrap {
    max-width:     580px;
}

.roho-testimonial-form .roho-btn {
    margin-top: 8px;
}

/* Star rating input */
.roho-star-rating {
    display:        flex;
    gap:            6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.roho-star-rating input {
    display: none;
}

.roho-star-rating label {
    font-size:   28px;
    cursor:      pointer;
    filter:      grayscale(1) opacity(.5);
    transition:  filter .15s;
}

.roho-star-rating input:checked ~ label,
.roho-star-rating label:hover,
.roho-star-rating label:hover ~ label {
    filter: grayscale(0) opacity(1);
}

/* ══════════════════════════════════════════════════════════════════
   13. CONTACT PAGE
   ══════════════════════════════════════════════════════════════════ */

.roho-contact-wrap {
    max-width:   1000px;
    margin:      0 auto;
    padding:     40px 20px 64px;
}

.roho-contact-layout {
    display:              grid;
    grid-template-columns: 1fr 300px;
    gap:                  36px;
    align-items:          start;
}

.roho-contact-info-card {
    background:    var(--roho-white);
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-lg);
    padding:       24px;
    box-shadow:    var(--roho-shadow);
    position:      sticky;
    top:           24px;
}

.roho-contact-info-card__title {
    font-family:   var(--font-display);
    font-size:     16px;
    font-weight:   700;
    color:         var(--roho-rose);
    margin:        0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--roho-border);
}

.roho-contact-item {
    display:       flex;
    align-items:   flex-start;
    gap:           14px;
    margin-bottom: 18px;
}

.roho-contact-item:last-child {
    margin-bottom: 0;
}

.roho-contact-item__icon {
    font-size:   22px;
    flex-shrink: 0;
    margin-top:  2px;
}

.roho-contact-item__label {
    display:        block;
    font-size:      10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color:          var(--roho-muted);
    margin-bottom:  3px;
    font-weight:    700;
}

.roho-contact-item__value {
    font-size:      14px;
    font-weight:    500;
    color:          var(--roho-text);
    text-decoration: none;
    transition:     color .15s;
}

.roho-contact-item__value:hover {
    color: var(--roho-rose);
}

.roho-wa-link {
    color:       var(--roho-wa) !important;
    font-weight: 700;
}

.roho-wa-link:hover {
    color: #1ebb57 !important;
}

/* ══════════════════════════════════════════════════════════════════
   14. FAQ ACCORDION
   ══════════════════════════════════════════════════════════════════ */

.roho-faq-wrap {
    max-width:   800px;
    margin:      0 auto;
    padding:     40px 20px 64px;
}

.roho-faq-section {
    margin-bottom: 36px;
}

.roho-faq-section__title {
    font-family:   var(--font-display);
    font-size:     18px;
    font-weight:   700;
    color:         var(--roho-rose);
    margin:        0 0 16px;
}

.roho-faq-list {
    display:        flex;
    flex-direction: column;
    gap:            10px;
}

.roho-faq-item {
    background:    var(--roho-white);
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius);
    overflow:      hidden;
    transition:    border-color .15s, box-shadow .15s;
}

.roho-faq-item:has([aria-expanded="true"]) {
    border-color: var(--roho-border-mid);
    box-shadow:   var(--roho-shadow);
}

.roho-faq-item__question {
    width:           100%;
    background:      none;
    border:          none;
    padding:         18px 22px;
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    gap:             14px;
    font-family:     var(--font-body);
    font-size:       15px;
    font-weight:     600;
    color:           var(--roho-text);
    cursor:          pointer;
    text-align:      left;
    transition:      background .15s;
    line-height:     1.4;
}

.roho-faq-item__question:hover {
    background: var(--roho-rose-pale);
}

.roho-faq-item__question[aria-expanded="true"] {
    color:      var(--roho-rose);
    background: var(--roho-rose-pale);
}

.roho-faq-item__chevron {
    font-size:   22px;
    color:       var(--roho-rose);
    flex-shrink: 0;
    transition:  transform .22s cubic-bezier(.4,0,.2,1);
}

.roho-faq-item__question[aria-expanded="true"] .roho-faq-item__chevron {
    transform: rotate(90deg);
}

.roho-faq-item__answer {
    padding: 0 22px 18px;
}

.roho-faq-item__answer p {
    font-size:   14px;
    line-height: 1.75;
    color:       #444;
    margin:      14px 0 0;
}

.roho-faq-cta {
    text-align:    center;
    margin-top:    40px;
    padding:       28px 24px;
    background:    var(--roho-rose-pale);
    border-radius: var(--roho-radius-lg);
    border:        1.5px solid #f0c4d4;
}

.roho-faq-cta p {
    font-size:   15px;
    font-weight: 600;
    color:       var(--roho-text);
    margin:      0 0 16px;
}

/* ══════════════════════════════════════════════════════════════════
   15. PAYMENT MODAL
   ══════════════════════════════════════════════════════════════════ */

.roho-modal {
    position:        fixed;
    inset:           0;
    z-index:         99999;
    display:         flex;
    align-items:     center;
    justify-content: center;
    padding:         16px;
}

.roho-modal[hidden] {
    display: none;
}

.roho-modal__backdrop {
    position:   absolute;
    inset:      0;
    background: rgba(26, 8, 14, .62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation:  roho-fade-in .2s both;
}

.roho-modal__box {
    position:      relative;
    background:    var(--roho-white);
    border-radius: var(--roho-radius-lg);
    padding:       36px 32px;
    width:         100%;
    max-width:     440px;
    box-shadow:    0 20px 60px rgba(26, 8, 14, .3);
    text-align:    center;
    max-height:    90vh;
    overflow-y:    auto;
    animation:     roho-modal-in .3s cubic-bezier(.34,1.4,.64,1) both;
    scrollbar-width: thin;
    scrollbar-color: var(--roho-border) transparent;
}

/* Thin decorative top border on modal */
.roho-modal__box::before {
    content:        '';
    position:       absolute;
    top:            0;
    left:           0;
    right:          0;
    height:         4px;
    background:     var(--roho-grad);
    border-radius:  var(--roho-radius-lg) var(--roho-radius-lg) 0 0;
}

.roho-modal__close {
    position:   absolute;
    top:        14px;
    right:      16px;
    background: none;
    border:     none;
    font-size:  24px;
    color:      var(--roho-muted);
    cursor:     pointer;
    line-height: 1;
    padding:    4px;
    border-radius: 50%;
    transition: var(--roho-trans);
    width:      32px;
    height:     32px;
    display:    flex;
    align-items: center;
    justify-content: center;
}

.roho-modal__close:hover {
    background: var(--roho-rose-pale);
    color:      var(--roho-rose);
}

.roho-modal__icon {
    font-size:     48px;
    margin-bottom: 12px;
    display:       block;
}

.roho-modal__title {
    font-family:   var(--font-display);
    font-size:     22px;
    font-weight:   700;
    color:         var(--roho-text);
    margin:        0 0 8px;
}

.roho-modal__desc {
    font-size:   14px;
    color:       var(--roho-muted);
    margin:      0 0 24px;
    line-height: 1.65;
}

.roho-modal .roho-field {
    text-align: left;
}

/* Body lock when modal open */
body.roho-modal-open {
    overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════════
   16. SHARED COMPONENTS (override / extend inline styles)
   ══════════════════════════════════════════════════════════════════ */

/* Tags / pills */
.roho-tag {
    display:     inline-flex;
    align-items: center;
    gap:         5px;
    padding:     5px 13px;
    background:  var(--roho-rose-pale);
    border:      1px solid #f0c4d4;
    border-radius: var(--roho-radius-pill);
    font-size:   12px;
    font-weight: 500;
    color:       var(--roho-rose);
    line-height: 1.2;
}

.roho-tag__icon {
    font-size: 13px;
}

.roho-interest-tag {
    display:       inline-block;
    padding:       6px 14px;
    background:    #f5f0f2;
    border-radius: var(--roho-radius-pill);
    font-size:     13px;
    color:         var(--roho-text);
    border:        1px solid transparent;
    transition:    var(--roho-trans);
}

.roho-interest-tag:hover {
    border-color: var(--roho-border-mid);
}

.roho-interest-tag--lang {
    background: #e8f4fd;
    color:      #1a4a7a;
}

/* Page intro headers */
.roho-page-intro {
    text-align:    center;
    margin-bottom: 40px;
}

.roho-page-intro__title {
    font-family: var(--font-display);
    font-size:   clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color:       var(--roho-text);
    margin:      0 0 10px;
}

.roho-page-intro__desc {
    font-size:   15px;
    color:       var(--roho-muted);
    max-width:   560px;
    margin:      0 auto;
    line-height: 1.7;
}

/* Section titles */
.roho-section-title {
    font-family:   var(--font-display);
    font-size:     20px;
    font-weight:   700;
    color:         var(--roho-text);
    margin:        0 0 18px;
}

.roho-section-desc {
    font-size:   13px;
    color:       var(--roho-muted);
    margin:      0 0 18px;
    line-height: 1.65;
}

/* Empty states */
.roho-empty-state {
    color:       var(--roho-muted);
    font-style:  italic;
    text-align:  center;
    padding:     48px 24px;
    font-family: var(--font-display);
    font-size:   16px;
}

/* Notices */
.roho-notice {
    padding:       14px 18px;
    border-radius: var(--roho-radius);
    font-size:     14px;
    margin-bottom: 18px;
    line-height:   1.6;
}

.roho-notice--success {
    background:  #e8f5e8;
    border-left: 4px solid var(--roho-green);
    color:       #1a5c1a;
}

.roho-notice--error {
    background:  #fde8e8;
    border-left: 4px solid #c0392b;
    color:       #8b0000;
}

.roho-maintenance {
    text-align: center;
    padding:    80px 24px;
    font-size:  16px;
    color:      var(--roho-muted);
    font-family: var(--font-display);
    font-style: italic;
}

/* Buttons — enhanced hover/focus states */
.roho-btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    gap:             8px;
    padding:         11px 24px;
    border-radius:   9px;
    font-family:     var(--font-body);
    font-weight:     600;
    font-size:       14px;
    cursor:          pointer;
    border:          2px solid transparent;
    text-decoration: none !important;
    transition:      var(--roho-trans);
    line-height:     1.3;
    white-space:     nowrap;
    letter-spacing:  .01em;
}

.roho-btn:focus-visible {
    outline:        3px solid var(--roho-rose-mid);
    outline-offset: 2px;
}

.roho-btn--primary {
    background: var(--roho-rose);
    color:      #fff;
    border-color: var(--roho-rose);
    box-shadow:   0 2px 8px rgba(123,30,58,.2);
}

.roho-btn--primary:hover {
    background:   #5a1529;
    border-color: #5a1529;
    color:        #fff !important;
    box-shadow:   0 4px 16px rgba(123,30,58,.3);
    transform:    translateY(-1px);
}

.roho-btn--outline {
    background:   transparent;
    color:        var(--roho-rose);
    border-color: var(--roho-rose);
}

.roho-btn--outline:hover {
    background: var(--roho-rose-pale);
}

.roho-btn--ghost {
    background:   transparent;
    color:        var(--roho-muted);
    border-color: var(--roho-border);
}

.roho-btn--ghost:hover {
    background: #f5f0f2;
    color:      var(--roho-text);
}

.roho-btn--whatsapp {
    background:   var(--roho-wa);
    color:        #fff;
    border-color: #1ebb57;
    box-shadow:   0 2px 8px rgba(37,211,102,.2);
}

.roho-btn--whatsapp:hover {
    background: #1ebb57;
    color:      #fff !important;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
    transform:  translateY(-1px);
}

.roho-btn--full   { width: 100%; }
.roho-btn--sm     { padding: 7px 16px; font-size: 13px; }
.roho-btn--lg     { padding: 14px 32px; font-size: 16px; }
.roho-btn__icon   { font-size: 16px; }

/* Forms */
.roho-input,
.roho-select,
.roho-textarea {
    width:          100%;
    padding:        10px 14px;
    border:         1.5px solid var(--roho-border);
    border-radius:  9px;
    font-size:      14px;
    font-family:    var(--font-body);
    color:          var(--roho-text);
    background:     var(--roho-white);
    transition:     border-color .15s, box-shadow .15s;
    appearance:     none;
    -webkit-appearance: none;
}

.roho-input:focus,
.roho-select:focus,
.roho-textarea:focus {
    outline:      none;
    border-color: var(--roho-rose-mid);
    box-shadow:   0 0 0 3px rgba(192,64,106,.12);
}

.roho-textarea {
    resize:     vertical;
    min-height: 130px;
    line-height: 1.65;
}

.roho-input--sm { width: auto; }

.roho-select {
    background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat:   no-repeat;
    background-position: right 14px center;
    padding-right:       38px;
    cursor:              pointer;
}

.roho-select--full { width: 100%; }

.roho-label {
    display:     block;
    font-size:   13px;
    font-weight: 600;
    color:       var(--roho-text);
    margin-bottom: 6px;
}

.roho-optional {
    font-weight: 400;
    color:       var(--roho-muted);
    font-size:   12px;
}

.roho-field {
    margin-bottom: 20px;
}

.roho-field-hint {
    font-size:   12px;
    color:       var(--roho-muted);
    margin:      5px 0 0;
    line-height: 1.55;
}

.roho-field-error {
    font-size:  12px;
    color:      #c0392b;
    display:    block;
    margin:     5px 0 0;
    font-weight: 500;
}

.roho-char-count {
    font-size:  12px;
    color:      var(--roho-muted);
    text-align: right;
    margin-top: 4px;
}

.roho-field-row {
    display:              grid;
    grid-template-columns: 1fr 1fr;
    gap:                  16px;
}

/* Phone input */
.roho-phone-input {
    display:       flex;
    align-items:   center;
    border:        1.5px solid var(--roho-border);
    border-radius: 9px;
    overflow:      hidden;
    transition:    border-color .15s, box-shadow .15s;
}

.roho-phone-input:focus-within {
    border-color: var(--roho-rose-mid);
    box-shadow:   0 0 0 3px rgba(192,64,106,.12);
}

.roho-phone-prefix {
    padding:      10px 13px;
    background:   #f5f0f2;
    color:        var(--roho-muted);
    font-size:    13px;
    white-space:  nowrap;
    border-right: 1.5px solid var(--roho-border);
    flex-shrink:  0;
    font-weight:  500;
}

.roho-phone-input .roho-input {
    border:        none;
    border-radius: 0;
    box-shadow:    none !important;
}

/* Voucher row */
.roho-voucher-row {
    display: flex;
    gap:     10px;
}

.roho-voucher-row .roho-input { flex: 1; }

.roho-voucher-result {
    margin-top:    10px;
    padding:       9px 13px;
    border-radius: 8px;
    font-size:     13px;
    line-height:   1.5;
}

.roho-voucher-result--ok  { background: #e8f5e8; color: #1a5c1a; border: 1px solid #a3d9a3; }
.roho-voucher-result--err { background: #fde8e8; color: #8b0000; border: 1px solid #f5a5a5; }

/* Checkboxes */
.roho-checkboxes {
    display:   flex;
    flex-wrap: wrap;
    gap:       8px;
}

.roho-check-label {
    display:       inline-flex;
    align-items:   center;
    gap:           7px;
    padding:       7px 14px;
    border:        1.5px solid var(--roho-border);
    border-radius: var(--roho-radius-pill);
    font-size:     13px;
    cursor:        pointer;
    transition:    var(--roho-trans);
    line-height:   1.3;
}

.roho-check-label:hover {
    border-color: var(--roho-rose-mid);
    background:   var(--roho-rose-pale);
    color:        var(--roho-rose);
}

.roho-check-label:has(input:checked) {
    border-color: var(--roho-rose);
    background:   var(--roho-rose-pale);
    color:        var(--roho-rose);
    font-weight:  600;
}

.roho-check-label input[type="checkbox"] {
    accent-color: var(--roho-rose);
    flex-shrink:  0;
}

.roho-check-label--terms {
    border:      none;
    padding:     0;
    border-radius: 0;
    font-size:   13px;
    margin-bottom: 18px;
    display:     flex;
}

.roho-check-label--terms:hover {
    background: none;
    color:      var(--roho-text);
}

/* Range row */
.roho-range-row {
    display:     flex;
    align-items: center;
    gap:         10px;
}

.roho-range-sep { color: var(--roho-muted); }

/* Filters mobile open class */
.roho-filters--open { display: block !important; }

/* ══════════════════════════════════════════════════════════════════
   17. ANIMATIONS & KEYFRAMES
   ══════════════════════════════════════════════════════════════════ */

/* Spin (STK waiting spinner) */
.roho-spin {
    animation:  roho-spin 1.2s linear infinite;
    display:    inline-block;
    font-size:  40px;
}

@keyframes roho-spin {
    to { transform: rotate(360deg); }
}

/* Fade in */
@keyframes roho-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Fade up (card entrances) */
@keyframes roho-fade-up {
    from {
        opacity:   0;
        transform: translateY(18px);
    }
    to {
        opacity:   1;
        transform: translateY(0);
    }
}

/* Scale in (contact reveal, success states) */
@keyframes roho-scale-in {
    from {
        opacity:   0;
        transform: scale(.88);
    }
    to {
        opacity:   1;
        transform: scale(1);
    }
}

/* Modal entrance */
@keyframes roho-modal-in {
    from {
        opacity:   0;
        transform: scale(.9) translateY(20px);
    }
    to {
        opacity:   1;
        transform: scale(1) translateY(0);
    }
}

/* Pulse (for timer ring when < 5 mins remaining) */
@keyframes roho-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .55; }
}

.roho-timer-display--urgent {
    animation: roho-pulse 1.4s ease-in-out infinite;
    color:     var(--roho-rose-mid) !important;
}

/* Gold shimmer on featured badges */
@keyframes roho-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

.roho-plan-card--popular .roho-plan-card__badge {
    background:              linear-gradient(90deg, #C9922A 0%, #e0aa4a 40%, #C9922A 100%);
    background-size:         200% auto;
    animation:               roho-shimmer 2.8s linear infinite;
}

/* ══════════════════════════════════════════════════════════════════
   18. RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════════════════════════ */

/* Tablet: ≤ 960px */
@media (max-width: 960px) {

    .roho-browse-layout {
        grid-template-columns: 1fr;
    }

    .roho-filters {
        display:  none;
        position: static;
    }

    .roho-filters-toggle {
        display: inline-flex;
    }

    .roho-profile-page__layout {
        grid-template-columns: 1fr;
    }

    .roho-profile-page__sidebar {
        position: static;
    }

    .roho-profile-photo-wrap {
        max-width: 320px;
        margin:    0 auto 16px;
    }

    .roho-contact-layout {
        grid-template-columns: 1fr;
    }

    .roho-contact-info-card {
        position: static;
        order:    2;
    }

    .roho-how {
        gap: 0;
    }

    .roho-how__step {
        padding:   16px;
        max-width: none;
    }

    .roho-how__step + .roho-how__step::before {
        display: none;
    }

    .roho-hero-stats {
        gap: 24px;
    }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {

    .roho-hero {
        padding: 64px 16px 72px;
    }

    .roho-hero__title {
        font-size: 2rem;
    }

    .roho-hero__cta {
        flex-direction: column;
        align-items:    stretch;
    }

    .roho-hero-stats {
        gap:        16px;
        padding:    20px 16px;
    }

    .roho-hero-stat__num {
        font-size: 1.6rem;
    }

    .roho-profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap:                   14px;
    }

    .roho-profile-card__name {
        font-size: 15px;
    }

    .roho-plans-grid {
        grid-template-columns: 1fr;
    }

    .roho-field-row {
        grid-template-columns: 1fr;
    }

    .roho-modal__box {
        padding: 28px 20px;
    }

    .roho-details-grid {
        grid-template-columns: 1fr;
    }

    .roho-detail:nth-child(even) {
        border-right: none;
    }

    .roho-detail {
        border-right: none;
    }

    .roho-plan-card {
        padding: 24px 18px 20px;
    }

    .roho-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .roho-how {
        flex-direction: column;
        align-items:    center;
    }

    .roho-how__step {
        max-width:     200px;
        margin-bottom: 20px;
    }

    .roho-fieldset {
        padding: 20px 16px;
    }

    .roho-sub-form-card {
        padding: 24px 18px;
    }

    .roho-browse-wrap,
    .roho-plans-wrap,
    .roho-form-wrap,
    .roho-faq-wrap,
    .roho-contact-wrap,
    .roho-testimonials-wrap {
        padding-left:  12px;
        padding-right: 12px;
    }
}

/* Very small: ≤ 400px */
@media (max-width: 400px) {

    .roho-profile-grid {
        grid-template-columns: 1fr;
    }

    .roho-timer-wrap,
    .roho-timer-ring {
        width:  120px;
        height: 120px;
    }

    .roho-timer-display {
        font-size: 20px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   19. PRINT
   ══════════════════════════════════════════════════════════════════ */

@media print {
    .roho-filters,
    .roho-load-more-wrap,
    .roho-unlock-block,
    .roho-modal,
    .roho-hero-stats,
    .roho-btn { display: none !important; }

    .roho-profile-page__layout {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════════
   THEME LAYOUT — Header, Footer, Page wrapper
   (Added by Roho Theme — not part of original plugin CSS)
   ══════════════════════════════════════════════════════════════════ */

/* ── Site Header ─────────────────────────────────────────────────── */
.roho-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--roho-white);
    border-bottom: 1px solid var(--roho-border);
    box-shadow: 0 2px 12px rgba(123,30,58,.08);
}
.roho-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.roho-header-brand { display: flex; align-items: center; gap: .75rem; }
.roho-site-title {
    font-family: var(--roho-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--roho-rose);
    text-decoration: none;
}
.roho-site-tagline { font-size: .8rem; color: var(--roho-muted); }
.roho-primary-nav .roho-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}
.roho-primary-nav .roho-nav-list a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--roho-text-soft);
    text-decoration: none;
    transition: color .2s;
}
.roho-primary-nav .roho-nav-list a:hover { color: var(--roho-rose); }
.roho-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.roho-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--roho-rose);
    border-radius: 2px;
    transition: all .3s;
}

/* ── Page wrap ───────────────────────────────────────────────────── */
#roho-page-wrap { min-height: calc(100vh - 72px); }
.roho-main-content { width: 100%; }
.roho-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.roho-hero {
    background: linear-gradient(135deg, var(--roho-rose) 0%, #4a0f1f 100%);
    color: var(--roho-white);
    padding: 5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.roho-hero__content { max-width: 560px; }
.roho-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    padding: .3rem 1rem;
    font-size: .85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.roho-hero__title {
    font-family: var(--roho-font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--roho-white);
}
.roho-hero__title em { color: var(--roho-gold-mid); font-style: normal; }
.roho-hero__subtitle { font-size: 1.1rem; opacity: .9; margin-bottom: 1.5rem; }
.roho-hero__counters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.roho-hero__counters .roho-counter__value {
    font-family: var(--roho-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--roho-gold-mid);
}
.roho-hero__counters .roho-counter__label { font-size: .85rem; opacity: .8; }
.roho-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.roho-hero__trust { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .85rem; opacity: .75; }
.roho-hero__carousel {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.roho-hero-card {
    width: 160px;
    border-radius: var(--roho-radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}
.roho-hero-card img { width: 100%; height: 180px; object-fit: cover; }
.roho-hero-card__info {
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .82rem;
}

/* ── How it works ────────────────────────────────────────────────── */
.roho-how-it-works { background: var(--roho-cream); padding: 5rem 1.5rem; text-align: center; }
.roho-section-title {
    font-family: var(--roho-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--roho-rose);
    margin-bottom: .5rem;
}
.roho-section-sub { color: var(--roho-muted); margin-bottom: 2.5rem; }
.roho-steps { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.roho-step { max-width: 240px; text-align: center; }
.roho-step__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.roho-step h3 { font-family: var(--roho-font-heading); color: var(--roho-rose); margin-bottom: .5rem; }
.roho-step p { font-size: .95rem; color: var(--roho-text-soft); }

/* ── Hot section ─────────────────────────────────────────────────── */
.roho-hot-section { padding: 5rem 1.5rem; }
.roho-hot-section .roho-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.roho-profile-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.roho-section-cta { margin-top: 2.5rem; }

/* ── Plans teaser ────────────────────────────────────────────────── */
.roho-plans-teaser {
    background: var(--roho-rose);
    color: var(--roho-white);
    padding: 5rem 1.5rem;
    text-align: center;
}
.roho-plans-teaser .roho-section-title { color: var(--roho-white); }
.roho-plans-teaser .roho-section-sub { opacity: .85; }
.roho-plan-cards-mini {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.roho-plan-mini {
    background: rgba(255,255,255,.12);
    border-radius: var(--roho-radius);
    padding: 1.25rem 1.5rem;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
}
.roho-plan-mini--popular { background: var(--roho-gold); border-color: var(--roho-gold-mid); }
.roho-plan-mini strong { font-family: var(--roho-font-heading); font-size: 1.1rem; }
.roho-plan-mini span { font-size: 1.4rem; font-weight: 700; }
.roho-plan-mini em { font-style: normal; font-size: .85rem; opacity: .8; }

/* ── Site Footer ─────────────────────────────────────────────────── */
.roho-site-footer {
    background: #1a0a10;
    color: rgba(255,255,255,.7);
    padding: 4rem 1.5rem 0;
}
.roho-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.roho-footer-logo { font-family: var(--roho-font-heading); font-size: 1.4rem; color: var(--roho-white); }
.roho-footer-tagline { font-size: .9rem; margin: .5rem 0 1rem; }
.roho-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--roho-wa);
    color: #fff;
    padding: .5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}
.roho-footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.roho-footer-nav-list a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; }
.roho-footer-nav-list a:hover { color: var(--roho-gold-mid); }
.roho-footer-trust { display: flex; flex-direction: column; gap: .6rem; justify-content: center; }
.roho-trust-badge { font-size: .85rem; }
.roho-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    opacity: .55;
}
.roho-footer-bottom a { color: inherit; }

/* ── Scroll top button ───────────────────────────────────────────── */
.roho-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--roho-rose);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: var(--roho-shadow-lg);
    transition: opacity .3s, transform .3s;
}
.roho-scroll-top:hover { transform: translateY(-3px); }

/* ── Mobile responsive overrides ────────────────────────────────── */
@media (max-width: 768px) {
    .roho-hero { flex-direction: column; padding: 3rem 1rem; gap: 2rem; }
    .roho-hero__carousel { display: none; }
    .roho-header-inner { height: 60px; }
    .roho-primary-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--roho-white);
        border-bottom: 1px solid var(--roho-border);
        padding: 1rem 1.5rem;
        z-index: 999;
    }
    .roho-primary-nav.is-open { display: block; }
    .roho-primary-nav .roho-nav-list { flex-direction: column; gap: 1rem; }
    .roho-nav-toggle { display: flex; }
    .roho-footer-inner { flex-direction: column; gap: 2rem; }
    .roho-footer-bottom { flex-direction: column; }
    .roho-plan-cards-mini { gap: .75rem; }
    .roho-plan-mini { min-width: 120px; }
}
