/* ═══════════════════════════════════════════════════════════════════════════
   TÜM BAĞIŞLAR SAYFASI - MODERN TASARIM
   ═══════════════════════════════════════════════════════════════════════════ */

.tb-page {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Sayfa Başlığı */
.tb-header {
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
}

.tb-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #FF8B00;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.tb-header__desc {
    font-size: 1rem;
    color: #4b5563;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TAB SİSTEMİ
   ═══════════════════════════════════════════════════════════════════════════ */

.tb-donations {
    margin-bottom: 60px;
}

.tb-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 30px;
    padding: 8px;
    list-style: none;
    background: #f8f9fb;
    border-radius: 12px;
}

.tb-tabs__nav-item {
    margin: 0;
}

.tb-tabs__nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tb-tabs__nav-link:hover {
    color: #1a1a2e;
    background: #fff;
    text-decoration: none;
}

.tb-tabs__nav-item--active .tb-tabs__nav-link {
    background: #fff;
    color: #FF8B00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tb-tabs__nav-link i {
    font-size: 16px;
}

/* Mobil Dropdown */
.tb-mobile-dropdown {
    display: none;
    margin-bottom: 30px;
    position: relative;
}

.tb-mobile-dropdown__select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.2s ease;
}

.tb-mobile-dropdown__select:hover {
    border-color: #FF8B00;
}

.tb-mobile-dropdown__select i {
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.tb-mobile-dropdown__select.active i {
    transform: rotate(180deg);
}

.tb-mobile-dropdown__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 100;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tb-mobile-dropdown__options.show {
    display: block;
}

.tb-mobile-dropdown__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tb-mobile-dropdown__option:last-child {
    border-bottom: none;
}

.tb-mobile-dropdown__option:hover {
    background: #f8f9fb;
}

.tb-mobile-dropdown__option i {
    color: #9ca3af;
    font-size: 16px;
}

/* Tab İçerikleri */
.tb-tabs__pane {
    display: none;
}

.tb-tabs__pane--active {
    display: block;
    animation: tbFadeIn 0.3s ease;
}

@keyframes tbFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kart Grid */
.tb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAĞIŞ KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */

.tb-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tb-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.tb-card__img {
    display: block;
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tb-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tb-card:hover .tb-card__img img {
    transform: scale(1.05);
}

.tb-card__img-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF8B00 0%, #e07d00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 139, 0, 0.4);
    transition: transform 0.3s ease;
}

.tb-card:hover .tb-card__img-badge {
    transform: scale(1.1);
}

.tb-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tb-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tb-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.tb-card:hover .tb-card__title a {
    color: #FF8B00;
}

/* Progress Bar */
.tb-card__progress {
    margin-bottom: 14px;
}

.tb-card__progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tb-card__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF8B00, #e07d00);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.tb-card__progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}

.tb-card__progress-stats span {
    font-weight: 600;
}

.tb-card__progress-stats .tb-collected {
    color: #10b981;
}

/* Form Alanları */
.tb-card__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.tb-card__input-row {
    display: flex;
    gap: 8px;
}

.tb-card__input-group {
    display: flex;
    flex: 2;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.tb-card__input-group:focus-within {
    border-color: #FF8B00;
}

.tb-card__input-group--small {
    flex: 1;
    max-width: 100px;
}

.tb-card__input-group--full {
    flex: 1;
}

.tb-card__input-group input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    min-width: 0;
}

.tb-card__input-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.tb-card__input-group input:focus {
    outline: none;
}

.tb-card__input-group input[readonly] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.tb-card__input-suffix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #f8f9fb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tb-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #FF8B00 0%, #e07d00 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 0, 0.3);
    margin-top: auto;
}

.tb-card__btn:hover {
    background: linear-gradient(135deg, #e07d00 0%, #cc7000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 0, 0.4);
}

/* Adet Stepper */
.tb-card__stepper {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.tb-card__stepper-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    background: #f9fafb;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.tb-card__stepper-btn:hover {
    background: #FF8B00;
    color: #fff;
}
.tb-card__stepper-count {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    padding: 10px 0;
    line-height: 1;
}

.tb-card__btn i {
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJE KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */

.prj-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prj-card {
    background: #fff;
    border: 1px solid rgba(164, 174, 198, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.prj-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.prj-card-inner {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 0;
    padding: 20px;
    align-items: center;
}

/* Mobil footer - varsayılan gizli */
.prj-mobile-footer {
    display: none;
}
/* Mobil footer stilleri */
.prj-mf-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.prj-mf-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.prj-mf-stat--right {
    text-align: right;
    align-items: flex-end;
}
.prj-mf-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.prj-mf-value {
    font-size: 16px;
    font-weight: 700;
    color: #343f52;
}
.prj-mf-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.prj-mf-bar-track {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}
.prj-mf-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF8B00, #ffad42);
    border-radius: 10px;
    min-width: 4px;
    transition: width 0.6s ease;
}
.prj-mf-percent {
    font-size: 13px;
    font-weight: 700;
    color: #FF8B00;
    white-space: nowrap;
    min-width: 48px;
    text-align: right;
}
.prj-mf-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #FF8B00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.prj-mf-donate-btn:hover {
    background: #e07d00;
    color: #fff;
}
.prj-mf-donate-btn i {
    font-size: 13px;
}

.prj-card-img {
    width: 180px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: block;
}

.prj-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.prj-card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.prj-card:hover .prj-card-img-overlay {
    opacity: 1;
}

.prj-card-img-overlay span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.prj-card-body {
    padding: 0 25px;
    flex: 1;
}

.prj-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #343f52;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.prj-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.prj-card:hover .prj-card-title a {
    color: #FF8B00;
}

.prj-card-stats {
    display: flex;
    gap: 30px;
}

.prj-stat {
    display: flex;
    flex-direction: column;
}

.prj-stat-label {
    font-size: 11px;
    color: #999;
    background: #f7f7f8;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.prj-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #343f52;
}

.prj-card-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
}

/* Circular Progress */
.prj-progress-circle {
    width: 100px;
    height: 100px;
    position: relative;
}

.prj-progress-circle::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.prj-progress-circle > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.prj-progress-left { left: 0; }
.prj-progress-right { right: 0; }

.prj-progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    border-color: #FF8B00;
    position: absolute;
    top: 0;
}

.prj-progress-left .prj-progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    transform-origin: left center;
}

.prj-progress-right .prj-progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    transform-origin: right center;
}

.prj-progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.prj-progress-percent {
    font-size: 20px;
    font-weight: 700;
    color: #343f52;
    line-height: 1;
}

.prj-progress-percent sup {
    font-size: 11px;
    font-weight: 600;
}

.prj-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid #FF8B00;
    color: #FF8B00;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.prj-donate-btn:hover {
    background: #FF8B00;
    color: #fff;
}

.prj-donate-btn i {
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KURBAN BAĞIŞI - TEK KART + 3 DROPDOWN
   ═══════════════════════════════════════════════════════════════════════════ */

.kb-single-card {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.kb-single-card__img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.kb-single-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kb-single-card:hover .kb-single-card__img img {
    transform: scale(1.03);
}

.kb-single-card__body {
    padding: 24px;
}

.kb-single-card__body form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kb-single-card__select-group {
    position: relative;
}

.kb-single-card__select {
    width: 100%;
    padding: 13px 40px 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kb-single-card__select:focus {
    outline: none;
    border-color: #FF8B00;
    box-shadow: 0 0 0 3px rgba(255, 139, 0, 0.1);
}

.kb-single-card__select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

.kb-single-card__price-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.kb-single-card__price-input {
    flex: 1;
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.kb-single-card__fiyat {
    flex: 1;
    border: none;
    padding: 13px 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    background: #f9fafb;
    min-width: 0;
}

.kb-single-card__fiyat:focus {
    outline: none;
}

.kb-single-card__currency {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #f0f0f0;
    color: #6b7280;
    font-size: 15px;
    font-weight: 700;
    border-left: 1.5px solid #e0e0e0;
}

.kb-single-card__adet-input {
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    min-width: 110px;
}

.kb-single-card__adet {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 13px 4px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.kb-single-card__adet::-webkit-outer-spin-button,
.kb-single-card__adet::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.kb-single-card__stepper-row {
    margin-top: 8px;
}

.kb-single-card__stepper-row .tb-card__stepper {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.kb-single-card__stepper-row .tb-card__stepper-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    background: #f9fafb;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.kb-single-card__stepper-row .tb-card__stepper-btn:hover {
    background: #FF8B00;
    color: #fff;
}

.kb-single-card__stepper-row .tb-card__stepper-count {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    padding: 10px 0;
    line-height: 1;
}

.kb-single-card__adet:focus {
    outline: none;
}

.kb-single-card__adet-label {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #f0f0f0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    border-left: 1.5px solid #e0e0e0;
    white-space: nowrap;
}

.kb-single-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #FF8B00 0%, #e07d00 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 0, 0.3);
    margin-top: 4px;
}

.kb-single-card__btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #e07d00 0%, #cc7000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 0, 0.4);
}

.kb-single-card__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.kb-single-card__btn i {
    font-size: 15px;
}

/* Loading Indicator */
.tb-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
}

.tb-loading__spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tb-loading__circle {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #FF8B00;
    border-radius: 50%;
    animation: tbSpin 1s linear infinite;
}

@keyframes tbSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tb-loading__text {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Fade in animation for cards */
.tb-card-fade {
    animation: tbFadeInUp 0.5s ease forwards;
}

@keyframes tbFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .tb-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prj-card-inner {
        grid-template-columns: 150px 1fr auto;
    }
    
    .prj-card-img {
        width: 150px;
        height: 110px;
    }
    
    .prj-progress-circle {
        width: 80px;
        height: 80px;
    }
    
    .prj-progress-percent {
        font-size: 16px;
    }
    
}

@media (max-width: 768px) {
    .tb-page {
        padding: 40px 0 60px;
    }
    
    .tb-header__title {
        font-size: 1.75rem;
    }
    
    .tb-tabs {
        display: none;
    }
    
    .tb-mobile-dropdown {
        display: block;
    }
    
    .tb-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .prj-card-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .prj-card-img {
        width: 100%;
        height: 180px;
    }

    .prj-card-body {
        padding: 0;
    }

    .prj-card-stats {
        display: none;
    }

    .prj-card-right {
        display: none;
    }

    .prj-mobile-footer {
        display: block;
        padding: 0 20px 20px;
        border-top: 1px solid #f0f0f0;
        margin-top: -5px;
        padding-top: 15px;
    }
    
    .kb-single-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tb-header__title {
        font-size: 1.5rem;
    }
    
    .prj-card-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .tb-card__input-row {
        flex-direction: column;
    }
    
    .tb-card__input-group--small {
        max-width: none;
    }
    
    .kb-single-card__price-row {
        flex-direction: column;
    }
    
    .kb-single-card__adet-input {
        min-width: unset;
    }
}

/* ===== GENEL KONFİGURATÖR KART STİLLERİ ===== */

.gk-card .tb-card__img {
    display: block;
    cursor: default;
}

.gk-card .tb-card__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gk-select-wrap {
    margin-bottom: 10px;
}

.gk-select-hint {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 5px;
    font-style: italic;
}

/* Konfiguratör kartlarında fiyat + adet yan yana eşit genişlikte */
.gk-price-stepper-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    overflow: hidden;
}

.gk-price-stepper-row .tb-card__input-row {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}

.gk-price-stepper-row .tb-card__stepper {
    flex: 1 1 0;
    min-width: 0;
    overflow: visible;
}

.gk-price-stepper-row .tb-card__stepper-btn {
    flex: 0 0 32px;
    width: 32px;
    min-width: 32px;
}

/* kb single kart için fiyat + stepper satırları eşit genişlik */
.gk-price-stepper-row .kb-single-card__price-row {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}

.gk-price-stepper-row .kb-single-card__price-row {
    display: flex;
    align-items: stretch;
}

.gk-price-stepper-row .kb-single-card__price-input {
    flex: 1;
    display: flex;
    align-items: stretch;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.gk-price-stepper-row .kb-single-card__fiyat {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    cursor: not-allowed;
}

.gk-price-stepper-row .kb-single-card__currency {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #f8f9fb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    border-left: 1.5px solid #e5e7eb;
    white-space: nowrap;
}

.gk-price-stepper-row .kb-single-card__stepper-row {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.gk-select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    background: #f9fafb;
    appearance: auto;
    cursor: pointer;
}

.gk-select:focus {
    border-color: #2c8c6e;
    outline: none;
}

.gk-fiyat-display {
    flex: 1;
    border: none;
    padding: 13px 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    background: #f9fafb;
    min-width: 0;
}

.gk-fiyat-display:focus {
    outline: none;
}

.gk-fiyat-editable {
    background: #fff !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 10px;
    cursor: text;
}

/* ===== KONFIGURATÖR KOMPAKT KART (Tümü tab'ı) ===== */

.kb-compact-card .tb-card__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kb-compact-card .tb-card__form select.fnp_select {
    height: 44px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #f9fafb;
    color: #1a1a2e;
    width: 100%;
    appearance: auto;
    cursor: pointer;
}

.kb-compact-card .tb-card__form select.fnp_select:focus {
    border-color: #2c8c6e;
    outline: none;
}

.kb-compact-card .tb-card__form select.fnp_select:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.kb-compact-card .tb-card__img {
    display: block;
    cursor: default;
}

.kb-compact-card .tb-card__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gk-fiyat-editable:focus {
    border-color: #2c8c6e !important;
}

.gk-toplam-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff8f0;
    border: 1px solid #ffe0b2;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 8px;
    font-size: 13px;
}

.gk-birim-bilgi {
    color: #6b7280;
}

.gk-toplam-tutar {
    font-weight: 700;
    color: #FF8B00;
    font-size: 14px;
}

/* Bağış Kartı Buton Satırı (BAĞIŞ YAP + DETAY) */
.tb-card__btn-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tb-card__btn-row .tb-card__btn {
    flex: 1;
    margin-top: 0;
}

.tb-card__btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    background: #fff;
    border: 2px solid #FF8B00;
    border-radius: 10px;
    color: #FF8B00;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.tb-card__btn-detail:hover {
    background: #FF8B00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 139, 0, 0.3);
}

.tb-card__btn-detail i {
    font-size: 13px;
}

.tb-card__btn-row .kb-single-card__btn {
    flex: 1;
    margin-top: 0;
}
