/* GIVO Public Styles */

/* Dashboard Container */
.givo-dashboard,
.givo-programs-archive {
    width: 100%;
    margin: 30px 0;
    padding: 0;
}

.givo-dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.givo-dashboard-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.givo-dashboard-header p {
    margin: 0;
    opacity: 0.9;
}

/* Sidebar Navigation */
.givo-dashboard-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.givo-sidebar {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
    flex: 1 0 250px;
}

.givo-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.givo-sidebar-nav li {
    margin-bottom: 5px;
}

.givo-sidebar-nav a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.givo-sidebar-nav a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.givo-sidebar-nav a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

/* Main Content */
.givo-main-content {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-height: 500px;
    flex: 1;
    min-width: 300px;
}

/* Stats Cards */
.givo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.givo-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.givo-stat-card.green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.givo-stat-card.orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.givo-stat-card.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.givo-stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.givo-stat-value {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

/* Program Grid/Scroll Layouts */
.givo-programs-grid {
    display: grid;
    grid-template-columns: repeat(var(--givo-cols, 2), 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .givo-programs-grid {
        grid-template-columns: repeat(var(--givo-cols-tablet, 2), 1fr);
    }
}

@media (max-width: 767px) {
    .givo-programs-grid {
        grid-template-columns: repeat(var(--givo-cols-mobile, 1), 1fr);
    }
}

@media (max-width: 767px) {
    .givo-programs-grid {
        grid-template-columns: repeat(var(--givo-cols-mobile, 1), 1fr);
    }
}

/* Programs Archive Specifics */
.givo-archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.givo-archive-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.givo-archive-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.givo-archive-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.givo-archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.givo-archive-card-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 50px;
}

.givo-programs-slider {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 50px !important;
    overflow: hidden !important;
    position: relative;
}

.givo-programs-slider .swiper-wrapper {
    padding: 10px 0px;
    display: flex;
}

.givo-programs-slider .swiper-slide {
    height: auto;
    display: flex;
}

.givo-programs-slider .givo-program-card {
    width: 100%;
    margin-bottom: 10px;
}

.givo-programs-slider .swiper-pagination {
    bottom: 0 !important;
}

.givo-programs-slider .swiper-button-next,
.givo-programs-slider .swiper-button-prev {
    color: #667eea;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.givo-programs-slider .swiper-button-next:after,
.givo-programs-slider .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.givo-programs-slider .swiper-button-next {
    right: -10px;
}

.givo-programs-slider .swiper-button-prev {
    left: -10px;
}

@media (max-width: 1100px) {
    .givo-programs-slider {
        overflow: hidden !important;
    }

    .givo-programs-slider .swiper-button-next,
    .givo-programs-slider .swiper-button-prev {
        display: none;
    }
}

.givo-program-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.givo-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.givo-program-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f8f9fa;
    border-bottom: 1px solid #f9f9f9;
}

.givo-program-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.givo-program-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.givo-program-content>.givo-btn {
    margin-top: 10px;
}

.givo-program-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #2d3436;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.givo-program-progress {
    margin: 15px 0;
}

.givo-progress-bar {
    background: #eee;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.givo-progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    transition: width 0.3s;
}

.givo-program-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* Table Styles */
.givo-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.givo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.givo-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.givo-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.givo-table tr:hover {
    background: #f8f9fa;
}

/* Buttons */
.givo-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.givo-btn-block {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 15px;
}

.givo-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.givo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.givo-btn-outline-primary {
    background: #fff !important;
    border: 1px solid #11cdef !important;
    color: #11cdef !important;
}

.givo-btn-outline-primary:hover {
    background: #11cdef !important;
    color: #fff !important;
}

.givo-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.givo-btn-success {
    background: #28a745;
    color: #fff;
}

.givo-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* Form Styles */
.givo-form-group {
    margin-bottom: 20px;
}

.givo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.givo-form-group input[type="text"],
.givo-form-group input[type="number"],
.givo-form-group input[type="email"],
.givo-form-group select,
.givo-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.givo-form-group input:focus,
.givo-form-group select:focus,
.givo-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Become Creator Page */
.givo-become-creator-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.givo-become-creator-title {
    margin-top: 0;
    margin-bottom: 30px;
}

.givo-become-creator-desc {
    color: #666;
    margin-bottom: 30px;
}

.givo-form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.givo-docs-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px dashed #ddd;
}

.givo-docs-section h4 {
    margin-top: 0;
    margin-bottom: 20px;
}

.givo-submit-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .givo-form-grid-2col {
        grid-template-columns: 1fr !important;
    }
}

/* Breakdown Detail Box */
.givo-breakdown-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none !important;
    color: inherit !important;
}

.givo-breakdown-box:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fcfdff;
}

.givo-breakdown-box .breakdown-icon-wrapper {
    width: 42px;
    height: 42px;
    background: #f8f9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #667eea;
    font-size: 20px;
}

.givo-breakdown-box .breakdown-label {
    flex: 1;
    font-weight: 700;
    font-size: 15px;
    color: #444;
}

.givo-breakdown-box .breakdown-arrow {
    color: #ccc;
    font-size: 18px;
}

/* Modal General */
.givo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.givo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.givo-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: givoModalUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes givoModalUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.givo-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.givo-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.givo-close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.givo-modal-body {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
}

/* Breakdown Detail Styles */
.givo-breakdown-summary {
    background: #f8fbff;
    border-radius: 12px;
    padding: 20px;
}

.givo-breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.givo-breakdown-row.total {
    font-weight: 700;
    color: #333;
}

.givo-breakdown-row.fee {
    color: #f5365c;
}

.givo-breakdown-row.net {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 0;
}

.givo-breakdown-details {
    padding-left: 15px;
    margin-bottom: 15px;
    border-left: 2px solid #e9ecef;
}

.givo-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #8898aa;
    margin-bottom: 8px;
}

.givo-breakdown-notice {
    margin-top: 25px;
    background: #fff9e6;
    padding: 15px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.6;
    color: #856404;
}

.givo-breakdown-notice p {
    margin-bottom: 8px;
}

.givo-breakdown-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: #adb5bd;
}

.givo-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}

.givo-toggle-icon {
    transition: transform 0.3s;
    display: inline-block;
}

.givo-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Premium Transparency Modal (Kitabisa Style) */
.givo-transparency-card {
    background: #f0faff;
    border: 1px solid #cceeff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.givo-transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.givo-transparency-item {
    display: flex;
    flex-direction: column;
}

.givo-transparency-label {
    font-size: 13px;
    color: #444;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.givo-transparency-label i {
    color: #11cdef;
}

.givo-transparency-value {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.givo-transparency-updated {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #8898aa;
}

.givo-transparency-updated i {
    font-size: 20px;
}

.givo-transparency-subtitle {
    font-size: 16px;
    font-weight: 800;
    margin: 25px 0 15px 0;
    color: #333;
}

.givo-transparency-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
}

.givo-transparency-row.bold {
    font-weight: 800;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 15px;
}

.givo-transparency-rincian {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.givo-transparency-rincian li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.givo-transparency-rincian li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ccc;
}

.givo-transparency-line {
    height: 2px;
    background: #11cdef;
    width: 100px;
    display: block;
    margin-left: auto;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Withdrawal History Items (Kitabisa Style) */
.givo-wd-item {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.givo-wd-item:last-child {
    border-bottom: none;
}

.givo-wd-item-time {
    font-size: 13px;
    color: #8898aa;
    margin-bottom: 15px;
    font-weight: 500;
}

.givo-wd-item-creator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.givo-wd-item-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.givo-wd-item-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eefbff;
    color: #11cdef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #cceeff;
}

.givo-wd-item-creator span {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.givo-wd-item-title {
    font-size: 19px;
    font-weight: 800;
    color: #333;
    margin: 0 0 15px 0 !important;
    line-height: 1.3;
}

.givo-wd-item-bank {
    font-size: 14px;
    color: #8898aa;
    margin-bottom: 18px;
    line-height: 1.5;
    background: #f8f9fe;
    padding: 10px 15px;
    border-radius: 8px;
}

.givo-wd-item-purpose {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.givo-wd-item-purpose strong {
    color: #333;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

/* Status Badges */
.givo-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.givo-badge-success {
    background: #28a745;
    color: #fff;
}

.givo-badge-warning {
    background: #ffc107;
    color: #333;
}

.givo-badge-danger {
    background: #dc3545;
    color: #fff;
}

.givo-badge-info {
    background: #17a2b8;
    color: #fff;
}

/* Single Program Page */
.givo-single-program {
    width: 100%;
    margin: 20px 0;
    padding: 0;
}

.givo-single-program-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.givo-single-program-title {
    text-align: center;
    font-weight: 700;
    margin: 20px;
    line-height: 1.2;
}

.givo-single-program-hero {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.givo-single-program-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.givo-single-program-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    width: 100%;
}

.givo-single-program-left {
    flex: 8;
    min-width: 380px;
}

.givo-single-program-right {
    flex: 1;
    flex-basis: 300px;
    position: sticky;
    top: 40px;
    height: fit-content;
    min-width: 280px;
}

/* Single Program Components */
.givo-creator-ribbon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
}

.givo-creator-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.givo-creator-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.givo-creator-info-label {
    font-size: 14px;
    color: #666;
}

.givo-creator-name {
    font-weight: bold;
}

.givo-creator-name a {
    text-decoration: none;
    color: #333;
}

.givo-creator-stats {
    font-size: small;
    font-style: italic;
}

.givo-creator-verify {
    color: #007bff;
}

.givo-tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    gap: 30px;
}

.givo-tabs-nav a {
    padding: 15px 0;
    color: #666;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.givo-tabs-nav a.active {
    color: #667eea;
    border-bottom: 3px solid #667eea;
}

.givo-donor-list {
    display: grid;
    gap: 20px;
}

.givo-donor-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
}

.givo-donor-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
}

.givo-donor-name {
    font-weight: bold;
}

.givo-donor-amount {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin: 4px 0;
}

.givo-donor-message {
    font-style: italic;
    color: #666;
    font-size: 15px;
}

.givo-donor-time {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.givo-sidebar-stats-primary {
    font-size: 24px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.givo-sidebar-stats-secondary {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.givo-sidebar-donation-footer {
    margin-top: 30px;
    padding: 15px;
    border: 1px dashed #ddd;
    border-radius: 15px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.givo-status-box {
    background: #f1f1f1;
    color: #999;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
}

/* Mobile Specific Styles */
@media (max-width: 991px) {

    .givo-single-program-left,
    .givo-single-program-right {
        width: 100% !important;
        flex: 1 0 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .givo-single-program-right {
        position: static;
    }
}

/* Swiper Slider Specifics */
.givo-single-program-slider {
    width: 100%;
    aspect-ratio: 5 / 3;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.givo-single-program-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.givo-single-program-slider .swiper-pagination-bullet-active {
    background: #667eea;
}

.givo-single-program-slider .swiper-button-next,
.givo-single-program-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.givo-single-program-slider .swiper-button-next:after,
.givo-single-program-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Kitabisa-style Single Program Mobile Footer */
.givo-single-program-mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    align-items: center;
    gap: 12px;
}

.givo-single-program-mobile-footer .givo-share-btn {
    flex: 0 0 50px !important;
    height: 50px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    min-width: 50px !important;
}

.givo-single-program-mobile-footer .givo-btn-primary {
    flex: 1 !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {

    .givo-sidebar,
    .givo-main-content {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .givo-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .givo-stats-grid {
        grid-template-columns: 1fr;
    }

    .givo-programs-grid {
        grid-template-columns: 1fr;
    }

    .givo-single-program-mobile-footer {
        display: flex;
    }

    body.has-mobile-footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 600px) {
    .givo-single-program-mobile-footer .givo-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }
}

/* Empty State */
.givo-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.givo-empty-state-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.givo-empty-state h3 {
    color: #666;
    margin-bottom: 10px;
}

/* --- Creator Profile --- */
.givo-cp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.givo-cp-cover {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: -80px;
    position: relative;
    background: #f1f1f1;
}

.givo-cp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.givo-cp-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    height: 150px;
}

.givo-cp-header {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.givo-cp-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.givo-cp-avatar-wrapper {
    flex-shrink: 0;
}

.givo-cp-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.givo-cp-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.givo-cp-info {
    flex: 1;
}

.givo-cp-name {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: 700;
}

.givo-cp-slug {
    color: #666;
    margin: 0 0 20px 0;
}

.givo-cp-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.givo-cp-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.givo-cp-stat-item .stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.givo-cp-stat-item .stat-label {
    font-size: 14px;
    color: #666;
}

.givo-cp-section {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.givo-cp-section-title {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

/* Auth / Login bar */
.givo-cp-auth-bar {
    margin-bottom: 20px;
    text-align: right;
}

.givo-cp-login-container {
    max-width: 400px;
    margin: 0 0 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .givo-cp-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .givo-cp-avatar,
    .givo-cp-avatar-placeholder {
        width: 120px;
        height: 120px;
        font-size: 40px;
    }

    .givo-cp-stats {
        justify-content: center;
        gap: 20px;
    }

    .givo-cp-cover {
        height: 200px;
    }

    .givo-cp-container {
        padding: 20px 15px;
    }

    .givo-cp-header,
    .givo-cp-section {
        padding: 25px;
    }

    .givo-cp-login-container {
        margin: 0 auto 30px;
    }
}

/* Read More Functionality (Story) */
.givo-story-wrapper {
    position: relative;
    transition: max-height 0.3s ease;
}

.givo-content-collapsed {
    max-height: 200px;
    /* Adjust height as needed */
    overflow: hidden;
}

.givo-content-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.givo-read-more-trigger {
    display: block;
    margin-top: 15px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
}

.givo-read-more-trigger:hover {
    text-decoration: underline;
    color: #5e72e4;
}

/* Donation Form Styles */
.givo-donation-process {
    width: 600px;
    margin: 50px auto;
    padding: 0 20px;
}

.givo-donation-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.givo-donation-header {
    text-align: center;
    margin-bottom: 30px;
}

.givo-donation-label {
    font-size: 14px;
    color: #667eea;
    font-weight: bold;
    text-transform: uppercase;
}

.givo-donation-title {
    margin: 10px 0;
    font-size: 24px;
}

.givo-step-title {
    margin-bottom: 20px;
}

.givo-amount-presets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.givo-amount-btn {
    color: #667eea;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
}

.givo-amount-btn.active {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.givo-custom-amount-wrapper {
    position: relative;
}

.givo-currency-symbol {
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: bold;
    color: #333;
}

.givo-custom-amount-input {
    padding-left: 45px !important;
}

.givo-input-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.givo-identity-notice {
    display: none;
    padding: 15px;
    border: 1px solid #2dce89;
    border-radius: 12px;
    background: #e7faf1;
    margin-bottom: 15px;
}

.givo-register-notice {
    display: none;
    padding: 15px;
    border: 1px dashed #667eea;
    border-radius: 12px;
    background: #f8f9ff;
    margin-bottom: 15px;
}

.givo-payment-group-label {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-top: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    margin-bottom: 10px;
}

.payment-label:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.payment-icon-box {
    width: 40px;
    height: 40px;
    background: #f8f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

.payment-method-img {
    height: 30px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}

.payment-info {
    flex: 1;
}

.payment-name {
    display: block;
    font-size: 15px;
    font-weight: bold;
}

.payment-desc {
    font-size: 12px;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .givo-donation-process {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 15px;
    }

    .givo-donation-card {
        padding: 25px;
    }
}

/* Donation Result Styles */
.givo-donation-result {
    max-width: 600px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.givo-result-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.givo-status-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.givo-status-icon.success {
    color: #2dce89;
}

.givo-status-icon.pending {
    color: #fb6340;
}

.givo-status-icon.failed {
    color: #f5365c;
}

.givo-result-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.givo-result-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.givo-ref-box {
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.givo-ref-box.success {
    background: #f0fdf4;
    border: 1px dashed #22c55e;
}

.givo-ref-box.pending {
    background: #fff9e6;
    border: 1px dashed #ffc107;
}

.givo-ref-box.info {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}

.givo-ref-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.givo-ref-value {
    font-size: 18px;
    font-weight: bold;
}

.givo-ref-box.success .givo-ref-label {
    color: #166534;
}

.givo-ref-box.success .givo-ref-value {
    color: #15803d;
}

.givo-ref-box.pending .givo-ref-label {
    color: #666;
}

.givo-ref-box.pending .givo-ref-value {
    color: #ffc107;
}

.givo-ref-box.info .givo-ref-label {
    color: #4338ca;
}

.givo-ref-box.info .givo-ref-value {
    color: #3730a3;
}

/* Manual Payment Instructions */
.givo-manual-box {
    background: #fff9e6;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid #fee2e2;
    text-align: left;
}

.givo-manual-header {
    font-weight: bold;
    color: #92400e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.givo-manual-header.center {
    justify-content: center;
}

.givo-manual-content {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    color: #444;
    border: 1px solid #fde68a;
    white-space: pre-line;
}

.givo-manual-note {
    font-size: 13px;
    color: #b45309;
    margin-top: 10px;
}

.givo-wa-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    background: #25d366 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.givo-wa-btn:hover {
    background: #1da851 !important;
}

.givo-action-grid {
    display: grid;
    gap: 15px;
}

.givo-action-btn {
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    display: block;
}

/* Category & Tag Pills */
.givo-taxonomy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.givo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.givo-pill i {
    font-size: 12px;
}

.givo-pill-category {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.givo-pill-category:hover {
    background: #0369a1;
    color: #fff;
    border-color: #0369a1;
}

.givo-pill-tag {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.givo-pill-tag:hover {
    background: #b45309;
    color: #fff;
    border-color: #b45309;
}

@media (max-width: 768px) {
    .givo-taxonomy-pills {
        margin-bottom: 15px;
    }

    .givo-pill {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Kabar Terbaru (News) Section */
.givo-news-list {
    margin-top: 20px;
}

.givo-news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.givo-news-item:hover {
    border-color: #5e72e4;
    box-shadow: 0 4px 12px rgba(94, 114, 228, 0.1);
    transform: translateY(-2px);
}

.givo-news-item-content {
    flex: 1;
}

.givo-news-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #32325d;
}

.givo-news-date {
    font-size: 13px;
    color: #8898aa;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Full Screen News Modal */
.givo-news-modal {
    position: fixed;
    /* Pindahkan titik pojok kiri atas modal ke tengah layar */
    top: 50%;
    left: 50%;

    /* Geser balik modal sejauh setengah lebarnya agar pas di tengah */
    transform: translate(-50%, -50%);

    width: 500px;
    /* Jangan pakai 100vh kalau mau di tengah, kecuali mau full screen */
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: none;
    /* Ubah jadi 'flex' lewat JS saat mau nampilin */
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 600px) {
    .givo-news-modal {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}


.givo-news-modal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.givo-news-modal-back {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
    color: #32325d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.givo-news-modal-back:hover {
    background: #e9ecef;
}

.givo-news-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #32325d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.givo-news-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 20px;
    -webkit-overflow-scrolling: touch;
}

.givo-news-modal-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.givo-news-modal-featured {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 16px;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.givo-news-modal-content {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.givo-news-modal-content p {
    margin-bottom: 25px;
}

.givo-news-modal-footer {
    padding: 25px 20px;
    border-top: 1px solid #edf2f7;
    background: #ffffff;
    text-align: center;
}

.givo-news-share-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.givo-news-share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #718096;
    font-size: 12px;
    font-weight: 600;
    width: 70px;
}

.givo-news-share-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.givo-news-share-item:hover .givo-news-share-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.givo-bg-wa {
    background: #25D366;
}

.givo-bg-fb {
    background: #1877F2;
}

.givo-bg-tw {
    background: #1DA1F2;
}

.givo-bg-link {
    background: #8898aa;
}