/* Bağış Sayfası Stilleri */

/* ============================================
   Genel Section Stilleri
   ============================================ */

.bagis-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.section-label {
    color: #c00e0e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #c00e0e 0%, #1f2950 100%);
    border-radius: 2px;
}

.section-title h2 {
    color: #1f2950;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Banka Kartları
   ============================================ */

.bank-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 41, 80, 0.15);
    border-color: #c00e0e;
}

.bank-card-header {
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bank-card:hover .bank-card-header {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
}

.bank-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.bank-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.bank-card:hover .bank-logo img {
    transform: scale(1.1);
}

.bank-logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
}

.bank-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bank-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bank-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.bank-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bank-info-item.iban-item {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label i {
    color: #c00e0e;
    font-size: 14px;
}

.info-value {
    color: #1f2950;
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
}

/* ============================================
   IBAN Kopyalama
   ============================================ */

.iban-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.iban-value {
    flex: 1;
    min-width: 200px;
    color: #1f2950;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    word-break: break-all;
}

.copy-iban-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-iban-btn:hover {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 14, 14, 0.3);
}

.copy-iban-btn:active {
    transform: translateY(0);
}

.copy-iban-btn.copied {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
}

.copy-iban-btn i {
    font-size: 16px;
}

/* ============================================
   Toast Mesaj
   ============================================ */

.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.copy-toast i {
    font-size: 20px;
}

/* ============================================
   Boş Durum
   ============================================ */

.no-bank-accounts {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-bank-accounts i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.no-bank-accounts p {
    color: #666;
    font-size: 18px;
    margin: 0;
}

/* ============================================
   Responsive Tasarım
   ============================================ */

@media (max-width: 991px) {
    .bagis-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .bank-card-header {
        padding: 25px 15px;
    }
    
    .bank-name {
        font-size: 22px;
    }
    
    .bank-card-body {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .bagis-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .iban-wrapper {
        flex-direction: column;
    }
    
    .iban-value {
        min-width: 100%;
        font-size: 14px;
    }
    
    .copy-iban-btn {
        width: 100%;
        justify-content: center;
    }
    
    .copy-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 575px) {
    .bank-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .bank-name {
        font-size: 20px;
    }
    
    .info-value {
        font-size: 14px;
    }
}

/* ============================================
   Ürünler Bölümü
   ============================================ */

.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 41, 80, 0.15);
    border-color: #c00e0e;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: all 0.3s ease;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 80, 0.3) 0%, rgba(192, 14, 14, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
    font-size: 48px;
}

.product-content {
    padding: 25px 25px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-actions {
    padding: 0 25px 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-title {
    color: #1f2950;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #c00e0e;
}

.product-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 140px;
}

.buy-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.buy-button:active {
    transform: translateY(0);
}

.buy-button i {
    font-size: 20px;
}

.detail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.detail-button:hover {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 41, 80, 0.3);
    color: #fff;
    text-decoration: none;
}

.detail-button:active {
    transform: translateY(0);
}

.detail-button i {
    font-size: 18px;
}

/* ============================================
   Ürünler Responsive
   ============================================ */

@media (max-width: 991px) {
    .products-section {
        padding: 80px 0;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 60px 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .buy-button,
    .detail-button {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .product-image {
        height: 180px;
    }
    
    .product-image-placeholder {
        height: 180px;
        font-size: 36px;
    }
}

/* ============================================
   Ürün Detay Sayfası
   ============================================ */

.product-category {
    color: #c00e0e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-category i {
    font-size: 16px;
}

.product-description-intro {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #c00e0e;
    border-radius: 5px;
}

.product-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.whatsapp-buy-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

.whatsapp-buy-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.whatsapp-buy-btn i {
    font-size: 24px;
}

.contact-btn {
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 41, 80, 0.3);
    color: #fff;
    text-decoration: none;
}

.contact-btn i {
    font-size: 20px;
}

/* ============================================
   Ürün Detay Responsive
   ============================================ */

@media (max-width: 767px) {
    .product-action-buttons {
        flex-direction: column;
    }
    
    .whatsapp-buy-btn,
    .contact-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .product-description-intro {
        font-size: 14px;
        padding: 15px;
    }
}

/* ============================================
   Kategori Filtreleme
   ============================================ */

.category-filter-wrapper {
    margin-bottom: 40px;
}

.category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.category-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter-btn:hover {
    background: #f8f9fa;
    border-color: #c00e0e;
    color: #c00e0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 14, 14, 0.15);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    border-color: #1f2950;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(31, 41, 80, 0.3);
}

.category-filter-btn.active:hover {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
    border-color: #c00e0e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 14, 14, 0.4);
}

.category-filter-btn i {
    font-size: 14px;
}

/* ============================================
   Kategori Badge
   ============================================ */

.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #1f2950 0%, #2a3a6b 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover .product-category-badge {
    background: linear-gradient(135deg, #c00e0e 0%, #e01a1a 100%);
    transform: scale(1.05);
}

.product-category-badge i {
    font-size: 10px;
}

/* ============================================
   Fiyat Gösterimi (Liste)
   ============================================ */

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #c00e0e;
    border-radius: 5px;
    color: #1f2950;
    font-size: 16px;
    font-weight: 700;
}

.product-price i {
    color: #c00e0e;
    font-size: 14px;
}

/* ============================================
   Fiyat Gösterimi (Detay)
   ============================================ */

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #c00e0e;
    border-radius: 10px;
    color: #1f2950;
}

.product-price-detail i {
    color: #c00e0e;
    font-size: 20px;
}

.product-price-detail .price-label {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.product-price-detail .price-value {
    font-size: 24px;
    font-weight: 700;
    color: #c00e0e;
}

/* ============================================
   Responsive - Kategori Filtre
   ============================================ */

@media (max-width: 991px) {
    .category-filter-buttons {
        gap: 10px;
    }
    
    .category-filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .category-filter-wrapper {
        margin-bottom: 30px;
    }
    
    .category-filter-buttons {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .category-filter-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .category-filter-buttons::-webkit-scrollbar-thumb {
        background: #c00e0e;
        border-radius: 2px;
    }
    
    .category-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .product-category-badge {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .product-price {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .product-price-detail {
        padding: 15px 20px;
        margin: 15px 0;
    }
    
    .product-price-detail .price-label {
        font-size: 16px;
    }
    
    .product-price-detail .price-value {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .category-filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .product-price-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-price-detail .price-value {
        font-size: 22px;
    }
}

/* ============================================
   Sidebar Kategoriler - Aktif Link
   ============================================ */

.widget-categories-card .categories-list li a.active {
    background-color: #f0f4ff;
    color: #1f2950;
    font-weight: 600;
    border-left: 4px solid #c00e0e;
    padding-left: 21px;
}

.widget-categories-card .categories-list li a.active:hover {
    background-color: #e0e8ff;
    color: #c00e0e;
}

.widget-categories-card .categories-list li a.active i {
    color: #c00e0e;
}

.widget-header i {
    margin-right: 8px;
    font-size: 18px;
}

