﻿/* ==========================================
   RW Pool Guide – Průvodce výběrem bazénového vysavače
   v3.3 – externí soubor, prefix rw-pool-guide
   RobotWorld.cz design system
   ========================================== */
.rw-pool-guide-wrapper {
    max-width: 1075px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
.rw-pool-guide-wrapper *, .rw-pool-guide-wrapper *::before, .rw-pool-guide-wrapper *::after { box-sizing: border-box; }

/* ============ SBALENÁ LIŠTA (launcher) ============ */
.rw-pool-guide-launcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #eef5f9;
    border: 1px solid #cedee7;
    border-radius: 2px;
    padding: 22px 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 2px 3px 0px rgba(166,193,208,0.42), 0px 2px 11px 0px rgba(166,193,208,0.35);
    transition: box-shadow 0.25s ease;
}
.rw-pool-guide-launcher:hover {
    box-shadow: 0px 2px 10px 0px rgba(166,193,208,0.75), 0px 2px 3px 0px rgba(166,193,208,0.82);
}
.rw-pool-guide-launcher::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 100%;
    background: #5fbb2e;
    z-index: 3;
}
.rw-pool-guide-waves {
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 32px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}
.rw-pool-guide-waves svg {
    position: absolute;
    bottom: 0; left: 0;
    width: 200%; height: 100%;
    animation: rwPoolGuideWave 9s linear infinite;
}
.rw-pool-guide-waves svg:nth-child(2) {
    animation-duration: 14s;
    animation-direction: reverse;
    opacity: 0.6;
    bottom: 4px;
}
@keyframes rwPoolGuideWave {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.rw-pool-guide-bubble {
    position: absolute;
    bottom: -12px;
    border-radius: 50%;
    background: rgba(67,134,252,0.18);
    border: 1px solid rgba(67,134,252,0.25);
    animation: rwPoolGuideBubble linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes rwPoolGuideBubble {
    from { transform: translateY(0); opacity: 0; }
    15%  { opacity: 1; }
    to   { transform: translateY(-90px); opacity: 0; }
}
.rw-pool-guide-launcher-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #cedee7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(166,193,208,0.45);
}
.rw-pool-guide-launcher-icon svg { width: 32px; height: 32px; fill: #4386fc; }
.rw-pool-guide-launcher-text { position: relative; z-index: 2; flex: 1; min-width: 0; }
.rw-pool-guide-launcher-text h2 {
    margin: 0 0 4px;
    font-size: 19px;
    line-height: 26px;
    font-weight: 400;
    color: #000;
}
.rw-pool-guide-launcher-text h2 strong { font-weight: 500; color: #4386fc; }
.rw-pool-guide-launcher-text p {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    opacity: 0.85;
}
.rw-pool-guide-launcher-cta {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: #5fbb2e;
    color: #fff;
    border: 1px solid #55a829;
    border-radius: 2px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 24px;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    white-space: nowrap;
    box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset, 0px 3px 6px rgba(0,0,0,0.15), 0px 1px 2px rgba(0,0,0,0.1);
    transition: background 0.2s ease;
    animation: rwPoolGuidePulse 2.6s ease-in-out infinite;
}
.rw-pool-guide-launcher:hover .rw-pool-guide-launcher-cta { background: #54a828; animation: none; }
@keyframes rwPoolGuidePulse {
    0%, 100% { box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset, 0 0 0 0 rgba(95,187,46,0.45); }
    50%      { box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset, 0 0 0 9px rgba(95,187,46,0); }
}
.rw-pool-guide-launcher-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px dotted #c7c7c8;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    color: #000;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
}
.rw-pool-guide-launcher-time svg { width: 12px; height: 12px; fill: #5fbb2e; }

/* ============ ROZBALENÝ PRŮVODCE ============ */
.rw-pool-guide-box {
    display: none;
    background: #ffffff;
    border: 1px dotted #c7c7c8;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 3px 46px rgba(237, 238, 243, 0.35),
        0px 2px 3px 0px rgba(166, 193, 208, 0.42),
        0px 2px 11px 0px rgba(166, 193, 208, 0.35);
}
.rw-pool-guide-box.open { display: block; animation: rwPoolGuideExpand 0.4s ease; }
@keyframes rwPoolGuideExpand {
    from { opacity: 0; transform: translateY(-10px) scaleY(0.96); }
    to   { opacity: 1; transform: translateY(0) scaleY(1); }
}
.rw-pool-guide-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 100%;
    background: #5fbb2e;
    z-index: 2;
}
.rw-pool-guide-header {
    position: relative;
    background: #eef5f9;
    border-bottom: 1px solid #cedee7;
    box-shadow: 0px 5px 0px 0px #e2eef7 inset;
    padding: 26px 60px 22px;
    text-align: center;
}
.rw-pool-guide-header h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: #000;
}
.rw-pool-guide-header h2 strong { font-weight: 500; color: #4386fc; }
.rw-pool-guide-header p {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
}
.rw-pool-guide-collapse {
    position: absolute;
    top: 12px; right: 14px;
    background: none;
    border: none;
    color: #4386fc;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border-bottom: 1px dotted #4386fc;
    padding: 2px 0;
    transition: color 0.2s ease;
}
.rw-pool-guide-collapse:hover { color: #000; border-color: #000; }

/* --- Progress + chipy --- */
.rw-pool-guide-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    margin: 24px auto 6px;
    padding: 0 20px;
}
.rw-pool-guide-progress-track {
    flex: 1;
    height: 6px;
    background: #eef5f9;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #cedee7;
}
.rw-pool-guide-progress-fill {
    height: 100%;
    background: #5fbb2e;
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
}
.rw-pool-guide-progress-text {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    white-space: nowrap;
}
.rw-pool-guide-progress-text span { font-weight: 300; opacity: 0.7; }
.rw-pool-guide-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    padding: 0 20px;
    min-height: 0;
}
.rw-pool-guide-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4faf0;
    border: 1px solid #5fbb2e;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    transition: background 0.2s ease;
}
.rw-pool-guide-chip:hover { background: #e6f4dd; }
.rw-pool-guide-chip svg { width: 11px; height: 11px; fill: #55a829; }
.rw-pool-guide-chip b { font-weight: 500; }

/* --- Kroky --- */
.rw-pool-guide-body { padding: 18px 30px 32px; }
.rw-pool-guide-step { display: none; }
.rw-pool-guide-step.active { display: block; animation: rwPoolGuideFadeIn 0.35s ease; }
@keyframes rwPoolGuideFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rw-pool-guide-question-title {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 8px 0 4px;
    line-height: 30px;
}
.rw-pool-guide-question-hint {
    font-size: 13px;
    color: #000;
    font-weight: 300;
    text-align: center;
    margin: 0 0 24px;
}
.rw-pool-guide-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.rw-pool-guide-card {
    position: relative;
    background: #fff;
    border: 1px dotted #c7c7c8;
    border-radius: 2px;
    padding: 22px 18px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: inset 0 3px 46px rgba(237,238,243,0.35);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.rw-pool-guide-card:hover {
    transform: translateY(-3px);
    border-color: #5fbb2e;
    border-style: solid;
    box-shadow: 0px 2px 10px 0px rgba(166,193,208,0.75), 0px 2px 3px 0px rgba(166,193,208,0.82);
}
.rw-pool-guide-card.selected {
    border-color: #55a829;
    border-style: solid;
    background: #f4faf0;
    box-shadow: inset 0 0 0 1px #5fbb2e, 0 4px 12px rgba(95, 187, 46, 0.22);
}
.rw-pool-guide-card-check {
    position: absolute;
    top: 10px; right: 10px;
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid #c7c7c8;
    background: #fff;
    transition: all 0.2s ease;
}
.rw-pool-guide-card:hover .rw-pool-guide-card-check { border-color: #5fbb2e; }
.rw-pool-guide-card.selected .rw-pool-guide-card-check {
    background: #5fbb2e;
    border-color: #55a829;
}
.rw-pool-guide-card-check::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -58%) rotate(45deg);
    opacity: 0;
}
.rw-pool-guide-card.selected .rw-pool-guide-card-check::after { opacity: 1; }
.rw-pool-guide-card-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #eef5f9;
    border: 1px solid #cedee7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.rw-pool-guide-card-icon svg { width: 26px; height: 26px; fill: #4386fc; }
.rw-pool-guide-card.selected .rw-pool-guide-card-icon { background: #5fbb2e; border-color: #55a829; }
.rw-pool-guide-card.selected .rw-pool-guide-card-icon svg { fill: #fff; }
.rw-pool-guide-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0 0 6px;
    line-height: 1.35;
}
.rw-pool-guide-card-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    margin: 0;
    opacity: 0.75;
}

/* --- Navigace --- */
.rw-pool-guide-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}
.rw-pool-guide-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 24px;
    min-width: 140px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    transition: opacity 0.2s ease;
    box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset, 0px 3px 6px rgba(0,0,0,0.15), 0px 1px 2px rgba(0,0,0,0.1);
}
.rw-pool-guide-btn:hover { opacity: 0.9; }
.rw-pool-guide-btn-back { background: #bfc5c9; color: #fff; border: 1px solid #8d8d8d; }
.rw-pool-guide-btn-restart {
    background: none;
    border: none;
    box-shadow: none;
    color: #4386fc;
    border-bottom: 1px dotted #4386fc;
    padding: 8px 4px;
    min-width: 0;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: color 0.2s ease;
}
.rw-pool-guide-btn-restart:hover { color: #000; border-color: #000; }

/* --- Analytická mezisekvence --- */
.rw-pool-guide-analyzing { display: none; padding: 30px 20px 40px; text-align: center; }
.rw-pool-guide-analyzing.active { display: block; animation: rwPoolGuideFadeIn 0.3s ease; }
.rw-pool-guide-spinner {
    width: 54px; height: 54px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 4px solid #eef5f9;
    border-top-color: #5fbb2e;
    animation: rwPoolGuideSpin 0.9s linear infinite;
}
@keyframes rwPoolGuideSpin { to { transform: rotate(360deg); } }
.rw-pool-guide-analyzing h3 {
    font-size: 19px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px;
}
.rw-pool-guide-ana-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 380px;
    text-align: left;
}
.rw-pool-guide-ana-list li {
    position: relative;
    padding: 7px 0 7px 30px;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}
.rw-pool-guide-ana-list li.on { opacity: 1; }
.rw-pool-guide-ana-list li::before {
    content: '';
    position: absolute;
    left: 4px; top: 50%;
    width: 16px; height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid #c7c7c8;
    background: #fff;
    transition: all 0.25s ease;
}
.rw-pool-guide-ana-list li.done::before { background: #5fbb2e; border-color: #55a829; }
.rw-pool-guide-ana-list li::after {
    content: '';
    position: absolute;
    left: 10px; top: 50%;
    width: 4px; height: 8px;
    margin-top: -6px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}
.rw-pool-guide-ana-list li.done::after { opacity: 1; }

/* --- Výsledky --- */
.rw-pool-guide-results { display: none; }
.rw-pool-guide-results.active { display: block; animation: rwPoolGuideFadeIn 0.4s ease; }
.rw-pool-guide-results-title {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 10px 0 4px;
    line-height: 30px;
}
.rw-pool-guide-results-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin: 0 0 18px;
}
.rw-pool-guide-results-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 26px;
}
.rw-pool-guide-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
.rw-pool-guide-result-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px dotted #c7c7c8;
    border-radius: 2px;
    text-decoration: none !important;
    color: inherit;
    padding-top: 14px;
    box-shadow:
        inset 0 3px 46px rgba(237, 238, 243, 0.35),
        0px 2px 3px 0px rgba(166, 193, 208, 0.42),
        0px 2px 11px 0px rgba(166, 193, 208, 0.35);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border-bottom: 1px dotted #c7c7c8 !important;
}
.rw-pool-guide-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 10px 0px rgba(166,193,208,0.75), 0px 2px 3px 0px rgba(166,193,208,0.82);
}
.rw-pool-guide-result-card--top {
    border-style: solid;
    border-color: #5fbb2e;
    box-shadow: inset 0 0 0 1px #5fbb2e, 0px 2px 11px 0px rgba(95, 187, 46, 0.25);
}
.rw-pool-guide-match-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4386fc;
    border: 1px solid #3c78e2;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 3;
}
.rw-pool-guide-result-card--top .rw-pool-guide-match-badge {
    background: #5fbb2e;
    border-color: #55a829;
    animation: rwPoolGuideBadgePulse 2.4s ease-in-out infinite;
}
@keyframes rwPoolGuideBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(95,187,46,0.4); }
    50%      { box-shadow: 0 0 0 7px rgba(95,187,46,0); }
}
.rw-pool-guide-result-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px 10px;
    border-bottom: 1px dotted #c7c7c8;
}
.rw-pool-guide-result-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.rw-pool-guide-result-card:hover .rw-pool-guide-result-img img { transform: scale(1.05); }
.rw-pool-guide-result-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 20px;
    text-align: center;
}
.rw-pool-guide-result-cat {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #4386fc;
    margin: 0 0 4px;
}
.rw-pool-guide-result-name {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.35;
}
.rw-pool-guide-result-card:hover .rw-pool-guide-result-name { color: #4386fc; }
.rw-pool-guide-result-price {
    font-size: 18px;
    font-weight: 500;
    color: #f02020;
    margin: 0 0 12px;
    min-height: 22px;
}
.rw-pool-guide-match-bar-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
}
.rw-pool-guide-match-bar {
    flex: 1;
    height: 6px;
    background: #eef5f9;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #cedee7;
}
.rw-pool-guide-match-bar-fill {
    height: 100%;
    background: #5fbb2e;
    border-radius: 2px;
    width: 0%;
    transition: width 0.9s ease 0.15s;
}
.rw-pool-guide-match-pct {
    font-size: 14px;
    font-weight: 500;
    color: #5fbb2e;
    white-space: nowrap;
    min-width: 42px;
    text-align: right;
}
.rw-pool-guide-reasons {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    text-align: left;
    flex: 1;
}
.rw-pool-guide-reasons li {
    position: relative;
    padding-left: 20px;
    font-size: 12.5px;
    font-weight: 300;
    color: #000;
    line-height: 1.55;
    margin-bottom: 6px;
}
.rw-pool-guide-reasons li::before {
    content: '';
    position: absolute;
    left: 2px; top: 4px;
    width: 5px; height: 9px;
    border: solid #5fbb2e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.rw-pool-guide-result-btn {
    display: block;
    background: #5fbb2e;
    color: #fff !important;
    border: 1px solid #55a829;
    border-radius: 2px;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 22px;
    text-align: center;
    transition: background 0.2s ease;
    box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset, 0px 3px 6px rgba(0,0,0,0.15), 0px 1px 2px rgba(0,0,0,0.1);
    margin-top: auto;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.rw-pool-guide-result-card:hover .rw-pool-guide-result-btn { background: #54a828; }
.rw-pool-guide-results-footer {
    text-align: center;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px dotted #c7c7c8;
}
.rw-pool-guide-results-footer p {
    font-size: 13px;
    font-weight: 300;
    color: #000;
    margin: 0 0 12px;
}
.rw-pool-guide-results-footer a.rw-pool-guide-all-link {
    color: #4386fc;
    text-decoration: none;
    border-bottom: 1px dotted #4386fc;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.rw-pool-guide-results-footer a.rw-pool-guide-all-link:hover { color: #000; border-color: #000; }

/* ============ PLOVOUCÍ TLAČÍTKO (FAB) ============
   POZICE FAB: chat máte vpravo dole, proto je tlačítko VLEVO dole.
   Případný posun upravíte zde (left / bottom). */
.rw-pool-guide-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #5fbb2e;
    color: #fff;
    border: 1px solid #55a829;
    border-radius: 50px;
    padding: 12px 22px 12px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}
.rw-pool-guide-fab.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.rw-pool-guide-fab:hover { background: #54a828; }
.rw-pool-guide-fab svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.rw-pool-guide-fab-label { white-space: nowrap; line-height: 1.3; text-align: left; }
.rw-pool-guide-fab-label small {
    display: block;
    font-size: 10px;
    font-weight: 300;
    opacity: 0.85;
}

/* ============ Responsive ============ */
@media (max-width: 749px) {
    .rw-pool-guide-wrapper { padding: 0 10px; margin: 28px auto; }
    .rw-pool-guide-launcher { flex-wrap: wrap; padding: 18px 16px 18px 20px; gap: 12px; }
    .rw-pool-guide-launcher-icon { width: 48px; height: 48px; }
    .rw-pool-guide-launcher-icon svg { width: 24px; height: 24px; }
    .rw-pool-guide-launcher-text { flex-basis: calc(100% - 62px); }
    .rw-pool-guide-launcher-text h2 { font-size: 16px; line-height: 22px; }
    .rw-pool-guide-launcher-cta { width: 100%; text-align: center; }
    .rw-pool-guide-header { padding: 22px 18px 18px; }
    .rw-pool-guide-header h2 { font-size: 18px; line-height: 26px; }
    .rw-pool-guide-collapse { position: static; display: inline-block; margin-top: 8px; }
    .rw-pool-guide-body { padding: 14px 14px 24px; }
    .rw-pool-guide-question-title { font-size: 17px; line-height: 25px; }
    .rw-pool-guide-cards { grid-template-columns: 1fr; gap: 10px; }
    .rw-pool-guide-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 14px 44px 14px 14px;
        gap: 14px;
    }
    .rw-pool-guide-card-icon { margin: 0; flex-shrink: 0; width: 44px; height: 44px; }
    .rw-pool-guide-card-icon svg { width: 22px; height: 22px; }
    .rw-pool-guide-card-title { font-size: 14px; margin-bottom: 3px; }
    .rw-pool-guide-card-desc { font-size: 12px; }
    .rw-pool-guide-card-check { top: 50%; transform: translateY(-50%); }
    .rw-pool-guide-nav { flex-direction: column-reverse; align-items: center; }
    .rw-pool-guide-result-grid { grid-template-columns: 1fr; gap: 22px; }
    .rw-pool-guide-result-img { height: 130px; }
    /* na mobilu zmenšíme FAB na kulaté tlačítko bez textu, aby nezavazel */
    .rw-pool-guide-fab { left: 12px; bottom: 12px; padding: 14px; border-radius: 50%; }
    .rw-pool-guide-fab-label { display: none; }
}