/* İyilik Günü Derneği referans tasarımı */

:root {
    --cream: #F8F5F0;
    --card-bg: #FFFFFF;
    --radius-lg: 14px;
    --radius-pill: 50px;
    --text-dark: #1A1A1A;
    --text-muted: #64748B;
}

body.page-home {
    background: var(--cream);
    color: var(--text-dark);
}

body.page-home h1,
body.page-home h2,
body.page-home h3 {
    font-family: 'Poppins', system-ui, sans-serif;
    color: inherit;
}

/* Anasayfa container kuralı kaldırıldı — header/footer ile aynı .container kullanılır */

/* ===== HEADER — style.css tek kaynak ===== */

body.page-home .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

body.page-home .hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

/* ===== BUTONLAR (sadece anasayfa içerik alanı) ===== */
body.page-home .site-main .btn {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    border-radius: var(--radius-pill);
}

body.page-home .site-main .btn-pill {
    padding: .75rem 1.5rem;
    font-size: var(--fs-sm);
}

body.page-home .site-main .btn-pill-sm {
    padding: .55rem 1.15rem;
    font-size: var(--fs-sm);
}

body.page-home .site-main .btn-gold {
    background: var(--accent);
    color: #1a1a1a;
    border-color: var(--accent);
}

body.page-home .site-main .btn-hero-solid {
    background: var(--primary);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .85);
}

body.page-home .site-main .btn-hero-solid:hover {
    background: #0a4028;
    color: #fff;
    border-color: #fff;
    transform: none;
    box-shadow: none;
}

body.page-home .site-main .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== HERO ===== */
body.page-home .hero {
    min-height: 420px;
    overflow: hidden;
}

body.page-home .hero-slider .slide {
    display: none;
    position: relative;
    min-height: 420px;
}

body.page-home .hero-slider .slide.is-active {
    display: block;
}

body.page-home .hero__overlay {
    background: linear-gradient(90deg, rgba(6, 35, 22, .88) 0%, rgba(6, 35, 22, .5) 42%, rgba(6, 35, 22, .12) 100%);
}

body.page-home .hero__inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 420px;
    padding: 3rem 0 3.5rem;
}

body.page-home .hero__content {
    max-width: 540px;
}

body.page-home .hero__tag {
    font-size: var(--fs-sm);
    color: var(--accent);
    letter-spacing: .14em;
    margin-bottom: .75rem;
}

body.page-home .hero__content h1 {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: .85rem;
    letter-spacing: .02em;
}

body.page-home .hero__desc {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 1.5rem;
}

body.page-home .hero__actions {
    gap: .65rem;
}

body.page-home .hero-dots {
    bottom: 1.5rem;
}

body.page-home .hero-dot.is-active {
    background: var(--accent);
    width: 20px;
}

/* ===== KATEGORİLER — beyaz kartlar ===== */
body.page-home .home-categories {
    background: var(--cream);
    padding: 2rem 0 2.75rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

body.page-home .category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .85rem;
}

/* Ana sayfa — sınır içi yatay kaydırma */
body.page-home .home-scroll {
    position: relative;
}

body.page-home .home-scroll__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .15rem 0 .5rem;
}

body.page-home .home-scroll--categories:not(.is-sliding) .home-scroll__viewport {
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

body.page-home .home-scroll__viewport::-webkit-scrollbar {
    display: none;
}

body.page-home .home-scroll__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
    padding: 0 2px;
}

body.page-home .home-scroll__track--orbs {
    gap: 2rem;
    min-width: unset;
    justify-content: center;
    padding: 0 1.5rem;
}

body.page-home .home-scroll--categories.is-sliding .home-scroll__track--orbs {
    justify-content: flex-start;
    padding: 0 .5rem;
}

body.page-home .home-categories--orbs {
    padding: 2.25rem 0 2.5rem;
}

body.page-home .home-categories--orbs .container {
    max-width: 100%;
}

body.page-home .home-scroll--categories {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.75rem;
}

body.page-home .home-scroll--categories.is-sliding {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

body.page-home .home-scroll__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0d8cc;
    background: #fff;
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    transition: background .15s, color .15s, opacity .15s;
}

body.page-home .home-scroll__btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

body.page-home .home-scroll__btn:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

body.page-home .home-scroll--categories .home-scroll__btn--prev {
    left: -.65rem;
}

body.page-home .home-scroll--categories .home-scroll__btn--next {
    right: -.65rem;
}

body.page-home .home-scroll--categories .category-orb {
    flex: 0 0 110px;
    width: 110px;
    min-width: 110px;
    scroll-snap-align: center;
}

body.page-home .category-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: .25rem 0;
}

body.page-home .category-orb__circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: .55rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 2px 10px rgba(201, 162, 39, .15);
    text-decoration: none;
}

body.page-home .category-orb:hover .category-orb__circle,
body.page-home .category-orb__circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 81, 50, .12);
    background: #fffef8;
}

body.page-home .category-orb__name {
    font-size: .68rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.25;
    margin-bottom: .2rem;
    text-decoration: none;
}

body.page-home .category-orb__name:hover {
    color: var(--accent);
}

body.page-home .category-orb__link {
    font-size: .62rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
}

body.page-home .category-orb__link:hover {
    text-decoration: underline;
}

body.page-home .home-scroll--categories .category-box {
    flex: 0 0 210px;
    width: 210px;
    min-width: 210px;
    scroll-snap-align: start;
}

body.page-home .home-scroll--campaigns .campaign-card {
    flex: 0 0 calc(33.333% - .67rem);
    min-width: 280px;
    max-width: none;
    scroll-snap-align: start;
}

body.page-home .home-scroll:not(.is-sliding) .home-scroll__btn {
    display: none;
}

body.page-home .section-bar .home-scroll__btn {
    position: static;
    transform: none;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

body.page-home .category-box {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e2d8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 81, 50, .06);
    transition: transform .2s, box-shadow .2s;
}

body.page-home .category-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(15, 81, 50, .12);
}

body.page-home .category-box__thumb {
    display: block;
    height: 72px;
    background: center/cover no-repeat #e8e2d8;
    position: relative;
}

body.page-home .category-box__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 81, 50, .25));
}

body.page-home .category-box__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .55rem .45rem .65rem;
    flex: 1;
    text-align: center;
}

body.page-home .category-box__name {
    font-size: .68rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.3;
    margin-bottom: .45rem;
    min-height: 2.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-home .category-box__btn {
    font-size: .62rem;
    padding: .38rem .65rem;
    min-width: 0;
    width: 100%;
}

/* Eski ikon kartı override kaldırıldı — thumb kartları kullanılıyor */

/* ===== KAMPANYALAR ===== */
body.page-home .section {
    padding: 2.75rem 0;
}

body.page-home .section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

body.page-home .section-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

body.page-home .section-bar__nav {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

body.page-home .slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    border-color: #ddd;
}

body.page-home .campaign-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

body.page-home .home-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

body.page-home .home-campaigns-section .section-title--home {
    margin-bottom: 0;
}

body.page-home .section-title--home {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 1.5rem;
}

body.page-home .trust-band--home {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5dfd4;
}

body.page-home .trust-band--home .trust-band__item strong a {
    color: inherit;
    text-decoration: none;
}

body.page-home .trust-band--home .trust-band__item strong a:hover {
    color: var(--primary);
}

body.page-home .about-split--mockup {
    align-items: center;
}

body.page-home .home-activities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

body.page-home .home-activity {
    display: flex;
    align-items: flex-end;
    min-height: 240px;
    border-radius: var(--radius-lg);
    background: center/cover no-repeat var(--primary);
    text-decoration: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    transition: transform .2s;
}

body.page-home .home-activity::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6, 35, 22, .82) 100%);
}

body.page-home .home-activity:hover {
    transform: translateY(-4px);
}

body.page-home .home-activity__title {
    position: relative;
    z-index: 1;
    padding: 1.25rem 1.1rem;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}

body.page-home .news-card__more {
    display: inline-block;
    margin-top: auto;
    padding-top: .75rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

body.page-home .news-card__more:hover {
    color: var(--accent);
    text-decoration: underline;
}

body.page-home .monthly-strip--full {
    background: var(--primary);
    padding: 0;
}

body.page-home .monthly-strip--full .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

body.page-home .monthly-strip--full .monthly-strip__box {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

body.page-home .monthly-strip--full .monthly-strip__text p {
    color: rgba(255, 255, 255, .85);
    font-size: var(--fs-sm);
    margin-top: .35rem;
    max-width: 480px;
}

body.page-home .campaign-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid #ebe5da;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

body.page-home .campaign-card__img {
    height: 165px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

body.page-home .campaign-card__body {
    padding: 1rem 1.1rem 1.1rem;
}

body.page-home .campaign-card__body h3 {
    font-size: var(--fs-sm);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: .03em;
    margin-bottom: .4rem;
}

body.page-home .campaign-card__body p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: .75rem;
    line-height: 1.55;
}

body.page-home .campaign-card__amounts {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: var(--fs-sm);
    margin-bottom: .4rem;
}

body.page-home .campaign-card__amounts em {
    font-size: var(--fs-xs);
    color: #94a3b8;
    margin-bottom: .1rem;
}

body.page-home .campaign-card__amounts span {
    font-weight: 700;
    color: var(--primary);
}

body.page-home .campaign-card__amounts--right {
    text-align: right;
}

body.page-home .campaign-card .progress {
    height: 4px;
    margin-bottom: .75rem;
    background: #ece7df;
}

body.page-home .campaign-card__btn {
    font-size: var(--fs-sm);
    padding: .6rem 1.1rem;
}

/* ===== GÜVEN BANDI ===== */
body.page-home .trust-band--inline {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5dfd4;
    background: transparent;
    border-bottom: none;
}

body.page-home .trust-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

body.page-home .trust-band__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

body.page-home .trust-band__ico {
    width: 46px;
    height: 46px;
    border-radius: 4px;
    border: 2px solid var(--accent);
    color: var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

body.page-home .trust-band__item strong {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.3;
}

/* ===== BİZ KİMİZ ===== */
body.page-home .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

body.page-home .about-split__photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    margin-bottom: 1.25rem;
}

body.page-home .about-list {
    list-style: none;
}

body.page-home .about-list li {
    display: flex;
    gap: .65rem;
    margin-bottom: .75rem;
}

body.page-home .about-list__ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .15rem;
}

body.page-home .about-list strong {
    font-size: .78rem;
    text-transform: uppercase;
    color: var(--primary);
}

body.page-home .about-list p {
    font-size: .75rem;
    color: var(--text-muted);
}

body.page-home .about-split__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.25rem 0 .5rem;
}

body.page-home .about-split__content p {
    font-size: .82rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .75rem;
}

body.page-home .about-features {
    display: none;
}

/* ===== MEDYA / HABERLER ===== */
body.page-home .section-media {
    padding: 3.5rem 0 4.5rem;
    margin-bottom: 0;
}

body.page-home .media-block--spaced {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ebe5da;
}

body.page-home .gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

body.page-home .gallery-row__item {
    display: block;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: center/cover no-repeat var(--primary);
    min-height: 200px;
}

body.page-home .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

body.page-home .news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e5dfd4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    height: 100%;
}

body.page-home .news-card__img {
    display: block;
    width: 100%;
    height: 190px;
    min-height: 190px;
    flex-shrink: 0;
    background: center/cover no-repeat var(--primary);
}

body.page-home .news-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.page-home .news-card__body time {
    font-size: .72rem;
    color: #94a3b8;
    margin-bottom: .35rem;
}

body.page-home .news-card__body h3 {
    font-size: .9rem;
    font-weight: 700;
    margin: 0 0 .5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

body.page-home .news-card__body p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ===== AYLIK BAĞIŞ ===== */
body.page-home .monthly-strip {
    background: var(--cream);
    padding: 1.5rem 0 2.75rem;
}

body.page-home .monthly-strip__box {
    background: var(--primary);
    border-radius: 18px;
    padding: 2rem 2.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

body.page-home .monthly-strip__label {
    font-size: var(--fs-xs);
    color: var(--accent);
    letter-spacing: .12em;
}

body.page-home .monthly-strip h2 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: #fff;
    margin-top: .2rem;
    max-width: 420px;
}

body.page-home .monthly-strip__actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

body.page-home .monthly-strip__heart {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: rgba(220, 50, 50, .25);
    pointer-events: none;
}

body.page-home .monthly-strip__box .btn-hero-solid {
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .5);
}

/* ===== FOOTER — krem (referans) ===== */
.site-footer--cream {
    background: var(--cream, #F8F5F0);
    color: #334155;
    margin-top: 0;
    border-top: 1px solid #e8e2d8;
}

.site-footer--cream .footer__main {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 2rem 2.5rem;
    align-items: start;
    padding: 3rem 0 2.5rem;
}

.site-footer--cream .footer-brand {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.site-footer--cream .footer-brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer--cream .footer-brand__name {
    font-size: .82rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.4;
    padding-top: .35rem;
}

.site-footer--cream .footer-brand__desc {
    font-size: .95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.site-footer--cream .footer__col h4 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.125rem;
    letter-spacing: .06em;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.site-footer--cream .footer__col ul {
    list-style: none;
}

.site-footer--cream .footer__col li {
    margin-bottom: .55rem;
}

.site-footer--cream .footer__col a {
    color: #334155;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}

.site-footer--cream .footer__col a:hover {
    color: var(--primary);
}

.site-footer--cream .footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .95rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: .65rem;
}

.site-footer--cream .footer__contact li svg {
    flex-shrink: 0;
    margin-top: .15rem;
    color: var(--accent);
}

.site-footer--cream .footer__contact a {
    color: #334155;
}

.site-footer--cream .footer__contact a:hover {
    color: var(--primary);
}

.site-footer--cream .footer__map {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    margin-top: 1rem;
    border: 1px solid #ddd5c8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.site-footer--cream .footer__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer--cream .footer__bar {
    background: var(--primary);
    padding: .875rem 0;
}

.site-footer--cream .footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-footer--cream .footer__bar p {
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    margin: 0;
}

.site-footer--cream .footer__pay {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
}

.site-footer--cream .footer__pay span {
    padding: .4rem .7rem;
    border-radius: 5px;
    font-size: var(--fs-xs);
    font-weight: 800;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    letter-spacing: .05em;
    border: 1px solid rgba(255, 255, 255, .15);
}

.site-footer--cream .footer__social {
    display: flex;
    gap: .45rem;
}

.site-footer--cream .footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .15s;
}

.site-footer--cream .footer__social a:hover {
    background: var(--accent);
    color: #1a1a1a;
}

/* Eski page-home footer kuralları — geriye uyumluluk */
body.page-home .site-footer {
    background: var(--cream);
    margin-top: 0;
}

body.page-home .footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3.5rem 0;
}

body.page-home .footer__col h4 {
    font-size: .78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: .04em;
}

body.page-home .footer__col a {
    color: #334155;
    font-size: .875rem;
}

body.page-home .footer__col a:hover {
    color: var(--primary);
}

body.page-home .footer__col--brand p {
    font-size: .875rem;
    color: #475569;
    line-height: 1.65;
    margin: 1rem 0 1.25rem;
}

body.page-home .footer__contact li {
    font-size: .875rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: .35rem;
}

body.page-home .footer__map-title {
    margin-top: 1.25rem;
}

body.page-home .footer__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 120px;
    background: #e5e0d6;
    border: 1px solid #ddd5c8;
}

body.page-home .footer__bar {
    padding: 1rem 0;
}

body.page-home .footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

body.page-home .footer__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .site-footer--cream .footer__main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer--cream .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .site-footer--cream .footer__bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer--cream .footer__map {
        height: 200px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    body.page-home .home-scroll--categories .category-orb {
        flex: 0 0 100px;
        width: 100px;
        min-width: 100px;
    }

    body.page-home .home-scroll--categories .category-box {
        flex: 0 0 168px;
        width: 168px;
        min-width: 168px;
    }

    body.page-home .home-scroll--campaigns .campaign-card {
        flex: 0 0 calc(50% - .5rem);
        min-width: 260px;
    }

    body.page-home .trust-band__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem 2rem;
    }

    body.page-home .trust-band__item {
        flex: 0 1 calc(50% - 1rem);
        justify-content: flex-start;
    }

    body.page-home .about-split,
    body.page-home .news-grid,
    body.page-home .gallery-row,
    body.page-home .home-activities,
    body.page-home .home-campaign-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.page-home .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: #fff;
        border-top: 1px solid #e5dfd4;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        z-index: 20;
    }

    .navbar__menu.is-open {
        display: flex;
    }

    body.page-home .home-scroll--categories {
        padding: 0 1.75rem;
    }

    body.page-home .home-scroll__track--orbs {
        gap: 1.35rem;
    }

    body.page-home .home-scroll--categories .category-orb {
        flex: 0 0 92px;
        width: 92px;
        min-width: 92px;
    }

    body.page-home .category-orb__circle {
        width: 72px;
        height: 72px;
    }

    body.page-home .home-scroll--categories .category-box {
        flex: 0 0 148px;
        width: 148px;
        min-width: 148px;
    }

    body.page-home .home-scroll--categories .home-scroll__btn--prev {
        left: 0;
    }

    body.page-home .home-scroll--categories .home-scroll__btn--next {
        right: 0;
    }

    body.page-home .home-scroll--campaigns .campaign-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 0;
    }

    body.page-home .about-split,
    body.page-home .news-grid,
    body.page-home .gallery-row,
    body.page-home .home-activities,
    body.page-home .home-campaign-grid {
        grid-template-columns: 1fr;
    }

    body.page-home .trust-band__inner {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-home .trust-band__item {
        justify-content: flex-start;
    }

    body.page-home .footer__main {
        grid-template-columns: 1fr;
    }

    body.page-home .home-categories {
        padding-top: 1.5rem;
    }

    body.page-home .hero,
    body.page-home .hero-slider .slide,
    body.page-home .hero__inner {
        min-height: 400px;
    }

    body.page-home .monthly-strip__box {
        grid-template-columns: 1fr;
    }

    body.page-home .monthly-strip__heart {
        display: none;
    }
}

/* ===== BOYUT DÜZELTMESİ — anasayfa içerik alanı ===== */
body.page-home .site-main .btn-pill { padding: .8rem 1.75rem; font-size: var(--fs-sm); }
body.page-home .site-main .btn-pill-sm { padding: .6rem 1.2rem; font-size: var(--fs-sm); }

body.page-home .hero,
body.page-home .hero-slider .slide,
body.page-home .hero__inner { min-height: min(42vh, 440px); }
body.page-home .hero__tag { font-size: var(--fs-sm); }
body.page-home .hero__content h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
body.page-home .hero__desc { font-size: var(--fs-md); max-width: 560px; }

body.page-home .section-title { font-size: clamp(1.5rem, 2.5vw, 1.75rem); }
body.page-home .campaign-card__img { height: 220px; }
body.page-home .campaign-card__body h3 { font-size: 1rem; }
body.page-home .campaign-card__body p { font-size: var(--fs-sm); }
body.page-home .campaign-card__btn { font-size: var(--fs-sm); padding: .65rem 1.1rem; margin-top: .25rem; }

body.page-home .trust-band__ico { width: 52px; height: 52px; }
body.page-home .trust-band__item strong { font-size: var(--fs-sm); }

body.page-home .about-split__photo { height: 320px; }
body.page-home .about-list strong { font-size: var(--fs-sm); }
body.page-home .about-list p { font-size: var(--fs-sm); }
body.page-home .about-split__content h3 { font-size: var(--fs-xl); }
body.page-home .about-split__content p { font-size: var(--fs-md); }

body.page-home .monthly-strip h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
body.page-home .gallery-row__item { min-height: 240px; }
body.page-home .news-card__img { height: 220px; min-height: 220px; }
body.page-home .news-card__body h3 { font-size: var(--fs-lg); }
body.page-home .news-card__body p { font-size: var(--fs-sm); }

body.page-home .footer__col h4 { font-size: var(--fs-footer-title); }
body.page-home .footer__col a,
body.page-home .footer__contact li { font-size: var(--fs-footer-link); }

/* ===== İÇ SAYFALAR ===== */
.page-hero { background: linear-gradient(135deg, var(--primary), #0d5c38); color: #fff; padding: 2.75rem 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.35rem); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.9); font-size: var(--fs-md, 1.0625rem); max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: .75rem; }
.breadcrumb a { color: #fff; }

.donate-banner {
    background: var(--primary); border-radius: 16px; padding: 2rem 2.25rem;
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; color: #fff;
}
.donate-banner__label { font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
.donate-banner h2 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-top: .25rem; }
.donate-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pay-method {
    background: #fff; border: 2px solid #e8e2d8; border-radius: 14px; padding: 1.75rem;
    text-align: center; font-weight: 700; font-size: 1rem; color: var(--primary); display: block;
}
.pay-method:hover { border-color: var(--primary); }

.form-panel { background: #fff; border: 1px solid #e8e2d8; border-radius: 14px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,.05); max-width: 900px; margin: 0 auto; }
.form-group label { font-size: .9rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { font-size: 1rem; padding: .7rem .9rem; }

.bank-table-wrap { background: #F3EDE4; border-radius: 14px; padding: 2rem; }
.bank-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.bank-table th { background: var(--primary); color: #fff; padding: 1rem 1.25rem; font-size: .85rem; text-transform: uppercase; }
.bank-table td { padding: 1rem 1.25rem; font-size: .95rem; border-bottom: 1px solid #ece7df; }
.bank-table tr:nth-child(even) td { background: #faf8f5; }
.prose { font-size: var(--fs-md, 1.0625rem); line-height: 1.75; color: #475569; }

.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; }
.contact-info { background: #fff; border: 1px solid #e8e2d8; border-radius: 14px; padding: 1.75rem; }
.contact-map { border-radius: 14px; overflow: hidden; height: 240px; margin-top: 1rem; }

@media (max-width: 1024px) {
    .campaign-grid, .contact-layout { grid-template-columns: 1fr; }
    .pay-methods { grid-template-columns: 1fr; }
    .donate-banner { grid-template-columns: 1fr; }
}
