/* ═══════════════════════════════════════════════════════════════
   MALTEPE KOLTUK YIKAMA — style.css v2
   Tema: Kırık beyaz + grafit + baker kırmızısı
   Editorial / minimal tasarım dili — Kadıköy'den tamamen farklı
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
    --ink: #1A1A1A;
    /* neredeyse siyah grafit */
    --ink-soft: #444444;
    --ink-muted: #777777;
    --ink-pale: #AAAAAA;

    --rust: #A84A2A;
    /* baker kırmızısı */
    --rust-lt: #F5EDE8;
    /* açık kırmızı tint */
    --rust-dk: #7E3620;

    --bg: #F8F7F4;
    /* kırık beyaz */
    --bg-alt: #EFEDE8;
    /* biraz daha koyu kırık beyaz */
    --surface: #FFFFFF;
    --border: #E0DDD7;

    --font-s: 'DM Serif Display', Georgia, serif;
    --font-b: 'DM Sans', system-ui, sans-serif;

    --r: 6px;
    --ease: .2s ease;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

p {
    color: var(--ink-soft);
}

/* ─── LAYOUT ──────────────────────────────────────────────────── */
.wrap {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: clamp(18px, 5vw, 48px);
}

.section {
    padding-block: clamp(64px, 8vw, 104px);
}

.sec-alt {
    background: var(--bg-alt);
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
h1 {
    font-family: var(--font-s);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
}

h1 em {
    font-style: italic;
    color: var(--rust);
}

h2 {
    font-family: var(--font-s);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 40px;
}

h3 {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 12px;
}

.eyebrow-light {
    color: rgba(255, 255, 255, .5);
}

.sec-head {
    margin-bottom: 48px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: var(--ink);
    color: var(--surface);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--r);
    transition: background var(--ease), transform var(--ease);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--r);
    transition: border-color var(--ease), color var(--ease);
}

.btn-ghost:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 2px solid var(--rust);
    padding-bottom: 2px;
    transition: color var(--ease), border-color var(--ease);
}

.btn-line:hover {
    color: var(--rust);
}

/* ═══════════════════════════════════════════════════════════════
   NAV — açık renkli, minimal
═══════════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-b);
    font-size: 0.95rem;
    color: var(--ink);
}

.brand-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nl {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-muted);
    padding: 7px 14px;
    border-radius: var(--r);
    transition: color var(--ease), background var(--ease);
}

.nl:hover {
    color: var(--ink);
    background: var(--bg-alt);
}

.nl-cta {
    color: var(--surface);
    background: var(--rust);
    padding: 7px 16px;
    font-weight: 600;
    margin-left: 6px;
}

.nl-cta:hover {
    background: var(--rust-dk);
    color: var(--surface);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — sol hizalı, sade, açık zemin
═══════════════════════════════════════════════════════════════ */
.hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding-block: clamp(64px, 9vw, 112px);
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-locale {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 420px;
    margin: 20px 0 32px;
}

.hero-text strong {
    color: var(--ink);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Right info grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 16px;
}

.ig-cell {
    background: var(--bg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ig-cell strong {
    font-family: var(--font-s);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}

.ig-cell span {
    font-size: 0.78rem;
    color: var(--ink-muted);
}

.ig-accent {
    background: var(--rust-lt);
}

.ig-accent strong {
    color: var(--rust-dk);
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-row span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — satır listesi
═══════════════════════════════════════════════════════════════ */
.srv-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.srv-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: background var(--ease);
}

.srv-row:first-child {
    border-top: 1px solid var(--border);
}

.srv-row:hover {
    background: var(--rust-lt);
    padding-inline: 16px;
    margin-inline: -16px;
    border-radius: var(--r);
    border-color: transparent;
}

.srv-num {
    font-family: var(--font-s);
    font-size: 1.1rem;
    color: var(--rust);
    font-weight: 400;
    opacity: .5;
}

.srv-body h3 {
    margin-bottom: 4px;
}

.srv-body p {
    font-size: 0.86rem;
}

.srv-tags-col {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
}

.srv-tags-col span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: var(--r);
}

/* ═══════════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════════ */
.why-cols {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wf {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.wf-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.wf h3 {
    margin-bottom: 4px;
}

.wf p {
    font-size: 0.86rem;
}

/* Aside */
.why-aside {
    position: sticky;
    top: 80px;
}

.big-quote {
    font-family: var(--font-s);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.45;
    border-left: 3px solid var(--rust);
    padding-left: 20px;
    margin-bottom: 28px;
}

.aside-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.as-item {
    background: var(--surface);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.as-item strong {
    font-family: var(--font-s);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--rust);
}

.as-item span {
    font-size: 0.7rem;
    color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.step {
    background: var(--surface);
    padding: 32px 24px;
    transition: background var(--ease);
}

.step:hover {
    background: var(--rust-lt);
}

.step:hover .step-n {
    color: var(--rust);
    opacity: 1;
}

.step-n {
    font-family: var(--font-s);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--ink-pale);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--ease), opacity var(--ease);
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════════ */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 32px;
}

.rv {
    background: var(--surface);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rv-stars {
    color: var(--rust);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.75;
    flex: 1;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.av {
    width: 34px;
    height: 34px;
    border-radius: var(--r);
    background: var(--rust);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rv-author strong {
    font-size: 0.88rem;
    display: block;
    color: var(--ink);
}

.rv-author span {
    font-size: 0.76rem;
    color: var(--ink-muted);
}

.rv-more {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SEO SECTION
═══════════════════════════════════════════════════════════════ */
.seo-sec {
    padding-block: clamp(48px, 7vw, 80px);
}

.seo-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.seo-cols p {
    font-size: 0.91rem;
}

.seo-cols strong {
    color: var(--ink);
}

.mahalle-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.mahalle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.mahalle-list li a {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 13px;
    border-radius: var(--r);
    transition: all var(--ease);
}

.mahalle-list li a:hover {
    border-color: var(--rust);
    color: var(--rust-dk);
    background: var(--rust-lt);
}

.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    font-size: 0;
    line-height: 0;
    color: transparent;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--ease);
}

.faq-btn:hover {
    color: var(--rust);
}

.faq-btn[aria-expanded="true"] {
    color: var(--rust);
}

.faq-ico {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ink-pale);
    line-height: 1;
    flex-shrink: 0;
    transition: transform var(--ease), color var(--ease);
}

.faq-btn[aria-expanded="true"] .faq-ico {
    transform: rotate(45deg);
    color: var(--rust);
}

.faq-ans {
    padding: 0 0 18px;
    font-size: 0.87rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT / CTA SECTION — açık zemin, editorial kart stili
═══════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--bg-alt);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.cta-left {
    background: var(--surface);
    padding: clamp(32px, 5vw, 56px);
}

.cta-left h2 {
    margin-bottom: 12px;
}

.cta-left h2 em {
    font-style: italic;
    color: var(--rust);
}

.cta-desc {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin-bottom: 28px;
}

.cta-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-meta li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cm-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    color: var(--ink-muted);
}

.cm-val {
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 500;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
}

.cta-link-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px;
    background: var(--surface);
    transition: background var(--ease);
}

.cta-link-btn:hover {
    background: var(--rust-lt);
}

.cta-link-btn:hover .clb-arrow {
    transform: translateX(4px);
    color: var(--rust);
}

.call-btn:hover .clb-icon {
    color: var(--rust);
}

.wa-btn:hover .clb-icon {
    color: #1da851;
}

.clb-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clb-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-muted);
    transition: color var(--ease);
    flex-shrink: 0;
}

.clb-left strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.clb-left small {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.clb-arrow {
    font-size: 1.2rem;
    color: var(--ink-pale);
    transition: transform var(--ease), color var(--ease);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(24px, 4vw, 48px);
    padding-block: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.fg-brand .sm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rust);
    display: inline-block;
    margin-bottom: 10px;
}

.fg-brand strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 10px;
}

.fg-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7;
}

.fg-nav h4 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.fg-nav ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fg-nav a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, .4);
    transition: color var(--ease);
}

.fg-nav a:hover {
    color: #fff;
}

.fg-contact h4 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.fp {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transition: color var(--ease);
}

.fp:hover {
    color: var(--rust);
}

.fw {
    font-size: 0.87rem;
    font-weight: 600;
    color: #25D366;
    transition: opacity var(--ease);
}

.fw:hover {
    opacity: .8;
}

.footer-bar {
    padding-block: 16px;
}

.fb-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.fb-inner p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, .25);
}

.fb-inner strong {
    color: rgba(255, 255, 255, .4);
}

.fkw {
    font-size: 0.68rem !important;
    text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   FABs
═══════════════════════════════════════════════════════════════ */
.fabs {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.fab:active {
    transform: scale(.95);
}

.fab-wa {
    background: #25D366;
    color: #fff;
}

.fab-call {
    background: var(--rust);
    color: #fff;
}

.fab::before {
    content: attr(aria-label);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .8);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: var(--r);
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}

.fab:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .why-cols {
        grid-template-columns: 1fr;
    }

    .why-aside {
        position: static;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-cols {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .burger {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 12px 18px 18px;
        gap: 2px;
        transform: translateY(-105%);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s, opacity .3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    }

    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nl {
        width: 100%;
    }

    .nl-cta {
        display: inline-block;
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .aside-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fb-inner {
        flex-direction: column;
    }

    .fkw {
        text-align: left !important;
    }

    .srv-row {
        grid-template-columns: 40px 1fr;
    }

    .srv-tags-col {
        display: none;
    }

    .fabs {
        right: 14px;
        bottom: 90px;
    }

    .fab {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    .mahalle-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .mahalle-list li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 8px 6px;
        white-space: normal;
        font-size: 0.8rem;
    }
}

/* ─── Print ───────────────────────────────────────────────────── */
@media print {

    .header,
    .fabs {
        display: none;
    }

    body {
        background: #fff;
    }
}