/* ===== THEME 005 — Aquarium E-Commerce Store ===== */

:root {
    --t5-accent: #4CAF50;
    --t5-accent-dark: #388E3C;
    --t5-accent-light: rgba(76,175,80,0.10);
    --t5-dark: #212121;
    --t5-text: #424242;
    --t5-muted: #757575;
    --t5-light: #bdbdbd;
    --t5-bg: #ffffff;
    --t5-bg-alt: #f5f5f5;
    --t5-border: #e0e0e0;
    --t5-r: 6px;
    --t5-r-sm: 4px;
    --t5-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --t5-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --t5-shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --t5-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t5-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body, .t5-body {
    background: var(--t5-bg);
    color: var(--t5-text);
    font-family: var(--t5-font);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t5-accent-dark); text-decoration: none; }
a:hover { color: var(--t5-accent); text-decoration: none; }

/* ===== HEADER — white, sticky, e-commerce style ===== */
.t5-header {
    background: var(--t5-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--t5-border);
}
.t5-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--t5-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}
.t5-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--t5-dark);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.t5-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
    height: 64px;
}
.t5-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--t5-text);
    text-decoration: none;
    border-radius: var(--t5-r);
    transition: all 0.2s;
    height: auto;
}
.t5-nav-link:hover {
    background: var(--t5-accent-light);
    color: var(--t5-accent-dark);
}
/* Last nav link as green button */
.t5-nav-list li:last-child .t5-nav-link {
    background: var(--t5-accent);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--t5-r);
}
.t5-nav-list li:last-child .t5-nav-link:hover {
    background: var(--t5-accent-dark);
}

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.burger-btn span { display: block; width: 22px; height: 2px; background: var(--t5-dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO — clean, white, no background effects ===== */
.t5-hero {
    background: var(--t5-bg);
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--t5-border);
}
.t5-h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--t5-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.t5-hero-sub {
    font-size: 1.05rem;
    color: var(--t5-muted);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.t5-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.t5-hero-btn {
    padding: 12px 32px;
    font-size: 0.95rem;
    border-radius: var(--t5-r);
}

/* ===== BUTTONS ===== */
.t5-btn-primary {
    background: var(--t5-accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--t5-r);
    display: inline-block;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.t5-btn-primary:hover {
    background: var(--t5-accent-dark);
    color: #fff;
}
.t5-btn-outline {
    background: transparent;
    color: var(--t5-accent-dark);
    border: 2px solid var(--t5-accent);
    padding: 10px 26px;
    border-radius: var(--t5-r);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}
.t5-btn-outline:hover { background: var(--t5-accent); color: #fff; }

/* ===== BREADCRUMBS ===== */
.t5-breadcrumbs { padding: 12px 0; background: var(--t5-bg-alt); border-bottom: 1px solid var(--t5-border); }
.t5-bc-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.82rem; }
.t5-bc-item { display: flex; align-items: center; color: var(--t5-muted); }
.t5-bc-item a { color: var(--t5-accent-dark); }
.t5-bc-item a:hover { text-decoration: underline; }
.t5-bc-item + .t5-bc-item::before { content: "/"; margin: 0 8px; color: var(--t5-light); font-size: 0.85rem; }
.t5-bc-item:last-child span { color: var(--t5-dark); font-weight: 600; }

/* ===== LAYOUT ===== */
.t5-section { padding: 56px 0; }
.t5-section:nth-child(even) { background: var(--t5-bg-alt); }
.t5-container { max-width: var(--t5-w); margin: 0 auto; padding: 0 24px; }
.t5-text-center { text-align: center; }
.t5-text-sm { font-size: 0.85rem; }
.t5-text-muted { color: var(--t5-muted); }
.t5-subtitle { font-size: 1rem; color: var(--t5-muted); }
.t5-mb-0 { margin-bottom: 0 !important; }
.t5-mb-15 { margin-bottom: 15px; }
.t5-mb-30 { margin-bottom: 30px; }
.t5-mt-20 { margin-top: 20px; }
.t5-pt-0 { padding-top: 0 !important; }
.t5-pt-10 { padding-top: 10px !important; }
.t5-pt-20 { padding-top: 20px !important; }
.t5-pt-30 { padding-top: 30px !important; }
.t5-max-800 { max-width: 800px; }
.t5-m-auto { margin: 0 auto; }
.t5-hidden { display: none !important; }
.t5-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t5-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.t5-bg-alt { background: var(--t5-bg-alt); }
.t5-bg-white { background: var(--t5-bg); }
.t5-bg-page { background: var(--t5-bg); }
.t5-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.t5-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* ===== SECTION TITLE — bold, left-aligned, thin underline ===== */
.t5-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--t5-dark);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.t5-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--t5-accent);
}
.t5-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--t5-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--t5-r);
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== FEATURES — icon-left horizontal layout ===== */
.t5-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.t5-feature-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s;
}
.t5-feature-card:hover {
    border-color: var(--t5-accent);
}
.t5-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--t5-accent-light);
    color: var(--t5-accent-dark);
    border-radius: var(--t5-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.t5-feature-title { font-size: 0.95rem; font-weight: 700; color: var(--t5-dark); margin: 0 0 4px; }
.t5-feature-desc { font-size: 0.85rem; color: var(--t5-muted); margin: 0; line-height: 1.55; }

/* ===== TOP HUB CARDS — compact product-card style ===== */
.t5-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.t5-top-card {
    display: flex;
    flex-direction: column;
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 16px;
    text-decoration: none;
    color: var(--t5-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.t5-top-card:hover {
    border-color: var(--t5-accent);
    box-shadow: var(--t5-shadow);
}
.t5-top-img-wrap {
    width: 100%; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t5-bg-alt);
    border-radius: var(--t5-r-sm);
    padding: 8px;
    margin-bottom: 12px;
}
.t5-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t5-top-name { font-size: 0.9rem; font-weight: 700; color: var(--t5-dark); line-height: 1.3; }
.t5-top-meta { font-size: 0.88rem; color: var(--t5-accent-dark); font-weight: 700; margin-top: 4px; }
.t5-top-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.t5-top-spec { font-size: 0.75rem; color: var(--t5-muted); background: var(--t5-bg-alt); padding: 2px 8px; border-radius: var(--t5-r-sm); }
.t5-top-spec strong { color: var(--t5-dark); }

/* ===== CARDS — thin border, product grid style ===== */
.t5-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
}
.t5-card:hover {
    border-color: var(--t5-accent);
    box-shadow: var(--t5-shadow);
}
.t5-card-title { font-size: 1rem; font-weight: 700; color: var(--t5-dark); margin-bottom: 6px; }
.t5-card-price { color: var(--t5-accent-dark); font-weight: 700; font-size: 1.15rem; }
.t5-spec-list { display: flex; flex-direction: column; }
.t5-card-flex { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.t5-card-desc { font-size: 0.88rem; color: var(--t5-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.t5-btn-full { display: block; text-align: center; }
.t5-card-img-wrap { height: 100px; background: var(--t5-bg-alt); margin-bottom: 10px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: var(--t5-r-sm); }
.t5-card-link { text-decoration: none; color: inherit; display: block; }
.t5-card-link:hover { text-decoration: none; }
.t5-badge-wrap { margin-bottom: 6px; }
.t5-badge-sm { background: var(--t5-bg-alt); padding: 3px 10px; border-radius: var(--t5-r-sm); font-size: 0.78rem; font-weight: 500; }
.t5-badge-accent { background: var(--t5-accent-light); color: var(--t5-accent-dark); font-weight: 600; }
.t5-show-more { text-align: center; margin-top: 24px; }
.t5-all-link { color: var(--t5-accent-dark); font-weight: 600; font-size: 0.92rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.t5-all-link:hover { color: var(--t5-accent); }

/* ===== HUBS — structured list ===== */
.t5-hub-title { margin-bottom: 24px; font-size: 1.75rem; font-weight: 700; color: var(--t5-dark); letter-spacing: -0.3px; }
.t5-hub-list { display: flex; flex-wrap: wrap; gap: 10px; }
.t5-hub-item {
    padding: 8px 20px;
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    text-decoration: none;
    color: var(--t5-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}
.t5-hub-item:hover {
    background: var(--t5-accent);
    color: #fff;
    border-color: var(--t5-accent);
}
.t5-hub-badge {
    padding: 16px 20px;
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    text-decoration: none;
    color: var(--t5-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.2s;
}
.t5-hub-badge:hover {
    border-color: var(--t5-accent);
    box-shadow: var(--t5-shadow);
}

/* ===== DETAIL PAGES ===== */
.t5-grid-ms { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.t5-sticky { position: sticky; top: 84px; }
.t5-item-row { display: flex; justify-content: space-between; padding: 10px 0; }
.t5-border-b { border-bottom: 1px solid var(--t5-border); }
.t5-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }

/* Section Card */
.t5-section-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 28px;
    margin-bottom: 20px;
}

/* Info Grid */
.t5-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.t5-info-item {
    padding: 14px 16px;
    background: var(--t5-bg-alt);
    border-radius: var(--t5-r);
    border-left: 3px solid var(--t5-accent);
}
.t5-info-label { display: block; font-size: 0.75rem; color: var(--t5-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.t5-info-value { display: block; font-weight: 700; color: var(--t5-dark); font-size: 1rem; }

/* Contacts */
.t5-contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.t5-social-links { display: flex; gap: 8px; }
.t5-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--t5-r);
    background: var(--t5-accent-light);
    color: var(--t5-accent-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 700;
}
.t5-social-btn:hover {
    background: var(--t5-accent);
    color: #fff;
}

/* Promo */
.t5-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 16px; }
.t5-promo-modern {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s;
}
.t5-promo-modern:hover { border-color: var(--t5-accent); }
.t5-promo-info h3 { margin: 0 0 4px; font-size: 0.95rem; color: var(--t5-dark); }
.t5-promo-sub { margin: 0; font-size: 0.82rem; color: var(--t5-muted); }
.t5-promo-wrap { position: relative; }
.t5-promo-box {
    background: var(--t5-accent-light);
    border: 1px dashed var(--t5-accent);
    padding: 10px 18px;
    border-radius: var(--t5-r);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    min-width: 120px;
    justify-content: center;
}
.t5-promo-box:hover { background: rgba(76,175,80,0.15); }
.t5-promo-text { font-family: 'SFMono-Regular', Consolas, monospace; font-weight: 700; font-size: 1rem; color: var(--t5-accent-dark); letter-spacing: 1px; }
.t5-copy-icon { color: var(--t5-accent); }
.copy-tooltip-x { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--t5-dark); color: #fff; padding: 5px 12px; border-radius: var(--t5-r); font-size: 12px; font-weight: 600; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 10; white-space: nowrap; }
.copy-tooltip-x::after { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 5px solid var(--t5-dark); }
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* City Tags */
.t5-city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.t5-city-tag {
    padding: 6px 16px;
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    color: var(--t5-text);
    text-decoration: none;
    border-radius: var(--t5-r);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.t5-city-tag:hover { background: var(--t5-accent); color: #fff; border-color: var(--t5-accent); }
.t5-city-tag-more { border-style: dashed; background: transparent; color: var(--t5-accent-dark); }

/* Accordion */
.t5-accordion {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    margin-bottom: 8px;
    overflow: hidden;
}
.t5-accordion summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--t5-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
    padding-right: 48px;
}
.t5-accordion summary:hover { background: var(--t5-bg-alt); }
.t5-accordion summary::-webkit-details-marker { display: none; }
.t5-accordion summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background: var(--t5-accent-light);
    color: var(--t5-accent-dark);
    border-radius: var(--t5-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.2s;
}
.t5-accordion[open] summary::after {
    content: '\2212';
    background: var(--t5-accent);
    color: #fff;
}
.t5-accordion .t5-accordion-content {
    padding: 0 20px 20px;
    border-top: 1px solid var(--t5-border);
    margin-top: 4px;
    padding-top: 16px;
    color: var(--t5-muted);
    line-height: 1.7;
}

/* Prose */
.t5-prose h2 { margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--t5-dark); font-weight: 700; }
.t5-prose h3 { margin-top: 1.25rem; margin-bottom: 0.5rem; color: var(--t5-dark); font-weight: 600; }
.t5-prose ul { padding-left: 0; margin: 12px 0; list-style: none; }
.t5-prose li { margin-bottom: 8px; padding-left: 18px; position: relative; }
.t5-prose li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--t5-accent); border-radius: 50%; }
.t5-prose strong { color: var(--t5-dark); }

/* ===== ERROR ===== */
.t5-error-page { padding: 80px 20px; max-width: 480px; margin: 0 auto; text-align: center; }
.t5-error-code { font-size: 8rem; font-weight: 700; line-height: 1; color: var(--t5-accent); margin-bottom: 8px; }
.t5-error-title { font-size: 1.4rem; font-weight: 700; color: var(--t5-dark); margin-bottom: 10px; }
.t5-error-desc { font-size: 0.95rem; color: var(--t5-muted); margin-bottom: 28px; line-height: 1.6; }
.t5-error-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== GEO PAGE ===== */
.t5-geo-container { max-width: var(--t5-w); }
.t5-hub-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.t5-hub-summary {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.t5-hub-summary:hover { border-color: var(--t5-accent); box-shadow: var(--t5-shadow); }
.t5-hub-summary-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t5-hub-summary-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t5-r); }
.t5-hub-summary-title { font-weight: 700; font-size: 1rem; color: var(--t5-dark); text-decoration: none; }
.t5-hub-summary-title:hover { color: var(--t5-accent); }
.t5-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.t5-hub-summary-spec { font-size: 0.8rem; color: var(--t5-muted); background: var(--t5-bg-alt); padding: 3px 8px; border-radius: var(--t5-r-sm); }
.t5-geo-info-grid { margin-top: 12px; }
.t5-geo-promo-wrap { margin-top: 12px; }
.t5-geo-items-wrap { margin-top: 16px; }
.t5-geo-show-more { text-align: center; margin-top: 12px; }
.t5-geo-apps-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.t5-app-btn { display: inline-block; line-height: 0; }
.t5-app-btn-img { height: 44px; width: auto; display: block; }
.t5-geo-hub-footer { margin-top: 16px; text-align: right; }
.t5-geo-zone-desc { margin-top: 16px; padding: 14px 18px; background: var(--t5-accent-light); border-left: 3px solid var(--t5-accent); border-radius: var(--t5-r); font-size: 0.9rem; color: var(--t5-muted); }
.geo-map { width: 100%; height: 400px; background: var(--t5-bg-alt); border: 1px solid var(--t5-border); border-radius: var(--t5-r); margin-top: 12px; }

/* ===== HUB PAGE ===== */
.t5-hub-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--t5-border);
}
.t5-hub-logo-img { height: 64px; object-fit: contain; border-radius: var(--t5-r); }
.t5-hub-title-text { margin: 0; font-size: 30px; font-weight: 700; color: var(--t5-dark); letter-spacing: -0.3px; }
.t5-hub-sidebar {}
.t5-hub-specs-title { margin-top: 16px; }
.t5-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t5-mini-name { font-weight: 600; font-size: 0.85rem; }
.t5-app-col { display: flex; flex-direction: column; gap: 8px; }

/* ===== ITEM PAGE ===== */
.t5-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.t5-item-img-wrap { display: flex; justify-content: center; align-items: center; background: var(--t5-bg-alt); border: 1px solid var(--t5-border); border-radius: var(--t5-r); padding: 24px; }
.t5-item-h1 { margin-bottom: 20px; }
.t5-item-img { max-width: 100%; height: auto; object-fit: contain; }
.t5-item-specs-title { margin-top: 0; }
.t5-hub-info-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.t5-hub-info-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--t5-r); }
.t5-hub-info-label { font-size: 0.82rem; color: var(--t5-muted); }
.t5-hub-info-name { font-weight: 700; font-size: 1.1rem; text-decoration: none; color: inherit; }
.t5-hub-info-name:hover { color: var(--t5-accent); }
.t5-app-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* Items Mini Grid */
.t5-items-mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.t5-items-mini-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 12px;
    transition: border-color 0.2s;
}
.t5-items-mini-card:hover { border-color: var(--t5-accent); }
.t5-items-mini-img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 6px; }

/* ===== FOOTER — dark charcoal, structured 4-column ===== */
.t5-footer {
    background: #1a1a1a;
    color: #9e9e9e;
    padding: 56px 0 28px;
    margin-top: 64px;
    font-size: 0.88rem;
}
.t5-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.t5-footer-brand h2 { color: #fff; margin-bottom: 16px; font-size: 1.15rem; font-weight: 700; }
.t5-footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-weight: 600; }
.t5-footer-nav { list-style: none; padding: 0; margin: 0; }
.t5-footer-nav li { margin-bottom: 10px; }
.t5-footer-nav a { color: #9e9e9e; transition: color 0.2s; }
.t5-footer-nav a:hover { color: var(--t5-accent); }
.t5-footer p { line-height: 1.6; color: #757575; }
.t5-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #616161;
    font-size: 0.82rem;
}
.t5-footer-btm-links { display: flex; gap: 16px; }
.t5-footer-btm-links a { color: #616161; }
.t5-footer-btm-links a:hover { color: var(--t5-accent); }

/* ===== PRICING ===== */
.t5-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}
.t5-pricing-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    text-align: center;
}
.t5-pricing-card:hover {
    border-color: var(--t5-accent);
    box-shadow: var(--t5-shadow);
}
.t5-pricing-popular {
    border: 2px solid var(--t5-accent);
    box-shadow: var(--t5-shadow);
}
.t5-pricing-popular:hover { box-shadow: var(--t5-shadow-lg); }
.t5-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t5-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 16px;
    border-radius: var(--t5-r);
    white-space: nowrap;
}
.t5-pricing-logo {
    width: 72px; height: 72px; object-fit: contain;
    margin: 0 auto 12px; display: block; border-radius: var(--t5-r);
}
.t5-pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--t5-dark); margin: 0 0 6px; }
.t5-pricing-desc { font-size: 0.85rem; color: var(--t5-muted); margin: 0 0 16px; }
.t5-pricing-price { margin-bottom: 20px; }
.t5-pricing-amount { font-size: 2.2rem; font-weight: 700; color: var(--t5-dark); letter-spacing: -1px; }
.t5-pricing-period { font-size: 0.85rem; color: var(--t5-muted); }
.t5-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.t5-pricing-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--t5-border);
    font-size: 0.88rem;
    color: var(--t5-text);
    padding-left: 22px;
    position: relative;
}
.t5-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--t5-accent);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.t5-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.t5-testimonial-card {
    background: var(--t5-bg);
    border: 1px solid var(--t5-border);
    border-radius: var(--t5-r);
    padding: 24px;
    transition: border-color 0.2s;
    position: relative;
}
.t5-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 3rem;
    line-height: 1;
    color: var(--t5-accent-light);
    font-family: Georgia, serif;
}
.t5-testimonial-card:hover { border-color: var(--t5-accent); }
.t5-testimonial-text {
    font-size: 0.92rem;
    color: var(--t5-text);
    line-height: 1.65;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.t5-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t5-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--t5-border);
}
.t5-testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--t5-dark); }
.t5-testimonial-role { font-size: 0.8rem; color: var(--t5-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t5-footer-grid { grid-template-columns: 1fr 1fr; }
    .t5-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t5-hero { padding: 48px 0 40px; }
    .t5-h1 { font-size: 28px; letter-spacing: -0.5px; }
    .t5-hero-sub { font-size: 0.95rem; }
    .t5-section { padding: 40px 0; }
    .t5-section-card { padding: 20px; margin-bottom: 16px; }
    .t5-grid-ms { grid-template-columns: 1fr; }
    .t5-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .t5-grid-2 { grid-template-columns: 1fr; }
    .t5-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t5-promo-grid { grid-template-columns: 1fr; }
    .t5-promo-modern { flex-direction: column; gap: 12px; text-align: center; }
    .t5-hub-title-text { font-size: 22px; }
    .t5-footer-bottom { flex-direction: column; text-align: center; }
    .t5-top-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .t5-top-specs { display: none; }
    .t5-features-grid { grid-template-columns: 1fr 1fr; }

    .burger-btn { display: flex; }
    .t5-nav-list {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        flex-direction: column;
        background: var(--t5-bg);
        padding: 8px 24px;
        gap: 0;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        z-index: 100;
        height: auto;
        border-bottom: 1px solid var(--t5-border);
    }
    .t5-nav-list.menu-open, .t5-nav-list[data-nav].menu-open { display: flex; }
    .t5-nav-list li { border-bottom: 1px solid var(--t5-border); }
    .t5-nav-list li:last-child .t5-nav-link { background: none; color: var(--t5-accent-dark); border-radius: 0; padding: 12px 0; }
    .t5-nav-link { height: auto; padding: 12px 0; font-size: 0.95rem; border-radius: 0; }
}

@media (max-width: 480px) {
    .t5-info-grid { grid-template-columns: 1fr; }
    .t5-header-inner { padding: 0 16px; }
    .t5-container { padding: 0 16px; }
    .t5-features-grid { grid-template-columns: 1fr; }
    .t5-hero-actions { flex-direction: column; align-items: center; }
    .t5-footer-grid { grid-template-columns: 1fr; }
    .t5-top-grid { grid-template-columns: 1fr; }
}



/* ============================================================
   AUTO-PATCHED: новые блоки для theme_005
   ============================================================ */

/* Hero service */
.t5-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t5-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t5-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t5-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t5-btn-secondary { display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; border: 2px solid #4CAF50; background: transparent; color: #4CAF50; text-decoration: none; transition: all 0.2s; }
.t5-btn-secondary:hover { background: rgba(76,175,80,0.12); }
.t5-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t5-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(76,175,80,0.12); border-radius: 12px; }
.t5-trust-item { display: flex; align-items: center; gap: 12px; }
.t5-trust-icon { font-size: 1.5rem; }
.t5-trust-text { display: flex; flex-direction: column; }
.t5-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1b2b1b; }
.t5-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t5-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t5-step-card { background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-top: 3px solid #4CAF50; }
.t5-step-num { font-size: 2rem; font-weight: 800; color: #4CAF50; opacity: 0.3; margin-bottom: 12px; }
.t5-step-title { font-size: 1rem; font-weight: 700; color: #1b2b1b; margin-bottom: 8px; }
.t5-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t5-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t5-tariff-card { background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 2px solid #e8ecf0; display: flex; flex-direction: column; }
.t5-tariff-highlighted { border-color: #4CAF50; box-shadow: 0 8px 32px rgba(76,175,80,0.12); position: relative; }
.t5-tariff-header { margin-bottom: 20px; }
.t5-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1b2b1b; margin: 0 0 4px; }
.t5-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t5-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t5-tariff-features li::before { content: "✓ "; color: #4CAF50; font-weight: 700; }

/* CTA section */
.t5-cta-section { background: rgba(76,175,80,0.12); border: 2px solid #4CAF50; color: #1b2b1b; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t5-cta-section h2 { color: #1b2b1b; font-size: 2rem; margin-bottom: 16px; }
.t5-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t5-cta-section .t5-section-title { color: #1b2b1b; }
.t5-cta-section .t5-lead { color: #444; }

/* FAQ */
.t5-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t5-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t5-feature-title { font-size: 1rem; font-weight: 700; color: #1b2b1b; margin-bottom: 8px; }
.t5-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t5-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t5-prose h2, .t5-prose h3 { color: #1b2b1b; }

/* Utility */
.t5-hub-all-link { display: inline-block; margin-top: 16px; color: #4CAF50; font-weight: 600; text-decoration: none; }
.t5-hub-all-link:hover { color: #388E3C; text-decoration: underline; }
.t5-btn-outline { border: 2px solid #4CAF50; color: #4CAF50; background: transparent; padding: 10px 22px; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.2s; }
.t5-btn-outline:hover { background: rgba(76,175,80,0.12); }
.t5-show-more { text-align: center; margin-top: 24px; }
.t5-mt-20 { margin-top: 20px; }
.t5-max-800 { max-width: 800px; }
.t5-m-auto { margin-left: auto; margin-right: auto; }
.t5-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t5-hidden { display: none; }
.t5-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t5-mb-0 { margin-bottom: 0; }
.t5-badge-accent { background: #4CAF50; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t5-card-link { text-decoration: none; color: inherit; display: block; }
.t5-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t5-mb-15 { margin-bottom: 15px; }
.t5-mb-30 { margin-bottom: 30px; }
.t5-pt-0 { padding-top: 0; }
.t5-pt-10 { padding-top: 10px; }
.t5-pt-20 { padding-top: 20px; }
.t5-pt-30 { padding-top: 30px; }
.t5-body { background: #f8fafb; }
.t5-section-count { font-size: 0.85rem; color: #888; }

/* ============================================================
   GLOBAL: карты офисов и квиз — одинаковы для всех тем
   ============================================================ */

/* Офисы — карта */
.offices-map { width: 100%; height: 400px; border-radius: 10px; margin-bottom: 24px; background: #f0f0f0; overflow: hidden; }
.offices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.offices-limited .office-card:nth-child(n+7) { display: none; }
.office-card { background: #fff; border: 1px solid #e8ecf0; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.office-card-title { font-size: 1rem; font-weight: 700; margin: 0; }
.office-card-row { font-size: 0.88rem; color: #555; margin: 0; }
.office-highlighted { outline: 2px solid #4b83c3; }

/* Квиз */
.quiz-section { background: #f4f7fb; }
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-progress-wrap { margin: 24px 0 32px; }
.quiz-step-label { font-size: 14px; color: #666; margin-bottom: 8px; }
.quiz-progress-bg { height: 6px; background: #e1e7f0; border-radius: 3px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: #4b83c3; border-radius: 3px; transition: width .3s ease; width: 0; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-title { font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.quiz-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid #e1e7f0; border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.quiz-option:hover { border-color: #4b83c3; background: #fff; }
.quiz-option input[type="radio"] { accent-color: #4b83c3; width: 18px; height: 18px; flex-shrink: 0; }
.quiz-option:has(input:checked) { border-color: #4b83c3; background: #fff; }
.quiz-nav { display: flex; gap: 12px; align-items: center; }
.quiz-nav-center { justify-content: center; margin-top: 24px; }
.quiz-result-inner { padding: 24px 0; }
.quiz-result-icon { font-size: 48px; margin-bottom: 12px; }
.quiz-suggested-tariff { font-size: 22px; font-weight: 700; color: #4b83c3; margin: 12px 0; }
.quiz-result-sub { color: #666; margin-bottom: 0; }

/* CTA text override — в самом конце */
.t5-cta-section.t5-cta-section .t5-section-title { color: #1b2b1b; }
.t5-cta-section.t5-cta-section .t5-section-title::after { background: #4CAF50; }
.t5-cta-section.t5-cta-section .t5-lead { color: #444; }
