@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,700;0,900;1,300;1,400;1,700&family=Montserrat:wght@300;500;600&family=Open+Sans:wght@400;500;700&display=swap');

html, body {
    overscroll-behavior: none;
}

/* Page Content için üstten boşluk */
.page-content {
    padding-top: 100px;
}

/* =====================================================
   HEADER YENİ STİLLER
   ===================================================== */

/* CSS Değişkenleri */
:root {
    --thm-primary: #FF8B00;
    --thm-black: #2c2734;
    --thm-gray: #69666e;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header-top-bar {
    background: var(--thm-black);
    padding: 8px 0;
}

.header-top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-bar .contact-info a {
    color: #b5b1bc;
    font-size: 13px;
    transition: color 0.3s;
    text-decoration: none;
}

.header-top-bar .contact-info a:hover {
    color: var(--thm-primary);
}

.header-top-bar .contact-info i {
    color: var(--thm-primary);
    margin-right: 6px;
    font-size: 12px;
}

.header-top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top-bar .social-links a {
    color: #b5b1bc;
    font-size: 14px;
    transition: color 0.3s;
    text-decoration: none;
}

.header-top-bar .social-links a:hover {
    color: var(--thm-primary);
}

.header-main {
    padding: 0;
    background: #fff;
}

.header-main .header-inner {
    display: flex;
    align-items: center;
}

.header-main .logo-box {
    padding: 15px 0;
}

.header-main .logo-box img {
    max-height: 55px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.header-nav .nav-menu {
    display: flex !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    float: none !important;
}

.header-nav .nav-menu > li {
    position: relative;
    padding: 0 !important;
    margin-left: 0 !important;
}

.header-nav .nav-menu > li + li {
    margin-left: 0 !important;
}

.header-nav .nav-menu > li > a {
    display: block;
    padding: 30px 14px;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
}

.header-nav .nav-menu > li > a:after,
.header-nav .nav-menu > li > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li > a:before {
    content: none !important;
}

.header-nav .nav-menu > li:hover > a,
.header-nav .nav-menu > li.current > a {
    color: var(--thm-black);
}


/* Dropdown Menü */
.header-nav .nav-menu > li > ul.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: #fff !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border-top: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999 !important;
    padding: 12px 0 !important;
    list-style: none !important;
    margin: 0 !important;
    display: block !important;
}

.header-nav .nav-menu > li:hover > ul.dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.header-nav .nav-menu > li > ul.dropdown-menu > li {
    margin: 0 !important;
    list-style: none !important;
}

.header-nav .nav-menu > li > ul.dropdown-menu > li > a {
    display: block !important;
    padding: 10px 20px !important;
    color: #555 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    border-left: 3px solid transparent !important;
    text-decoration: none !important;
}

.header-nav .nav-menu > li > ul.dropdown-menu > li > a:hover {
    background: #fff8f0 !important;
    color: var(--thm-primary) !important;
    border-left-color: var(--thm-primary) !important;
    padding-left: 24px !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
    margin-left: 10px;
    border-left: 1px solid #eae5e3;
}

/* Para Birimi Dropdown */
.currency-dropdown {
    position: relative;
    margin-right: 10px;
}

.currency-dropdown .currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #69666e;
    transition: all 0.3s ease;
}

.currency-dropdown .currency-btn:hover {
    background: #ffe8d4;
    color: var(--thm-primary);
}

.currency-dropdown .currency-btn .currency-symbol {
    font-size: 16px;
    font-weight: 700;
    color: var(--thm-primary);
}

.currency-dropdown .currency-btn i {
    font-size: 10px;
    transition: transform 0.3s;
}

.currency-dropdown:hover .currency-btn i {
    transform: rotate(180deg);
}

.currency-dropdown .currency-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 5px;
}

.currency-dropdown:hover .currency-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown .currency-menu .currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #69666e;
}

.currency-dropdown .currency-menu .currency-option:hover {
    background: #fff8f0;
    color: var(--thm-primary);
}

.currency-dropdown .currency-menu .currency-option.active {
    background: #fff8f0;
    color: var(--thm-primary);
    font-weight: 600;
}

.currency-dropdown .currency-menu .currency-option .symbol {
    width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

/* Login Link */
.login-link {
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    text-decoration: none;
}

.login-link:hover {
    color: var(--thm-primary);
    text-decoration: none;
}

/* Sepet Butonu */
.header-cart-button {
    position: relative;
}

.header-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--thm-gray);
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
}

.header-cart-link:hover {
    background: #ffe8d4;
    color: var(--thm-primary);
    text-decoration: none;
}

.header-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--thm-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    border: 2px solid #fff;
}

/* CTA Buton */
.header-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--thm-primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.header-donate-btn:hover {
    background: var(--thm-black);
    color: #fff;
    text-decoration: none;
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--thm-black);
    cursor: pointer;
    padding: 10px;
}

/* Header spacer */
.header-spacer {
    height: 130px;
}

/* Responsive */
@media (max-width: 1199px) {
    .header-nav,
    .header-right,
    .header-top-bar {
        display: none !important;
    }
    .header-main .header-inner {
        position: relative;
        justify-content: center;
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header-spacer {
        height: 80px;
    }
    .header-main .logo-box img {
        max-height: 45px;
    }
}

/* Global Outline Temizleme - Mor Çerçeveleri Kaldır */
* {
    outline: none !important;
}

*:focus, *:active, *:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

input, textarea, select, button {
    outline: none !important;
    box-shadow: none !important;
}

input:focus, input:active, input:focus-visible,
textarea:focus, textarea:active, textarea:focus-visible,
select:focus, select:active, select:focus-visible,
button:focus, button:active, button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.fnp_h1 {
    font-family: var(--thm-font);
    font-size: 1.8rem;
    font-weight: 800;
}

.fnp_icerik_h1 {
    color: #FF8B00;
    font-family: var(--thm-font);

    font-size: 1.8rem;
    font-weight: 800;
}

.fnp_detail {
    font-size: 1rem;
    margin-top: 20px;
}
.fnp_detail iframe,
.fnp_detail embed,
.fnp_detail object,
.fnp_detail video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}

.slider-bottom-img {
    width: 110%;
}

.slider-bottom-img2 {
    position: absolute;
    right: -20px;
    z-index: 2;
    opacity: 0.6;
    top: 2px;
}

.feature-one {
    padding: 60px 0;
    background: #f5f5f5;
}

.feature-one__inner {
    padding: 60px !important;
    background: #fff;
    border-radius: 8px;
}

/* Banner kaldırıldıktan sonra - tüm sayfa section'ları için ortak stil */
.page-content-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.fnp_banner_h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-top: 30px;
}

.page-header__inner {
    text-align: right;
    margin-bottom: 60px;
}

.img_21 {
    margin-top: 20px;
    border-radius: 10px;
    width: 100%;
}

.thm-breadcrumb li a, .thm-breadcrumb li {
    font-size: 14px !important;
}

.contact-form__input-box input[type="text"], .contact-form__input-box input[type="password"], .contact-form__input-box input[type="email"] {
    margin-bottom: 10px !important;
    border-radius: 15px;
}

.fnp-share {
    margin-bottom: 10px;
    border-radius: 10px;
    display: inline-block;
    float: right;
    padding: 10px;
    margin-top: -20px;
    background-color: #fafafa;
}

.fnp-share li {
    float: left;
    list-style-type: none;
}

.fnp-share li a:hover {
    color: #FF8B00;
}

.fnp-share li a {
    display: block;
    padding: 5px;
    transition: 0.3s;
    font-size: 22px;
    color: #333333;
}

.fnp-share li a:hover {
}



#main-slider-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}


.fnp_slide_content {
    min-height: 400px;
    max-width: 500px;
    margin-left: 50px;
    margin-top: 25px;
    /*margin: 0 auto !important;*/
}

.fnp_slide_des {
    color: #ffffff;
    font-size: 18px;
    line-height: 32px;
    text-align: left;

}

.fnp_slide_h {
    text-align: left;
    color: #ffffff;
    font-size: 68px;
    line-height: 80px;
    font-weight: 800;
    margin-bottom: 7px;
    margin-top: 10px;
}

.swiper-pagination {
    max-width: 100px !important;
    float: left !important;
    left: 20% !important;
    bottom: 8% !important;
}

.contact-page__info-box-address-text {
    margin: 0 20px;
}

.block-title h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
}

.fnp_title_h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: bold;
}

.fnp_select {
    height: 67px;
    width: 100%;
    background: #ffffff;
    border: none;
    outline: none;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--thm-gray);
    border-radius: 30px;
    padding: 0 20px;
    text-align: center;
}


.fnp_boxshadow {
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10) !important;
}

.block-title h2 {
    font-size: 40px;
}

/* CONTAINER RELATIVE POSİTİON - ÖNEMLİ! */
.news-one__img-box,
.featured-campaigns__img,
.causes-one__img-box,
.causes-two__img-box,
.causes-three__img-box,
.events-one__img-box,
.project-details__img,
.donate-now__img,
.campaign-details__img,
.charity-details__img {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 10px !important;
}

/* TÜM BAĞIŞ KUTULARI İÇİN HOVER EFEKTİ - HER SAYFADA */
.news-one__img-box > a,
.featured-campaigns__img > a,
.causes-one__img-box > a,
.causes-two__img-box > a,
.causes-three__img-box > a,
.events-one__img-box > a,
.project-details__img > a,
.donate-now__img > a,
.campaign-details__img > a,
.charity-details__img > a {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(44, 39, 52, .60) !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 0 !important;
    transform: translateY(-100%) !important;
    transition: all 500ms ease !important;
    cursor: pointer !important;
    border-radius: 10px !important;
    z-index: 10 !important;
}

.news-one__img-box:hover > a,
.featured-campaigns__img:hover > a,
.causes-one__img-box:hover > a,
.causes-two__img-box:hover > a,
.causes-three__img-box:hover > a,
.events-one__img-box:hover > a,
.project-details__img:hover > a,
.donate-now__img:hover > a,
.campaign-details__img:hover > a,
.charity-details__img:hover > a {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.icon-heart:before {
    content: "\e903";
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.news-one__img-box > a i,
.featured-campaigns__img > a i,
.causes-one__img-box > a i,
.causes-two__img-box > a i,
.causes-three__img-box > a i,
.events-one__img-box > a i,
.project-details__img > a i,
.donate-now__img > a i,
.campaign-details__img > a i,
.charity-details__img > a i {
    font-size: 40px;
    color: #ff8b18 !important;
}

/* + İşaretini Gizle */
.news-one__img-box > a::after,
.featured-campaigns__img > a::after {
    display: none !important;
}

/* Çizgileri Kaldır */
.news-one__img-box > a,
.featured-campaigns__img > a,
.causes-one__img-box > a,
.causes-two__img-box > a,
.causes-three__img-box > a,
.events-one__img-box > a,
.project-details__img > a,
.donate-now__img > a,
.campaign-details__img > a,
.charity-details__img > a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.news-one__img-box > a i,
.featured-campaigns__img > a i,
.causes-one__img-box > a i,
.causes-two__img-box > a i,
.causes-three__img-box > a i,
.events-one__img-box > a i,
.project-details__img > a i,
.donate-now__img > a i,
.campaign-details__img > a i,
.charity-details__img > a i {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.testimonials-two__item {
    padding: 0px 0 60px;
}

.testimonials-two__text p {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    line-height: 32px;
    font-weight: 300;
}

.featured-campaigns {
    background-color: #efefef;
}

.news-one__title p {
    font-size: 16px;
}

.news-one__btn {
    background: #ff8b00;
    color: #ffffff;
    padding: 9.5px 30px !important;
}

.featured-campaigns__Category p {
    line-height: 40px;
}

.news-one__btn i {
    margin-right: 5px;
}

.news-one__btn {
    margin-top: 10px;
}

.testimonials-two:before {
    display: none;
}

.testimonials-two__carousel.owl-carousel .owl-dots {
    bottom: 60px;
}

.testimonials-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ffffff;
    opacity: .5;
    margin: 0px 3px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.testimonials-two__text h3 {
    font-size: 30px;
    color: #ffffff;
    font-family: var(--thm-font-shadows);
    line-height: 40px;
    margin-top: 18px;
    font-weight: bold;
}

.testimonials-two {
    padding: 200px 0 90px;
}

.bant2 {
    position: absolute;
    bottom: -10px;
    width: 100%;
}

.site-footer .bant3 {
    top: -3px;
}

.bant3 {
    transform: rotate(180deg); /* Equal to rotateZ(45deg) */
    position: absolute;
    top: -22px;
    width: 100%;
}

.welcome-two {
    padding: 120px 0 245px;
}

.feature-one__inner {
    top: 0;
}

.events-and-newsletter__newsletter {
    background-color: rgb(255 238 217);
}

.haber_h1 a {
    line-height: 36px;
    font-size: 34px;
    font-weight: 600;
    margin-top: 20px;
    display: block;
    margin-bottom: 20px;
    color: #333333 !important;
}

.fnp_box {
    margin-top: 0;
}

.news-one .row {
    row-gap: 30px;
}

.news-one .col-xl-4,
.news-one .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.news-one__single {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-one__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.news-one__content .news-one__btn {
    margin-top: auto;
}

.tabs-content .news-one__single {
    flex: unset;
}

.news-one__title h3 {
    line-height: 28px;
    font-size: 24px;
    line-height: 28px;
}

.fnp_img_br {
    border-radius: 10px;
}

.fnp_content h1, .fnp_content h2, .fnp_content h3, .fnp_content h4, .fnp_content h5 {
    color: #ff8b18 !important;
}

.page-header:before {
    background: rgb(2, 0, 36) !important;
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(255, 255, 255, 0) 0%, rgba(237, 237, 237, 0) 0%, rgba(0, 0, 0, 0.6741071428571428) 100%) !important;
}

.fnp_gallery {
    margin-top: 20px
}

.fnp_gallery a:hover img {
    opacity: 0.8;
}

.fnp_gallery a img {
    transition: .3s;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.fnp_tum_bagislar {
    margin-top: 10px;
    text-align: center;
    margin: 0 auto !important;
    background-color: #568e17 !important;
    width: 100%;
}

.fnp_bagis_turu {
}

.fnp_bagis_turu li {
    list-style-type: none;
}

.fnp_bagis_turu li a {
    display: block;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #efefef;
    transition: .3s;
    border-radius: 20px;
    color: #333333;
}

.fnp_bagis_turu li a:hover {
    color: #000000;
    background-color: #efefef;
}

.bagis_tutari {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.bagis_tutari a {
    color: #000000;
    transition: 0.3s;
    border: 1px solid #ff8b18;
    padding: 10px;
    border-radius: 10px;
}

.bagis_tutari a:hover {
    color: #ffffff;
    background-color: #ff8b18;
}

.bagis_tutari .priceBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.bagis_tutari .priceBox .price {
    flex: 1;
    position: relative;
    padding: 0 !important;
    overflow: hidden;
}

.bagis_tutari .priceBox .labels {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
}

.bagis_tutari .priceBox .labels.currency-label {
    left: 0;
    background: #ff8b00;
    color: #fff;
    padding-left: 10px;
}

.bagis_tutari .priceBox .labels.quantity-label {
    right: 0;
    font-size: 12px;
    padding-right: 5px;
    pointer-events: none;
}

.bagis_tutari .priceBox .price input {
    border: 0;
    background: none;
    width: 100%;
    height: 100%;
    color: #333333 !important;
    outline: 0;
    text-align: center;
}

.bagis_tutari .priceBox .price input.price-input {
    pointer-events: none;
    text-align: right;
    background: #ff8b00;
    color: #fff !important;
    padding-right: 10px;
}

.bagis_tutari .priceBox .price input.quantity-input {
    padding-left: 10px;
}

.bagis_tutari .priceBox .minus,
.bagis_tutari .priceBox .price,
.bagis_tutari .priceBox .plus {
    font-size: 18px;
    color: #333333;
    height: 50px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ff8b18;
    border-radius: 8px;
}

.bagis_tutari .priceBox .minus,
.bagis_tutari .priceBox .plus {
    cursor: pointer;
    width: 50px;
}

.bagis_tutari .priceBox .minus:hover,
.bagis_tutari .priceBox .plus:hover {
    color: #ff8b18;
}

.bagis_tutari .priceBox .minus:active,
.bagis_tutari .priceBox .plus:active {
    background: #ff8b18;
    color: #fff;
}

.featured-campaigns {
    background-image: url(/files/yardim-bg.jpg);
}

.uyelik_menu {
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #efefef;
    display: inline-block;
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 40px !important;

}

.uyelik_menu li {
    list-style-type: none;
    float: left;
    margin-right: 10px;
}


.uyelik_menu li a {
    display: block;
    text-align: center;
    padding: 15px 20px;
    font-size: 15px;
    transition: 0.3s;
    border-radius: 10px;
    border: 1px solid #ff8b18;
    background-color: #ff8b18;
    color: #ffffff;
    font-weight: bold;

}

.uyelik_menu li a:hover, .uyelik_menu li a.active {
    color: #efefef;
    border-radius: 10px;

    background-color: #c0650a !important;
}

.clearboth {
    clear: both;
}


.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: #ffffff !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.sepet_container {
    gap: 30px;
}

.sepet_header_box {
    background-color: #efefef;
    padding: 40px;
    flex: 1;
    flex-direction: column;
    gap: 20px;
    border-radius: 8px;
    align-items: center;
}

.selected {
    background-color: #ff8b18;
    color: #ffffff;
}

.sepet_p {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    display: block;
}

.sepet_h1 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    display: block;
}

.sepet_icon {
    background: #fff;
    color: #ff8b18 !important;
    height: 80px;
    width: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.sozlesme {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

.mb10 {
    margin-bottom: 10px;
}

.tab-container {
    border: 1px solid #efefef;
    margin: 30px 0;
    width: 100%;
    border-radius: 8px;
}

.tab-header {
    border-bottom: 2px solid #efefef;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab-header .title {
    font-weight: bold;
    font-size: 24px;
}

.tab2 {
    padding: 20px 40px;
}

.donate-summary-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 40px;
    border-bottom: 1px solid #efefef;
}

.donate-summary-div .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.donate-summary-div .top .left {
    flex: 1;
    min-width: 0;
}

.donate-summary-div .top .checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 0 0;
}

.donate-summary-div .bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.donate-summary-div .bottom .contact-form__input-box {
    display: flex;
    gap: 10px;
}

.donate-summary-div .bottom .contact-form__input-box input {
    height: 40px;
    padding: 20px;
    border-radius: 8px;
    background: #efefef;
    width: 200px;
    margin-bottom: 0 !important;
}

.donate-summary-div .bottom .contact-form__input-box input:last-child {
    width: 332px;
}

.donate-summary-div:hover {
    background: #fbfbfb;
}

.donate-summary-div:last-child {
    border: 0;
}

.donate-summary-div .title {
    font-size: 15px;
    font-weight: 600;
    color: #ff8b18;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donate-summary-div .right {
    display: flex;
    gap: 20px;
}

.donate-summary-div .person {
    display: flex;
    background: #efefef;
    padding: 5px;
    border-radius: 8px;
    align-items: center;
    gap: 10px;
}

.donate-summary-div .person div {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    border-radius: 8px;
}

.donate-summary-div .person div:hover {
    background: #fff;
}

.donate-summary-div .person div.selected-person {
    background: #ff8b18;
    color: #fff;
}

.donate-summary-div .priceBox {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.donate-summary-div .priceBox .minus,
.donate-summary-div .priceBox .price,
.donate-summary-div .priceBox .plus,
.donate-summary-div .priceBox .remove {
    font-size: 18px;
    color: #333333;
    height: 50px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 8px;
}

.donate-summary-div .priceBox .minus,
.donate-summary-div .priceBox .plus,
.donate-summary-div .priceBox .remove {
    cursor: pointer;
}

.donate-summary-div .priceBox .minus:hover,
.donate-summary-div .priceBox .plus:hover {
    border-color: #ff8b18;
    color: #ff8b18;
}

.donate-summary-div .priceBox .minus:active,
.donate-summary-div .priceBox .plus:active {
    border-color: #ff8b18;
    background: #ff8b18;
    color: #fff;
}

.donate-summary-div .priceBox .remove {
    color: #f84b4b;
}

.donate-summary-div .priceBox .remove:hover {
    border-color: #f84b4b;
}

.donate-summary-div .priceBox .remove:active {
    border-color: #f84b4b;
    background: #f84b4b;
    color: #fff;
}

.tab-footer {
    border-top: 2px solid #efefef;
    padding: 20px 40px;
    position: relative;
}

.tab-footer-alt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.tab-footer2 {
    flex-direction: column;
    align-items: inherit;
    gap: 10px;
}

.tab-footer2 .top {
    display: flex;
    justify-content: flex-end;
}

.tab-footer2 .top .checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab-footer2 .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab-footer2 .right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tab-footer .thm-btn {
    border-radius: 8px;
    padding: 12px 24px;
}

.tab-footer .thm-btn.turn-back {
    border-radius: 8px;
    padding: 6px 12px;
}

.tab-footer .total {
    display: flex;
    gap: 5px;
    color: #ff8b18;
    font-size: 18px;
    font-weight: 500;
}

.tab2 .checkout .title {
    border-bottom: 2px solid #efefef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.tab2 .checkout .contact-form__input-box {
    display: flex;
    gap: 10px;
}

.tab2 .checkout .contact-form__input-box input {
    height: 50px;
    padding: 20px;
    border-radius: 8px;
    background: #efefef;
    margin-bottom: 5px !important;
}

.tab2 .bottom {
    margin-top: 40px;
}

.tab2 .bottom .donate-summary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
}

.tab2 .bottom .donate-summary .right {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.header-cart-button:hover .basket-summary {
    display: block;
}

.basket-summary {
    display: none;
    padding: 10px;
    width: 400px;
    background: #fff;
    position: absolute;
    z-index: 999999;
    right: 0;
    top: 42px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    padding-top: 18px;
}

.basket-summary::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Mobil için basket-summary gizle */
@media (max-width: 768px) {
    .basket-summary,
    .basket-summary-wrapper .basket-summary,
    .mobile-nav__content .basket-summary,
    .header-cart-button:hover .basket-summary {
        display: none !important;
    }

    .mobile-nav__content .main-nav__right-three {
        position: relative;
        z-index: 9999;
    }

    .mobile-nav__container {
        position: relative;
        z-index: 1;
    }
}

.donate-summary-cart {
    padding: 8px 14px;
}

.donate-summary-cart .title {
    font-size: 14px;
}

.donate-summary-cart .priceBox .minus, .donate-summary-cart .priceBox .price, .donate-summary-cart .priceBox .plus, .donate-summary-cart .priceBox .remove {
    height: 34px;
    font-size: 14px;
    padding: 0 10px;
}

.basket-summary-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.basket-summary-footer .thm-btn {
    padding: 5px 15px;
    font-size: 14px;
}

.basket-summary-footer .thm-btn i {
    padding: 0;
}

.basket-summary-footer .total {
    display: flex;
    gap: 5px;
}

.result-tab {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.result-tab i {
    font-size: 100px;
    margin-bottom: 20px;
}

.result-tab.result-tab0 i {
    color: #da0505;
}

.result-tab.result-tab1 i {
    color: #1ada05;
}

.result-tab.result-tab2 i {
    color: #1ada05;
}

.result-tab.result-tab2 {
    text-align: center;
}

.result-title {
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.result-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}

.result-text p {
    margin: 0;
}

.you-can-help__three-icon ul li .text p {
    font-size: 16px;
}

.you-can-help__three-icon ul li {
    width: 20%;
}

.tabs-nav ul {
    border-bottom: 2px solid #ccc;
}

.tabs-nav ul li {
    flex: 1;
    position: relative;
    transition: all .3s;
}

.tabs-nav ul li.active:after {
    content: '';
    display: block;
    position: absolute;
    border-bottom: 2px solid #ff8b18;
    width: 100%;
    bottom: -2px;
}

.tabs-nav ul li a {
    color: #333;
    padding: 15px 10px;
    display: flex;
    gap: 5px;
    justify-content: center;
    transition: all .3s;
    font-weight: 500;
}

.tabs-nav ul li a:hover {
    color: #ff8b18;
}

.tabs-nav ul li.active a {
    color: #ff8b18;
}

.tabs-content {
    margin-top: 30px;
}

.tabs-content > div:not(:nth-child(1)) {
    display: none;
}

.tabs-content .news-one__content {
    min-height: unset;
}

.tabs-content .events-and-newsletter__newsletter {
    padding: 36px 20px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.tabs-content .news-one__content {
    padding: 0;
}

.tabs-content .news-one__title h3 {
    margin-top: 0;
    padding: 0;
}

.empty-basket {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px;
}

.login-register-form {
    background: #fcfcfc;
    padding: 40px;
}

.login-register-form.login, .login-register-form.register {
    display: none;
}

.login-register-form.login.show, .login-register-form.register.show {
    display: block;
}

.login-register-button-border {
    margin: 30px 0;
    border-bottom: 1px solid #efefef;
    position: relative;
}

.login-register-button-border span {
    position: absolute;
    top: -13px;
    background: #fcfcfc;
    left: 20px;
    padding: 0 6px;
}

.login-register-form .button-small {
    padding: 12px 40px;
    background: #3a3741;
    color: #fff;
}

.login-register-form .button-small:hover {
    background-color: var(--thm-primary);
    color: #fff;
}

.empty-basket a {
    color: #ff8b18;
}

.empty-basket .sepet_icon {
    background: #ff8b18;
    color: #fff !important;
    height: 140px;
    width: 140px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
}

.empty-basket .sepet_p {
    font-size: 18px;
}

.featured-campaigns__img img {
    max-height: 497px;
    object-fit: cover;
}

/* Anasayfa kart görsellerini standart boyut yap */
.news-one__img-box img,
.news-two__carousel .news-one__img-box img,
.featured-campaigns__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Büyük haber kartı için daha yüksek boyut */
.col-xl-12 .news-one__img-box img {
    height: 300px;
}

/* Proje kartları için daha büyük boyut */
.featured-campaigns__img img {
    height: 350px;
    max-height: 350px;
}

.what-is-commission {
    margin-left: 5px;
    cursor: pointer;
    color: #ff8b18;
}

.what-is-commission .desc {
    display: none;
    transition: all .3s;
    position: absolute;
    top: 28px;
    right: -10px;
    width: 320px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: text;
    color: #333;
    font-size: 13px;
    line-height: 1.6;
    z-index: 9999;
}

.what-is-commission:hover .desc,
.what-is-commission.active .desc {
    display: block;
}

@media (max-width: 768px) {
    .what-is-commission .desc {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: calc(100vw - 40px);
        max-width: 360px;
        z-index: 99999;
    }
}

.what-is-commission-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 99998;
}

.what-is-commission-overlay.active {
    display: block;
}

.back-button {
    padding: 12px 30px;
    background: #fd8a18;
    color: #fff;
    border-radius: 5px;
}

.back-button:hover {
    background: #e37b13;
    color: #fff;
}

.footer-widget__explore-list-two {
    margin-left: 0;
}

.gonulluol {
    margin-bottom: 20px;
    text-align: center;
    background: #17932c;
}

.thm-btn{
    height: max-content;
    text-align: center;
}

.feedback {
    background-color : #17932c;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border-color: #17932c;
    transition: 0.3s ease-in-out;
}

.feedback:hover{
    color: #fff;
}

#mybutton {
    position: fixed;
    bottom: 15px;
    right: 50px;
    z-index: 99999;
}

.scroll-to-top{
    bottom: 55px!important;
    right: 45px!important;
}

.whats-float {
    position: fixed;
    transform:translate(108px,0px);
    bottom:20%;
    right:0;
    width:150px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 2px 0 0 2px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}

.banka_odeme{
    margin-top: 20px;
    padding: 40px;
    background: #ff8913;
    color: #ffffff;
    border-radius: 20px;
}
.copy_btn {
    background: #ffffff;
    border: 1px solid #dddddd;
    font-weight: bold;
}

@media only screen and (max-width: 980px) {
    .bagis_tutari .priceBox .minus, .bagis_tutari .priceBox .plus {
        cursor: pointer !important;
        width: 34px !important;
    }

    .bagis_tutari .priceBox .minus, .bagis_tutari .priceBox .price, .bagis_tutari .priceBox .plus {
        padding: 0 10px !important;
    }

    .bagis_tutari .priceBox .price input.price-input {
        font-size: 16px;
        padding-right: 6px;
    }
}

/* KULLANICI DROPDOWN MENU STİLLERİ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.dropdown-toggle:hover {
    background-color: rgba(255, 139, 24, 0.1);
    color: #ff8b18 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 200px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ff8b18;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    clear: both;
    font-weight: 400;
    color: #333;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff8b18;
    text-decoration: none;
}

.dropdown-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    height: 0;
    margin: 5px 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

/* Çıkış yap butonu özel stil */
.dropdown-item[style*="color: #dc3545"]:hover {
    background-color: #f8d7da;
    color: #dc3545 !important;
}

/* Bootstrap dropdown arrow'unu kaldır */
.dropdown-toggle::after {
    display: none!important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 180px;
        right: -10px;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* =====================================================
   MODERN FOOTER STİLLER
   ===================================================== */

.modern-footer {
    background-color: #2C2734;
    color: #ffffff;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 80px 32px 0;
    }
}

@media (min-width: 1280px) {
    .footer-container {
        padding: 80px 128px 0;
    }
}

/* Üst Kısım: 2 Sütun */
.footer-top-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1200px) {
    .footer-top-row {
        flex-direction: row;
        gap: 80px;
    }
}

/* Sol Sütun */
.footer-left-col {
    flex-shrink: 0;
    min-width: 224px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.85;
}

.footer-cta-text {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

/* Telefon Butonu */
.footer-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 220px;
    height: 44px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid #5E5E5E;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-phone-btn:hover {
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    text-decoration: none;
}

.footer-phone-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Sağ Sütun */
.footer-right-col {
    flex: 1;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* Footer Widget */
.modern-footer .footer-widget {
    margin-bottom: 0;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--thm-primary, #FF8B00);
}

/* App Buttons */
.footer-app-buttons {
    display: flex;
    gap: 10px;
}

.footer-app-buttons .app-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #5E5E5E;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-app-buttons .app-btn:hover {
    background: var(--thm-primary, #FF8B00);
    border-color: var(--thm-primary, #FF8B00);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Alt Kısım */
.footer-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sosyal Medya */
.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--thm-primary, #FF8B00);
}

/* Ayırıcı */
.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.17);
}

/* Copyright Satırı */
.footer-copyright-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 24px;
}

@media (min-width: 640px) {
    .footer-copyright-row {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.footer-credit {
    display: inline-block;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--thm-primary, #FF8B00);
}

.footer-credit strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Resmi Bilgi */
.footer-official {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-official p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin: 0;
}

.footer-official strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-official em {
    color: var(--thm-primary, #FF8B00);
    font-style: normal;
    font-weight: 500;
}

.faaliyet-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 12px;
    background: rgba(255, 139, 0, 0.1);
    border: 1px solid rgba(255, 139, 0, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--thm-primary, #FF8B00);
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer-container {
        padding: 48px 16px 0;
        gap: 32px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-cta-text {
        font-size: 16px;
    }

    .footer-widget-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-copyright-row {
        align-items: center;
        text-align: center;
    }

    .footer-credit {
        display: block;
        margin: 8px 0 0 0;
        padding: 0;
        border: none;
    }

    .faaliyet-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .footer-official {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-official .footer-lang-selector {
        align-self: flex-start;
        margin-top: 12px;
    }
}

/* ================================================
   BLOG V2 - HABER & BLOG SLIDER
   ================================================ */

.blog-v2 {
    padding: 80px 0 70px;
}

/* Header */
.blog-v2-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.blog-v2-accent-bar {
    width: 40px;
    height: 4px;
    background-color: var(--thm-primary);
    margin-bottom: 10px;
    border-radius: 2px;
}

.blog-v2-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.blog-v2-desc {
    color: #777;
    font-size: 15px;
    line-height: 24px;
    margin-top: 8px;
    max-width: 480px;
}

.blog-v2-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.blog-v2-btn-all {
    display: inline-flex;
    align-items: center;
    background-color: var(--thm-primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 300ms ease;
    text-decoration: none;
    white-space: nowrap;
}

.blog-v2-btn-all:hover {
    background-color: #e07d00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 139, 0, 0.3);
}

.blog-v2-btn-all i {
    margin-left: 8px;
    font-size: 12px;
}

.blog-v2-nav-buttons {
    display: flex;
    gap: 8px;
}

.blog-v2-nav-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease;
    padding: 0;
}

.blog-v2-nav-btn:hover {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
    color: #fff;
}

/* Carousel */
.blog-v2-carousel.owl-carousel .owl-stage {
    display: flex !important;
}

.blog-v2-carousel.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

.blog-v2-carousel.owl-theme .owl-nav {
    display: none !important;
}

/* Kart */
.blog-v2-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.blog-v2-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Kart Görsel */
.blog-v2-card-img {
    display: block;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 10px 10px 0 0;
}

.blog-v2-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.blog-v2-card:hover .blog-v2-card-img img {
    transform: scale(1.05);
}

/* Kart Body */
.blog-v2-card-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
}

.blog-v2-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.45;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 44px;
}

.blog-v2-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

.blog-v2-card:hover .blog-v2-card-title a {
    color: var(--thm-primary);
}

.blog-v2-card-text {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    flex-grow: 1;
}

.blog-v2-read-more {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    transition: color 200ms ease;
    margin-top: auto;
}

.blog-v2-read-more:hover {
    color: var(--thm-primary);
}

/* Blog V2 Responsive */
@media (min-width: 768px) {
    .blog-v2-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

@media (max-width: 767px) {
    .blog-v2 {
        padding: 50px 0 40px;
    }

    .blog-v2-title {
        font-size: 26px;
    }

    .blog-v2-header {
        margin-bottom: 1.5rem;
    }

    .blog-v2-header-right {
        justify-content: space-between;
    }

    .blog-v2-card-img {
        height: 170px;
    }
}

/* ================================================
   MOBİL MENÜ - TEMİZ YENİ TASARIM
   ================================================ */

.mobile-nav__content {
    background-color: #fff !important;
    width: 300px;
    padding: 0 !important;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}

/* Logo + Kapat satırı */
.mobile-nav__content .logo-box {
    display: flex !important;
    align-items: center !important;
    padding: 20px 20px 20px 20px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__content .logo-box img {
    max-height: 42px;
    width: auto;
}

.mobile-nav__close {
    position: absolute !important;
    top: 22px !important;
    right: 20px !important;
    width: 34px;
    height: 34px;
    background: #f5f5f5 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-nav__close:hover {
    background: #FF8B00 !important;
    color: #fff !important;
}

/* Mobil menü eylem butonları (alt alta) */
.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2734;
    text-decoration: none !important;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav__action-btn:hover {
    background: #fff8f0;
    color: #FF8B00;
}

.mobile-nav__action-btn i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

/* Bağış Yap butonu - turuncu vurgulu */
.mobile-nav__donate-btn {
    background: #FF8B00 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    justify-content: center;
    margin-bottom: 6px;
}

.mobile-nav__donate-btn:hover {
    background: #e67e00 !important;
    color: #fff !important;
}

/* Sepet butonu */
.mobile-nav__cart-btn {
    background: #f5f5f5 !important;
    color: #2c2734 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.mobile-nav__cart-btn:hover {
    background: #fff8f0 !important;
    color: #FF8B00 !important;
}

.mobile-cart-badge {
    background: #FF8B00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 7px;
    margin-left: 4px;
}

.mobile-nav__action-row {
    margin-bottom: 6px;
}

/* Para birimi satırı */
.mobile-nav__currency-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2734;
}

.mobile-nav__currency-row i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #FF8B00;
}

/* Mobil özel para birimi dropdown */
.mobile-currency-dropdown {
    position: relative;
}

.mobile-currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--thm-black);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-currency-btn:hover,
.mobile-currency-btn.open {
    background: #fff8f0;
    border-color: var(--thm-primary);
}

.mobile-currency-btn .mobile-currency-symbol {
    font-weight: 700;
    color: var(--thm-primary);
    font-size: 14px;
}

.mobile-currency-btn i {
    font-size: 10px;
    transition: transform 0.2s;
    color: #999;
}

.mobile-currency-btn.open i {
    transform: rotate(180deg);
}

.mobile-currency-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    min-width: 130px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    overflow: hidden;
}

.mobile-currency-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #69666e;
    cursor: pointer;
    transition: all 0.15s;
}

.mobile-currency-option:hover {
    background: #fff8f0;
    color: var(--thm-primary);
}

.mobile-currency-option.active {
    background: #fff8f0;
    color: var(--thm-primary);
    font-weight: 600;
}

.mobile-currency-option .symbol {
    width: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

/* Dropdowns wrapper (para birimi + dil yan yana) */
.mobile-nav__dropdowns {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

/* Mobil dil dropdown */
.mobile-lang-dropdown {
    position: relative;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--thm-black);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.open {
    background: #fff8f0;
    border-color: var(--thm-primary);
}

.mobile-lang-btn .fa-language {
    font-size: 15px;
    color: var(--thm-primary);
}

.mobile-lang-btn .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.2s;
    color: #999;
}

.mobile-lang-btn.open .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    min-width: 110px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    overflow: hidden;
}

.mobile-lang-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #69666e;
    cursor: pointer;
    transition: all 0.15s;
}

.mobile-lang-option:hover {
    background: #fff8f0;
    color: var(--thm-primary);
}

.mobile-lang-option.active {
    background: #fff8f0;
    color: var(--thm-primary);
    font-weight: 600;
}

.mobile-lang-option .fa-check {
    font-size: 11px;
    color: var(--thm-primary);
}

/* Giriş Yap butonu */
.mobile-nav__login-btn {
    background: #f5f5f5 !important;
    color: #2c2734 !important;
    margin-bottom: 10px;
}

.mobile-nav__login-btn:hover {
    background: #fff8f0 !important;
    color: #FF8B00 !important;
}

/* Navigasyon linkleri */
.mobile-nav__container {
    padding: 8px 0 !important;
}

.mobile-nav__content .main-nav__navigation-box li a {
    color: #2c2734 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    transition: color 0.2s, background 0.2s;
}

.mobile-nav__content .main-nav__navigation-box li a:hover {
    color: #FF8B00 !important;
    background: #fff8f0 !important;
}

.mobile-nav__content .main-nav__navigation-box li:not(:last-child) {
    border-bottom: 1px solid #f5f5f5 !important;
}

.mobile-nav__content .main-nav__navigation-box ul {
    border-top: 1px solid #f5f5f5 !important;
    background: #fafafa;
}

.mobile-nav__content .main-nav__navigation-box li a button {
    background: #FF8B00 !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    color: #fff !important;
}

/* İletişim bölümü */
.mobile-nav__contact {
    padding: 16px 20px !important;
    margin: 0 !important;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.mobile-nav__contact li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.mobile-nav__contact li:last-child {
    margin-bottom: 0 !important;
}

.mobile-nav__contact li i {
    width: 32px !important;
    height: 32px !important;
    background: #FF8B00 !important;
    color: #fff !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
}

.mobile-nav__contact li a {
    color: #444 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Sosyal medya */
.mobile-nav__top {
    padding: 16px 20px !important;
    border-top: 1px solid #f0f0f0;
    justify-content: flex-start !important;
}

.mobile-nav__social {
    gap: 8px;
    display: flex;
}

.mobile-nav__social a {
    width: 36px !important;
    height: 36px !important;
    background: #f0f0f0 !important;
    color: #555 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: background 0.2s, color 0.2s !important;
    text-decoration: none !important;
}

.mobile-nav__social a:hover {
    background: #FF8B00 !important;
    color: #fff !important;
}

/* ================================================
   SEPET SAYFASI - MOBİL ITEM KART DÜZELTMELERİ
   ================================================ */
@media (max-width: 768px) {

    /* Kart: başlık üstte, kontroller altta */
    .donate-summary-div .top {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .donate-summary-div .top .left {
        width: 100% !important;
    }

    .donate-summary-div .top .right {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    /* Person toggle - tam genişlik, tek satır */
    .donate-summary-div .person {
        width: 100% !important;
        gap: 6px !important;
        padding: 4px !important;
        border-radius: 10px !important;
    }

    .donate-summary-div .person div {
        flex: 1 !important;
        text-align: center !important;
        white-space: nowrap !important;
        padding: 8px 10px !important;
        font-size: 13px !important;
        border-radius: 7px !important;
    }

    /* PriceBox - tam genişlik, eşit butonlar */
    .donate-summary-div .priceBox {
        width: 100% !important;
        gap: 6px !important;
    }

    .donate-summary-div .priceBox .minus,
    .donate-summary-div .priceBox .plus,
    .donate-summary-div .priceBox .remove {
        height: 46px !important;
        min-width: 46px !important;
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }

    .donate-summary-div .priceBox .price {
        flex: 1 !important;
        height: 46px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Tekrarlayan bağış checkbox */
    .donate-summary-div .checkbox label {
        font-size: 13px !important;
        gap: 8px !important;
    }

    /* Başkası adına input */
    .donate-summary-div .bottom .contact-form__input-box {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .donate-summary-div .bottom .contact-form__input-box input {
        width: 100% !important;
    }

    /* Kart padding */
    .donate-summary-div {
        padding: 14px 0 !important;
        gap: 12px !important;
    }

    /* Qty badge + başlık: sarılabilir, taşmaz */
    .donate-summary-div .title {
        white-space: normal !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    /* Bağışçı Bilgileri form - tek sütun */
    .donor-form-grid {
        grid-template-columns: 1fr !important;
    }

    .donor-form-field input {
        height: 46px !important;
        font-size: 14px !important;
    }

    /* Sağ sütun özet - badge + text */
    .donate-summary .donate-title {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .donate-summary .person-summary {
        font-size: 11px !important;
    }

    .donate-summary .price {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    /* SweetAlert dialog'lar mobilde tam genişlik */
    .swal2-popup {
        max-width: 92vw !important;
        padding: 16px 12px !important;
        font-size: 14px !important;
    }

    .swal2-popup .swal2-title {
        font-size: 16px !important;
    }

    .swal2-popup .swal2-html-container {
        font-size: 13px !important;
    }
}
