/* Woosh Bikes — Mobile Site */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --cream: #faf6ef;
    --warm: #f2ebe0;
    --tan: #e8dece;
    --border: #d4c9b8;
    --charcoal: #2c2c2c;
    --mid: #5a5a5a;
    --soft: #8a8180;
    --green: #3a6b32;
    --green-hover: #2d5427;
    --green-pale: #eef4ec;
    --green-mid: #c8ddc5;
    --rust: #b85c2a;
    --rust-pale: #fdf2ec;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    padding-bottom: 64px;
    overflow-x: hidden;
}

/* ===== Phone Bar ===== */

.phone-bar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--green);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-bar-left {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.phone-bar a {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Header / Nav ===== */

.m-header {
    background: var(--cream);
    border-bottom: 2px solid var(--tan);
    position: sticky;
    top: 44px;
    z-index: 199;
}

.m-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    min-height: 54px;
}

.nav-logo {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    line-height: 1;
}

.nav-logo span {
    color: var(--green);
    font-style: italic;
}

.m-logo {
    height: 34px;
    display: block;
}

.shop-header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-pale);
    border: 1.5px solid var(--green-mid);
    border-radius: 4px;
    color: var(--green);
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.shop-header-cart:active { background: var(--green-mid); }

.shop-header-cart svg {
    width: 20px;
    height: 20px;
}

.shop-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--rust);
    color: #fff;
    border-radius: 9999px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.shop-cart-badge.visible { display: flex; }

/* ===== Page Banner (inner pages) ===== */

.m-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3a3a3a 100%);
    color: #fff;
    padding: 40px 20px 36px;
    text-align: center;
}

.m-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.m-banner h1 {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.m-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

.m-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.m-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== Section Tags ===== */

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    border: 1px solid var(--green-mid);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ===== Buttons ===== */

.m-btn-primary {
    display: block;
    background: var(--green);
    color: #fff;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    min-height: 50px;
    line-height: 1.3;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}

.m-btn-primary:active,
.m-btn-primary:hover { background: var(--green-hover); }

.m-btn-outline {
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 13px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    min-height: 50px;
    line-height: 1.3;
    -webkit-tap-highlight-color: transparent;
}

.m-btn-blue {
    display: block;
    background: var(--green);
    color: #fff;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    min-height: 50px;
    line-height: 1.3;
    -webkit-tap-highlight-color: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: background 0.2s;
}

.m-btn-blue:active,
.m-btn-blue:hover { background: var(--green-hover); }

/* ===== Sections ===== */

.m-section {
    padding: 32px 20px;
}

.m-section-white { background: #fff; }
.m-section-gray  { background: var(--warm); }

.m-section-title {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.2;
}

.m-section-title em {
    font-style: italic;
    color: var(--green);
}

.m-section-desc {
    font-size: 15px;
    color: var(--soft);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== Product Cards ===== */

.m-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 16px;
}

.m-card:last-child {
    margin-bottom: 0;
}

.m-card-img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    display: block;
    background: var(--warm);
}

.m-card-body {
    padding: 20px;
}

.m-card h3 {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.m-card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 14px;
}

.m-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 18px;
}

.m-card-btn {
    display: block;
    background: var(--green);
    color: #fff;
    padding: 13px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    min-height: 48px;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}

.m-card-btn:active,
.m-card-btn:hover { background: var(--green-hover); }

/* ===== Horizontal Bike Cards ===== */

.bike-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    transition: box-shadow 0.2s;
}

.bike-card:last-child { margin-bottom: 0; }
.bike-card:active { box-shadow: 0 4px 16px rgba(58, 107, 50, 0.15); }

.bike-img-wrap {
    width: 120px;
    flex-shrink: 0;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    border-right: 1px solid var(--border);
    align-self: stretch;
}

.bike-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.bike-info { padding: 14px 12px; flex: 1; }

.bike-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 10px;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 6px;
}

.bike-name {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.bike-desc {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.5;
    margin-bottom: 8px;
}

.bike-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--green);
}

.bike-price span {
    font-size: 12px;
    color: var(--soft);
    font-weight: 300;
}

.bike-arrow {
    font-size: 18px;
    color: var(--green-mid);
    align-self: center;
    padding-right: 12px;
}

/* ===== Kit Cards ===== */

.kit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 14px;
}

.kit-card:last-child { margin-bottom: 0; }

.kit-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.kit-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 10px;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.kit-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.kit-desc {
    font-size: 15px;
    color: var(--soft);
    line-height: 1.7;
    margin-bottom: 16px;
}

.kit-features {
    list-style: none;
    margin-bottom: 20px;
}

.kit-features li {
    font-size: 14px;
    color: var(--mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--tan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.kit-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.kit-btn {
    display: block;
    text-align: center;
    background: var(--green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.kit-btn:hover { background: var(--green-hover); }

/* ===== View All / Outline Buttons ===== */

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 18px;
    background: #fff;
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    padding: 13px;
    border-radius: 4px;
    border: 2px solid var(--green-mid);
    text-decoration: none;
    transition: border-color 0.2s;
}

.view-all-btn:hover { border-color: var(--green); }

/* ===== Feature list (inside kit cards) ===== */

.m-feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.m-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--tan);
}

.m-feature-list li:last-child {
    border-bottom: none;
}

.m-check {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.4;
}

/* ===== Info link cards ===== */

.m-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px 20px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    min-height: 72px;
    -webkit-tap-highlight-color: transparent;
}

.m-info-card:last-child {
    margin-bottom: 0;
}

.m-info-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.m-info-text { flex: 1; min-width: 0; }

.m-info-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.m-info-text p {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.4;
}

.m-info-arrow {
    color: var(--border);
    flex-shrink: 0;
}

/* ===== Why / Feature tiles ===== */

.m-feature-tile {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.m-feature-tile:last-child {
    margin-bottom: 0;
}

.m-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

.m-feature-tile h3 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.m-feature-tile p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.55;
}

/* ===== Why Section (green bg) ===== */

.m-why-section {
    background: var(--green);
    padding: 32px 20px;
}

.m-why-section .m-section-title { color: #fff; }
.m-why-section .m-section-title em { color: #a8d4a3; }
.m-why-section .m-section-desc { color: rgba(255, 255, 255, 0.75); }

.why-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-card:last-child { margin-bottom: 0; }

.why-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }

.why-title {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.why-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ===== Testimonials ===== */

.m-testimonial {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 12px;
}

.m-testimonial:last-child {
    margin-bottom: 0;
}

.m-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.m-testimonial q {
    display: block;
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 14px;
    font-style: italic;
    quotes: "\201C" "\201D";
}

.m-testimonial q::before { content: open-quote; }
.m-testimonial q::after  { content: close-quote; }

.m-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

/* ===== Trustpilot bar ===== */

.trustpilot-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.tp-stars { color: #00b67a; font-size: 18px; letter-spacing: 2px; }
.tp-text { font-size: 14px; color: var(--mid); }
.tp-text strong { color: var(--charcoal); }

/* ===== Call Panel (hero) ===== */

.call-panel {
    background: var(--green);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-panel p { font-size: 15px; color: rgba(255, 255, 255, 0.85); }

.call-panel strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}

.btn-call {
    background: #fff;
    color: var(--green);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== Kit Finder / Configurator CTA ===== */

.m-configurator {
    background: var(--rust-pale);
    border-top: 2px solid var(--tan);
    border-bottom: 2px solid var(--tan);
    padding: 32px 20px;
    text-align: center;
}

.m-configurator .section-tag {
    background: #fdf2ec;
    color: var(--rust);
    border-color: #e8c4ae;
}

.m-configurator h2 {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
    line-height: 1.2;
}

.m-configurator p {
    font-size: 15px;
    color: var(--mid);
    margin-bottom: 20px;
    line-height: 1.65;
}

.btn-config {
    display: block;
    background: var(--rust);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 16px;
    border-radius: 4px;
    text-decoration: none;
}

/* ===== CTA box (configurator, etc.) ===== */

.m-cta-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    margin-top: 16px;
}

.m-cta-box h2 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.m-cta-box p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 22px;
}

/* ===== Contact ===== */

.m-contact-block {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 16px;
}

.m-contact-block h2 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.m-contact-block p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 8px;
}

.m-contact-block p:last-child { margin-bottom: 0; }

.m-contact-block a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

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

.contact-icon { font-size: 28px; flex-shrink: 0; }

.contact-title {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--charcoal);
}

.contact-detail {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.5;
}

.contact-detail a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

.m-tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
    margin: 14px 0 0;
    transition: background 0.2s;
}

.m-tel-btn:active,
.m-tel-btn:hover { background: var(--green-hover); }

.m-tel-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.m-form-block {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 24px 20px;
}

.m-form-block h2 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.m-form-desc {
    font-size: 15px;
    color: var(--soft);
    margin-bottom: 22px;
    line-height: 1.65;
}

.m-form-desc a { color: var(--green); text-decoration: none; }

.m-form-group {
    margin-bottom: 18px;
}

.m-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.m-form-group input,
.m-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--charcoal);
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.5;
}

.m-form-group input:focus,
.m-form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(58, 107, 50, 0.12);
}

.m-form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.m-form-note {
    font-size: 13px;
    color: var(--soft);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

.m-alert-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.m-alert-success h2 { color: #065f46; font-size: 20px; margin-bottom: 8px; font-family: 'Lora', serif; }
.m-alert-success p  { color: #047857; font-size: 16px; }

.m-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 14px 16px;
    color: #dc2626;
    font-size: 15px;
    margin-bottom: 18px;
}

.m-help-list {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.m-help-list li {
    font-size: 15px;
    color: var(--mid);
    padding: 4px 0;
    line-height: 1.5;
}

/* ===== Coming Soon ===== */

.m-coming-soon {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 40px 20px;
    text-align: center;
}

.m-coming-icon {
    width: 64px;
    height: 64px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.m-coming-icon svg {
    width: 30px;
    height: 30px;
    color: var(--green);
}

.m-coming-soon h2 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.m-coming-soon p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 12px;
}

.m-coming-soon p:last-child { margin-bottom: 0; }

.m-coming-soon a { color: var(--green); text-decoration: none; }

.m-forum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.m-forum-item {
    background: var(--warm);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px;
}

.m-forum-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.m-forum-item p {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ===== Forum ===== */

.m-cat-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px 20px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    min-height: 72px;
    -webkit-tap-highlight-color: transparent;
    gap: 12px;
}

.m-cat-item:last-child { margin-bottom: 0; }
.m-cat-item:active { background: var(--warm); }

.m-cat-info { flex: 1; min-width: 0; }

.m-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.m-cat-desc {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.4;
}

.m-cat-last {
    font-size: 12px;
    color: var(--soft);
    margin-top: 4px;
}

.m-cat-stats {
    text-align: center;
    flex-shrink: 0;
    min-width: 48px;
}

.m-cat-count {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.m-cat-label {
    font-size: 11px;
    color: var(--soft);
    margin-top: 2px;
}

.m-thread-item {
    display: block;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px 20px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.m-thread-item:last-child { margin-bottom: 0; }
.m-thread-item:active { background: var(--warm); }

.m-thread-subject {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.3;
}

.m-thread-meta {
    font-size: 13px;
    color: var(--soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
    align-items: center;
}

.m-thread-sep { color: var(--border); }

.m-forum-back {
    font-size: 14px;
    color: var(--soft);
    text-decoration: none;
}

.m-forum-new-btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.m-forum-new-btn:active { background: var(--green-hover); }

.m-post-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 12px;
}

.m-post-card:last-child { margin-bottom: 0; }

.m-post-card-op {
    border-color: var(--green-mid);
    background: var(--green-pale);
}

.m-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 8px;
}

.m-post-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}

.m-post-op {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-pale);
    padding: 2px 8px;
    border-radius: 9999px;
    margin-left: 6px;
    vertical-align: middle;
}

.m-post-time {
    font-size: 13px;
    color: var(--soft);
    flex-shrink: 0;
    white-space: nowrap;
}

.m-post-message {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    white-space: pre-line;
    word-break: break-word;
}

/* ===== Info section divider ===== */

.m-section-divider {
    border: none;
    border-top: 1px solid var(--tan);
    margin: 24px 0 20px;
}

/* ===== Footer ===== */

.m-footer {
    background: var(--charcoal);
    color: #fff;
    padding: 36px 20px 20px;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    font-style: italic;
    color: #7dba74;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-phone a {
    color: #7dba74;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.footer-phone span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 3px;
    margin-bottom: 28px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    font-size: 12px;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    margin: 0 8px;
}

/* Legacy simple footer (fallback) */
.m-footer p { margin-bottom: 14px; color: #888; font-size: 14px; }

.m-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.m-footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
}

/* ===== Cookie Consent Banner ===== */

.cookie-banner {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: #e2e8f0;
    padding: 16px 20px;
    z-index: 300;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-banner a {
    color: var(--green-mid);
    text-decoration: underline;
}

.cookie-banner-btns {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.cookie-accept {
    background: var(--green);
    color: #fff;
}

.cookie-accept:active { background: var(--green-hover); }

.cookie-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #4a4a4a;
}

.cookie-decline:active { background: rgba(255, 255, 255, 0.05); }

/* ===== Wide-screen bike image pair ===== */

.m-bike-img-pair {
    margin-bottom: 20px;
}

.m-bike-img-pair .bike-img-main {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.m-bike-img-pair .bike-img-alt {
    display: none;
}

@media (min-width: 600px) {
    .m-bike-img-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .m-bike-img-pair .bike-img-main,
    .m-bike-img-pair .bike-img-alt {
        width: 100%;
        height: 360px;
        object-fit: contain;
        border-radius: 10px;
        background: var(--warm);
        display: block;
        margin-bottom: 0;
    }
}

/* ===== Bottom Tab Bar ===== */

.m-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--tan);
    display: flex;
    z-index: 200;
    height: 60px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    padding-bottom: var(--safe-bottom);
}

.m-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--soft);
    font-size: 10px;
    font-weight: 500;
    gap: 3px;
    min-height: 60px;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s;
    letter-spacing: 0.01em;
}

.m-tab.active,
.m-tab:hover { color: var(--green); }

.m-tab svg {
    width: 24px;
    height: 24px;
}

/* ===== Hero (home page) ===== */

.hero {
    background: var(--warm);
    border-bottom: 2px solid var(--tan);
    overflow: hidden;
}

.hero-img-wrap {
    background: radial-gradient(ellipse 80% 70% at 50% 55%, rgba(58, 107, 50, 0.09) 0%, transparent 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 24px 16px;
}

.hero-bike {
    width: 80%;
    max-width: 280px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
    animation: gentleFloat 7s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

.hero-text {
    padding: 20px 20px 28px;
}

.hero-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    border: 1px solid var(--green-mid);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.hero h1 em { font-style: italic; color: var(--green); }

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 14px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--green-hover); }

.btn-secondary {
    background: #fff;
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 13px 12px;
    border-radius: 4px;
    border: 2px solid var(--green-mid);
    text-decoration: none;
    display: block;
    transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--green); }

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--mid);
}

.trust-badge strong { color: var(--charcoal); font-weight: 600; }
.trust-icon { font-size: 18px; flex-shrink: 0; }

/* ===== Animations ===== */

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
