/* ============================================================
   THEME 011 — Pan-Asian Food / Recipes
   Coral/red accent, warm editorial typography, food-centric
   Prefix: t11-
   ============================================================ */

/* ===== 1. ROOT VARIABLES ===== */
:root {
    --t11-primary: #E84C60;
    --t11-primary-dark: #C7354A;
    --t11-primary-light: #FFE0E5;
    --t11-secondary: #FF8A65;
    --t11-secondary-dark: #E67348;
    --t11-accent-warm: #FFF3E0;
    --t11-bg-page: #FFFAF8;
    --t11-bg-card: #ffffff;
    --t11-bg-subtle: #FFF8F5;
    --t11-bg-footer: #F5F0EB;
    --t11-text-dark: #2D1F1F;
    --t11-text-body: #4A3B3B;
    --t11-text-muted: #8C7A7A;
    --t11-text-light: #B0A0A0;
    --t11-border: #F0E6E0;
    --t11-shadow-warm: rgba(232, 76, 96, 0.08);
    --t11-shadow-soft: rgba(45, 31, 31, 0.05);
    --t11-radius: 12px;
    --t11-radius-sm: 8px;
    --t11-radius-btn: 10px;
    --t11-font: 'Inter', system-ui, -apple-system, sans-serif;
    --t11-transition: 0.3s ease;
}

/* ===== 2. BODY / RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

body, .t11-body {
    background-color: var(--t11-bg-page);
    color: var(--t11-text-body);
    font-family: var(--t11-font);
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--t11-primary); text-decoration: none; transition: color var(--t11-transition); }
a:hover { color: var(--t11-primary-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ===== 3. HEADER + BURGER ===== */
.t11-header {
    background: var(--t11-bg-card);
    padding: 0;
    box-shadow: 0 1px 12px var(--t11-shadow-soft);
    z-index: 100;
    position: relative;
}
.t11-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 68px;
}
.t11-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--t11-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.t11-logo:hover { color: var(--t11-primary-dark); text-decoration: none; }

.t11-nav-list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 68px;
}
.t11-nav-link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    color: var(--t11-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.t11-nav-link:hover,
.t11-nav-link.active {
    color: var(--t11-primary);
    border-bottom-color: var(--t11-primary);
    background: rgba(232, 76, 96, 0.04);
    text-decoration: none;
}

/* 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: 26px;
    height: 2.5px;
    background: var(--t11-text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== 4. HERO ===== */
.t11-hero {
    background: linear-gradient(170deg, #FFFAF8 0%, #FFF0EC 50%, #FFFAF8 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.t11-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.t11-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 76, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.t11-h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--t11-text-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.t11-h1 em {
    font-style: normal;
    color: var(--t11-primary);
}

.t11-hero-sub {
    font-size: 1.2rem;
    color: var(--t11-text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
    font-weight: 400;
}

.t11-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}
.t11-hero-btn {
    padding: 13px 30px;
    font-size: 0.95rem;
}

/* ===== 5. BUTTONS ===== */
.t11-btn-primary {
    background: linear-gradient(135deg, var(--t11-primary) 0%, var(--t11-secondary) 100%);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: var(--t11-radius-btn);
    display: inline-block;
    transition: all var(--t11-transition);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(232, 76, 96, 0.25);
}
.t11-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 76, 96, 0.35);
    text-decoration: none;
    color: #ffffff;
}
.t11-btn-outline {
    background: transparent;
    color: var(--t11-primary);
    border: 2px solid var(--t11-primary);
    padding: 12px 32px;
    border-radius: var(--t11-radius-btn);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}
.t11-btn-outline:hover { background: var(--t11-primary); color: #fff; text-decoration: none; }
.t11-btn-full { display: block; text-align: center; }

/* ===== 6. BREADCRUMBS ===== */
.t11-breadcrumbs {
    padding: 14px 0;
    background: var(--t11-bg-card);
    border-bottom: 1px solid var(--t11-border);
}
.t11-bc-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}
.t11-bc-item {
    display: flex;
    align-items: center;
    color: var(--t11-text-muted);
}
.t11-bc-item a { color: var(--t11-primary); text-decoration: none; }
.t11-bc-item a:hover { text-decoration: underline; }
.t11-bc-item + .t11-bc-item::before {
    content: "/";
    margin: 0 8px;
    color: var(--t11-border);
}
.t11-bc-item:last-child span {
    color: var(--t11-text-dark);
    font-weight: 500;
}

/* ===== 7. LAYOUT UTILS ===== */
.t11-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.t11-section { padding: 70px 0; }
.t11-bg-alt { background: linear-gradient(180deg, #FFF5F0 0%, var(--t11-bg-page) 100%); }
.t11-bg-white { background: var(--t11-bg-card); }
.t11-bg-page { background: var(--t11-bg-page); }
.t11-text-center { text-align: center; }
.t11-text-sm { font-size: 0.85rem; }
.t11-text-muted { color: var(--t11-text-muted); }
.t11-subtitle { font-size: 1.2rem; color: var(--t11-text-muted); }
.t11-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.t11-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }
.t11-mb-15 { margin-bottom: 15px; }
.t11-mb-30 { margin-bottom: 30px; }
.t11-mb-0 { margin-bottom: 0 !important; }
.t11-mt-20 { margin-top: 20px; }
.t11-pt-0 { padding-top: 0 !important; }
.t11-pt-10 { padding-top: 10px !important; }
.t11-pt-20 { padding-top: 20px !important; }
.t11-pt-30 { padding-top: 30px !important; }
.t11-max-800 { max-width: 800px; }
.t11-m-auto { margin: 0 auto; }
.t11-hidden { display: none !important; }
.t11-flex-sb { display: flex; justify-content: space-between; align-items: baseline; }
.t11-flex-center { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== 8. SECTION TITLES — editorial style ===== */
.t11-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--t11-text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.t11-section-title span {
    font-weight: 400;
    color: var(--t11-text-muted);
}
.t11-section-count {
    display: inline-block;
    background: var(--t11-primary-light);
    color: var(--t11-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

/* ===== 9. FEATURES — illustrated cards with numbers ===== */
.t11-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.t11-feature-card {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 35px 28px;
    text-align: center;
    transition: transform var(--t11-transition), box-shadow var(--t11-transition);
    box-shadow: 0 4px 20px var(--t11-shadow-soft);
    position: relative;
    overflow: hidden;
}
.t11-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--t11-primary), var(--t11-secondary));
    opacity: 0;
    transition: opacity var(--t11-transition);
}
.t11-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--t11-shadow-warm);
}
.t11-feature-card:hover::before { opacity: 1; }
.t11-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--t11-primary-light) 0%, #FFE0D0 100%);
    color: var(--t11-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    font-weight: 800;
}
.t11-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--t11-text-dark);
}
.t11-feature-desc {
    font-size: 0.9rem;
    color: var(--t11-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== 10. TOP HUB CARDS — organic shapes, image-heavy ===== */
.t11-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}
.t11-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--t11-bg-card);
    border: none;
    border-radius: 16px;
    padding: 28px 18px 22px;
    text-decoration: none;
    color: var(--t11-text-dark);
    transition: transform var(--t11-transition), box-shadow var(--t11-transition);
    box-shadow: 0 4px 16px var(--t11-shadow-soft);
    position: relative;
    overflow: hidden;
}
.t11-top-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--t11-primary), var(--t11-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.t11-top-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--t11-shadow-warm);
    text-decoration: none;
}
.t11-top-card:hover::after { transform: scaleX(1); }
.t11-top-img-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--t11-bg-subtle);
    overflow: hidden;
}
.t11-top-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t11-top-name {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: var(--t11-text-dark);
}
.t11-top-meta {
    font-size: 0.85rem;
    color: var(--t11-primary);
    font-weight: 600;
    margin-top: 6px;
}
.t11-top-specs {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 12px;
    width: 100%;
}
.t11-top-spec {
    font-size: 0.78rem;
    color: var(--t11-text-muted);
    text-align: center;
    line-height: 1.4;
}
.t11-top-spec strong { color: var(--t11-text-dark); }

/* ===== 11. CARDS — warm shadows, no borders ===== */
.t11-card {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 25px;
    box-shadow: 0 6px 25px var(--t11-shadow-soft);
    transition: transform var(--t11-transition), box-shadow var(--t11-transition);
    margin-bottom: 20px;
}
.t11-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px var(--t11-shadow-warm);
}
.t11-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--t11-text-dark);
    margin-bottom: 8px;
}
.t11-card-price {
    color: var(--t11-primary);
    font-weight: 700;
    font-size: 20px;
}
.t11-spec-list { display: flex; flex-direction: column; }
.t11-card-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.t11-card-desc {
    font-size: 0.9rem;
    color: var(--t11-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 1.6;
}
.t11-card-img-wrap {
    height: 100px;
    background: var(--t11-bg-subtle);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--t11-radius-sm);
}
.t11-card-link { text-decoration: none; color: inherit; display: block; }
.t11-card-link:hover { text-decoration: none; }
.t11-badge-wrap { margin-bottom: 6px; }
.t11-badge-sm {
    background: var(--t11-primary-light);
    color: var(--t11-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.t11-badge-accent {
    background: var(--t11-accent-warm);
    color: var(--t11-secondary-dark);
}
.t11-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.t11-show-more { text-align: center; margin-top: 20px; }
.t11-all-link {
    color: var(--t11-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.t11-all-link:hover { color: var(--t11-primary-dark); }

/* ===== 12. HUB LIST ===== */
.t11-hub-title {
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--t11-text-dark);
    letter-spacing: -0.5px;
}
.t11-hub-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.t11-hub-item {
    padding: 10px 22px;
    background: var(--t11-bg-card);
    border: none;
    border-radius: 24px;
    text-decoration: none;
    color: var(--t11-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px var(--t11-shadow-soft);
}
.t11-hub-item:hover {
    background: var(--t11-primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(232, 76, 96, 0.25);
    text-decoration: none;
}
.t11-hub-badge {
    padding: 16px 24px;
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    text-decoration: none;
    color: var(--t11-text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all var(--t11-transition);
    box-shadow: 0 4px 16px var(--t11-shadow-soft);
}
.t11-hub-badge:hover {
    box-shadow: 0 10px 30px var(--t11-shadow-warm);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Hub Summary Cards */
.t11-hub-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.t11-hub-summary {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 22px;
    transition: all var(--t11-transition);
    box-shadow: 0 4px 16px var(--t11-shadow-soft);
}
.t11-hub-summary:hover {
    box-shadow: 0 10px 30px var(--t11-shadow-warm);
    transform: translateY(-2px);
}
.t11-hub-summary-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.t11-hub-summary-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--t11-bg-subtle);
}
.t11-hub-summary-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--t11-text-dark);
    text-decoration: none;
}
.t11-hub-summary-title:hover { color: var(--t11-primary); text-decoration: none; }
.t11-hub-summary-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.t11-hub-summary-spec {
    font-size: 0.85rem;
    color: var(--t11-text-muted);
    background: var(--t11-bg-subtle);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== 13. DETAIL PAGE ===== */
.t11-grid-ms {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}
.t11-sticky { position: sticky; top: 20px; }
.t11-item-row { display: flex; justify-content: space-between; padding: 12px 0; }
.t11-border-b { border-bottom: 1px solid var(--t11-border); }

/* ===== 14. SECTION CARD + INFO GRID ===== */
.t11-section-card {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 6px 25px var(--t11-shadow-soft);
}
.t11-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.t11-info-item {
    padding: 18px;
    background: var(--t11-bg-subtle);
    border-radius: var(--t11-radius-sm);
    border-left: 3px solid var(--t11-primary);
}
.t11-info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--t11-text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.t11-info-value {
    display: block;
    font-weight: 700;
    color: var(--t11-text-dark);
    font-size: 1.05rem;
}

/* ===== 15. CONTACTS ===== */
.t11-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}
.t11-social-links { display: flex; gap: 10px; }
.t11-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--t11-primary-light);
    color: var(--t11-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 18px;
    border: 1px solid transparent;
}
.t11-social-btn:hover {
    background: var(--t11-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 76, 96, 0.3);
}

/* ===== 16. PROMO ===== */
.t11-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.t11-promo-card {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 26px;
    box-shadow: 0 4px 18px var(--t11-shadow-soft);
    transition: transform var(--t11-transition), box-shadow var(--t11-transition);
}
.t11-promo-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.t11-promo-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--t11-primary), var(--t11-secondary));
}
.t11-promo-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--t11-shadow-warm);
}
.t11-promo-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--t11-text-dark);
    font-weight: 700;
}
.t11-promo-sub {
    margin: 0;
    font-size: 13px;
    color: var(--t11-text-muted);
}
.t11-promo-wrap { position: relative; }
.t11-promo-box {
    background: var(--t11-primary-light);
    border: 2px dashed rgba(232, 76, 96, 0.3);
    padding: 12px 22px;
    border-radius: var(--t11-radius-btn);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    min-width: 140px;
    justify-content: center;
}
.t11-promo-box:hover {
    background: #FFD0D7;
    border-color: var(--t11-primary);
}
.t11-promo-text {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-weight: 800;
    font-size: 18px;
    color: var(--t11-primary);
    letter-spacing: 1px;
}
.t11-copy-icon { color: var(--t11-text-light); transition: color 0.2s; }
.t11-promo-box:hover .t11-copy-icon { color: var(--t11-primary); }
.copy-tooltip-x {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t11-text-dark);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    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(--t11-text-dark);
}
.copy-tooltip-x.visible { opacity: 1; bottom: -45px; }

/* ===== 17. CITY TAGS ===== */
.t11-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.t11-city-tag {
    display: inline-block;
    padding: 9px 20px;
    background: var(--t11-bg-card);
    border: none;
    color: var(--t11-text-dark);
    text-decoration: none;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px var(--t11-shadow-soft);
}
.t11-city-tag:hover {
    background: var(--t11-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 76, 96, 0.25);
    text-decoration: none;
}
.t11-city-tag-more {
    background: transparent;
    border: 2px dashed var(--t11-primary);
    color: var(--t11-primary);
    box-shadow: none;
}

/* ===== 18. ACCORDION ===== */
.t11-accordion {
    background: var(--t11-bg-card);
    border-radius: var(--t11-radius);
    margin-bottom: 16px;
    box-shadow: 0 3px 12px var(--t11-shadow-soft);
    overflow: hidden;
}
.t11-accordion summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--t11-text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}
.t11-accordion summary:hover { background: var(--t11-bg-subtle); }
.t11-accordion summary::-webkit-details-marker { display: none; }
.t11-accordion summary::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    border-bottom: 2.5px solid var(--t11-primary);
    border-right: 2.5px solid var(--t11-primary);
    transition: transform 0.3s;
}
.t11-accordion[open] summary::after {
    transform: translateY(-50%) rotate(-135deg);
}
.t11-accordion[open] summary { color: var(--t11-primary); }
.t11-accordion .t11-accordion-content {
    padding: 0 28px 25px 28px;
    border-top: 1px solid var(--t11-border);
    margin-top: 8px;
    padding-top: 20px;
    color: var(--t11-text-muted);
    line-height: 1.7;
}

/* ===== 19. PROSE ===== */
.t11-prose {
    line-height: 1.8;
    color: var(--t11-text-body);
}
.t11-prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--t11-text-dark);
    font-weight: 800;
    font-size: 1.5rem;
}
.t11-prose h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--t11-text-dark);
    font-weight: 700;
}
.t11-prose ul { padding-left: 20px; margin: 15px 0; }
.t11-prose li { margin-bottom: 10px; }
.t11-prose li::marker { color: var(--t11-primary); }
.t11-prose strong { color: var(--t11-text-dark); }
.t11-prose a {
    color: var(--t11-primary);
    border-bottom: 1px solid rgba(232, 76, 96, 0.3);
}
.t11-prose a:hover { border-bottom-color: var(--t11-primary); text-decoration: none; }
.t11-prose blockquote {
    border-left: 4px solid var(--t11-primary);
    background: var(--t11-bg-subtle);
    padding: 16px 24px;
    margin: 20px 0;
    border-radius: 0 var(--t11-radius-sm) var(--t11-radius-sm) 0;
    color: var(--t11-text-body);
}

/* ===== 20. ERROR PAGE ===== */
.t11-error-page {
    padding: 100px 20px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}
.t11-error-code {
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--t11-primary), var(--t11-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.t11-error-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--t11-text-dark);
    margin-bottom: 14px;
}
.t11-error-desc {
    font-size: 1.05rem;
    color: var(--t11-text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}
.t11-error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== 21. GEO PAGE ===== */
.t11-geo-container { max-width: 1200px; }
.t11-geo-info-grid { margin-top: 15px; }
.t11-geo-promo-wrap { margin-top: 15px; }
.t11-geo-items-wrap { margin-top: 20px; }
.t11-geo-show-more { text-align: center; margin-top: 15px; }
.t11-geo-apps-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}
.t11-geo-hub-footer { margin-top: 20px; text-align: right; }
.t11-geo-zone-desc {
    margin-top: 20px;
    padding: 18px 22px;
    background: var(--t11-bg-subtle);
    border-left: 4px solid var(--t11-primary);
    border-radius: 0 var(--t11-radius-sm) var(--t11-radius-sm) 0;
    font-size: 0.95rem;
    color: var(--t11-text-muted);
    line-height: 1.7;
}
.geo-map {
    width: 100%;
    height: 400px;
    background: var(--t11-border);
    border-radius: var(--t11-radius);
    margin-top: 12px;
}

/* ===== 22. HUB PAGE ===== */
.t11-hub-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--t11-border);
    padding-bottom: 25px;
}
.t11-hub-logo-img { height: 64px; object-fit: contain; }
.t11-hub-title-text {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    color: var(--t11-text-dark);
    letter-spacing: -0.5px;
}
.t11-hub-sidebar {}
.t11-hub-specs-title { margin-top: 20px; }
.t11-mini-link { text-decoration: none; color: inherit; display: block; text-align: center; }
.t11-mini-name { font-weight: 600; font-size: 0.9rem; color: var(--t11-text-dark); }
.t11-app-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== 23. ITEM PAGE ===== */
.t11-item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.t11-item-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--t11-bg-subtle);
    border-radius: var(--t11-radius);
    padding: 24px;
}
.t11-item-h1 {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--t11-text-dark);
    letter-spacing: -0.5px;
}
.t11-item-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--t11-radius);
}
.t11-item-specs-title {
    margin-top: 0;
    font-weight: 700;
    color: var(--t11-text-dark);
}
.t11-hub-info-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.t11-hub-info-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--t11-bg-subtle);
}
.t11-hub-info-meta {}
.t11-hub-info-label { font-size: 0.85rem; color: var(--t11-text-muted); }
.t11-hub-info-name {
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: inherit;
}
.t11-hub-info-name:hover { color: var(--t11-primary); }
.t11-app-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }

/* ===== 24. ITEMS MINI GRID ===== */
.t11-items-mini-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px;
}
.t11-items-mini-card {
    background: var(--t11-bg-card);
    border: none;
    border-radius: var(--t11-radius);
    padding: 14px;
    transition: all var(--t11-transition);
    box-shadow: 0 3px 12px var(--t11-shadow-soft);
    text-align: center;
}
.t11-items-mini-card:hover {
    box-shadow: 0 8px 25px var(--t11-shadow-warm);
    transform: translateY(-3px);
}
.t11-items-mini-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* ===== 25. FOOTER — warm gray ===== */
.t11-footer {
    background-color: var(--t11-bg-footer);
    color: var(--t11-text-body);
    padding: 70px 0 30px;
    margin-top: 80px;
    font-size: 0.9rem;
    position: relative;
}
.t11-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--t11-primary), var(--t11-secondary), var(--t11-primary));
}
.t11-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.t11-footer-brand h2 {
    color: var(--t11-text-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 800;
}
.t11-footer-col h3 {
    color: var(--t11-text-dark);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.t11-footer-nav { list-style: none; padding: 0; margin: 0; }
.t11-footer-nav li { margin-bottom: 12px; }
.t11-footer-nav a { color: var(--t11-text-muted); text-decoration: none; transition: color 0.2s; }
.t11-footer-nav a:hover { color: var(--t11-primary); text-decoration: none; }
.t11-footer p { line-height: 1.7; color: var(--t11-text-muted); }
.t11-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 31, 31, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--t11-text-light);
    font-size: 0.85rem;
}
.t11-footer-btm-links { display: flex; gap: 20px; }
.t11-footer-btm-links a { color: var(--t11-text-light); }
.t11-footer-btm-links a:hover { color: var(--t11-primary); }

/* ===== 26. PRICING ===== */
.t11-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.t11-pricing-card {
    background: var(--t11-bg-card);
    border-radius: var(--t11-radius);
    padding: 36px 28px;
    box-shadow: 0 6px 25px var(--t11-shadow-soft);
    text-align: center;
    transition: all var(--t11-transition);
    position: relative;
    overflow: hidden;
}
.t11-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px var(--t11-shadow-warm);
}
.t11-pricing-popular {
    border: 2px solid var(--t11-primary);
    box-shadow: 0 8px 30px rgba(232, 76, 96, 0.15);
}
.t11-pricing-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--t11-primary), var(--t11-secondary));
}
.t11-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--t11-primary);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--t11-radius-btn);
    white-space: nowrap;
}
.t11-pricing-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    border-radius: var(--t11-radius);
}
.t11-pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--t11-text-muted);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.t11-pricing-desc {
    font-size: 0.9rem;
    color: var(--t11-text-muted);
    margin: 0 0 24px;
}
.t11-pricing-price { margin-bottom: 22px; }
.t11-pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--t11-text-dark);
    letter-spacing: -0.5px;
}
.t11-pricing-period {
    font-size: 0.88rem;
    color: var(--t11-text-muted);
}
.t11-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.t11-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--t11-border);
    font-size: 0.92rem;
    color: var(--t11-text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}
.t11-pricing-features li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--t11-primary-light);
    color: var(--t11-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== 27. TESTIMONIALS ===== */
.t11-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.t11-testimonial-card {
    background: var(--t11-bg-card);
    border-radius: var(--t11-radius);
    padding: 30px;
    box-shadow: 0 4px 18px var(--t11-shadow-soft);
    transition: all var(--t11-transition);
    position: relative;
}
.t11-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--t11-primary-light);
    font-family: Georgia, serif;
    font-weight: 700;
}
.t11-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--t11-shadow-warm);
}
.t11-testimonial-text {
    font-size: 0.95rem;
    color: var(--t11-text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.t11-testimonial-author { display: flex; align-items: center; gap: 12px; }
.t11-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--t11-primary-light);
}
.t11-testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--t11-text-dark); }
.t11-testimonial-role { font-size: 0.82rem; color: var(--t11-text-muted); }

/* ===== 28. RESPONSIVE ===== */

/* Decorative food accents — subtle circles */
.t11-section.t11-decorated { position: relative; overflow: hidden; }
.t11-section.t11-decorated::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -80px;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(232, 76, 96, 0.06);
    border-radius: 50%;
    pointer-events: none;
}
.t11-section.t11-decorated::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 138, 101, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 991px) {
    .t11-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .t11-grid-ms { grid-template-columns: 1fr; }
    .t11-grid-2 { grid-template-columns: 1fr; gap: 25px; }
    .t11-hero { padding: 70px 0 50px; }
    .t11-h1 { font-size: 42px; }
    .t11-pricing-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .t11-item-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .t11-hero { padding: 50px 0 40px; }
    .t11-h1 { font-size: 34px; letter-spacing: -1px; }
    .t11-hero-sub { font-size: 1rem; }
    .t11-section { padding: 50px 0; }
    .t11-section-title { font-size: 1.6rem; }
    .t11-section-card { padding: 22px; margin-bottom: 25px; }
    .t11-grid-auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
    .t11-info-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .t11-promo-grid { grid-template-columns: 1fr; }
    .t11-promo-modern { flex-direction: column; gap: 15px; text-align: center; }
    .t11-promo-modern::before { width: 100%; height: 4px; top: 0; left: 0; }
    .t11-hub-title-text { font-size: 24px; }
    .t11-hub-title { font-size: 1.6rem; }
    .t11-footer-bottom { flex-direction: column; text-align: center; }
    .t11-top-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
    .t11-top-img-wrap { width: 65px; height: 65px; }
    .t11-top-specs { display: none; }
    .t11-features-grid { grid-template-columns: 1fr 1fr; }
    .t11-testimonials-grid { grid-template-columns: 1fr; }
    .t11-item-h1 { font-size: 1.6rem; }

    /* Mobile burger menu */
    .burger-btn { display: flex; }
    .t11-nav-list {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--t11-bg-card);
        height: auto;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(45, 31, 31, 0.12);
        z-index: 100;
        overflow-y: auto;
    }
    .t11-nav-list.menu-open, .t11-nav-list[data-nav].menu-open { display: flex; }
    .t11-nav-list li { border-bottom: 1px solid var(--t11-border); }
    .t11-nav-link {
        height: auto;
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: none;
    }
    .t11-nav-link:hover,
    .t11-nav-link.active {
        border-bottom: none;
        background: transparent;
        color: var(--t11-primary);
    }
}

@media (max-width: 480px) {
    .t11-info-grid { grid-template-columns: 1fr; }
    .t11-header-inner { padding: 0 12px; }
    .t11-container { padding: 0 12px; }
    .t11-nav-link { padding: 0 10px; font-size: 0.85rem; }
    .t11-top-grid { grid-template-columns: repeat(2, 1fr); }
    .t11-features-grid { grid-template-columns: 1fr; }
    .t11-hero-actions { flex-direction: column; align-items: center; }
    .t11-footer-grid { grid-template-columns: 1fr; }
    .t11-h1 { font-size: 28px; }
    .t11-pricing-grid { grid-template-columns: 1fr; }
    .t11-error-code { font-size: 6rem; }
    .t11-hub-list-grid { grid-template-columns: 1fr; }
    .t11-items-mini-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============================================================
   AUTO-PATCHED: новые блоки для theme_011
   ============================================================ */

/* Hero service */
.t11-hero-wrapper { max-width: 760px; margin: 0 auto; text-align: center; }
.t11-lead { font-size: 1.15rem; color: #555; margin: 0 0 20px; line-height: 1.6; text-align: center; }
.t11-hero-sub { font-size: 1rem; color: #666; margin: 0 0 24px; text-align: center; }
.t11-hero-btn-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.t11-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 #43A047; background: transparent; color: #43A047; text-decoration: none; transition: all 0.2s; }
.t11-btn-secondary:hover { background: rgba(67,160,71,0.12); }
.t11-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Trust bar */
.t11-trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; padding: 20px 24px; background: rgba(67,160,71,0.12); border-radius: 12px; }
.t11-trust-item { display: flex; align-items: center; gap: 12px; }
.t11-trust-icon { font-size: 1.5rem; }
.t11-trust-text { display: flex; flex-direction: column; }
.t11-trust-text strong { font-size: 1.1rem; font-weight: 700; color: #1a2e1a; }
.t11-trust-text span { font-size: 0.8rem; color: #777; }

/* Steps */
.t11-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.t11-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 #43A047; }
.t11-step-num { font-size: 2rem; font-weight: 800; color: #43A047; opacity: 0.3; margin-bottom: 12px; }
.t11-step-title { font-size: 1rem; font-weight: 700; color: #1a2e1a; margin-bottom: 8px; }
.t11-step-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Tariffs */
.t11-tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.t11-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; }
.t11-tariff-highlighted { border-color: #43A047; box-shadow: 0 8px 32px rgba(67,160,71,0.12); position: relative; }
.t11-tariff-header { margin-bottom: 20px; }
.t11-tariff-title { font-size: 1.15rem; font-weight: 700; color: #1a2e1a; margin: 0 0 4px; }
.t11-tariff-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.t11-tariff-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; }
.t11-tariff-features li::before { content: "✓ "; color: #43A047; font-weight: 700; }

/* CTA section */
.t11-cta-section { background: rgba(67,160,71,0.12); border: 2px solid #43A047; color: #1a2e1a; text-align: center; padding: 60px 20px; border-radius: 16px; margin: 0; }
.t11-cta-section h2 { color: #1a2e1a; font-size: 2rem; margin-bottom: 16px; }
.t11-cta-section p { color: #444; font-size: 1.1rem; margin-bottom: 28px; }
.t11-cta-section .t11-section-title { color: #1a2e1a; }
.t11-cta-section .t11-lead { color: #444; }

/* FAQ */
.t11-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* Features */
.t11-feature-icon { font-size: 2rem; margin-bottom: 12px; }
.t11-feature-title { font-size: 1rem; font-weight: 700; color: #1a2e1a; margin-bottom: 8px; }
.t11-feature-desc { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Prose */
.t11-prose { max-width: 800px; line-height: 1.8; color: #444; }
.t11-prose h2, .t11-prose h3 { color: #1a2e1a; }

/* Utility */
.t11-hub-all-link { display: inline-block; margin-top: 16px; color: #43A047; font-weight: 600; text-decoration: none; }
.t11-hub-all-link:hover { color: #2E7D32; text-decoration: underline; }
.t11-btn-outline { border: 2px solid #43A047; color: #43A047; 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; }
.t11-btn-outline:hover { background: rgba(67,160,71,0.12); }
.t11-show-more { text-align: center; margin-top: 24px; }
.t11-mt-20 { margin-top: 20px; }
.t11-max-800 { max-width: 800px; }
.t11-m-auto { margin-left: auto; margin-right: auto; }
.t11-flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.t11-hidden { display: none; }
.t11-flex-sb { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.t11-mb-0 { margin-bottom: 0; }
.t11-badge-accent { background: #43A047; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.t11-card-link { text-decoration: none; color: inherit; display: block; }
.t11-badge-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.t11-mb-15 { margin-bottom: 15px; }
.t11-mb-30 { margin-bottom: 30px; }
.t11-pt-0 { padding-top: 0; }
.t11-pt-10 { padding-top: 10px; }
.t11-pt-20 { padding-top: 20px; }
.t11-pt-30 { padding-top: 30px; }
.t11-body { background: #f8fafb; }
.t11-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 — в самом конце */
.t11-cta-section.t11-cta-section .t11-section-title { color: #1a2e1a; }
.t11-cta-section.t11-cta-section .t11-section-title::after { background: #43A047; }
.t11-cta-section.t11-cta-section .t11-lead { color: #444; }

/* === Generic fallback classes (offices, tariff-price, balloon) === */
.tariff-price { font-size: 0.9rem; color: #888; margin-bottom: 8px; }
.map-balloon-btn { margin-top: 6px; padding: 4px 12px; background: #4b83c3; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 0.82rem; }
