/* ==================================================
   Transparent Preview
================================================== */

.transparent-preview-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #515151;
    background-image:
        linear-gradient(45deg, #989898 25%, transparent 25%),
        linear-gradient(-45deg, #989898 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #989898 75%),
        linear-gradient(-45deg, transparent 75%, #989898 75%);
    background-size: 32px 32px;
    background-position:
        0 0,
        0 16px,
        16px -16px,
        -16px 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.transparent-preview-wrapper img {
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

.transparent-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(6px);
}

/* ==================================================
   Gear Shop Card
================================================== */

.gear-shop-card {
    overflow: hidden;
    border-radius: 18px;
    transition: 0.25s ease;
}

.gear-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12) !important;
}

.gear-product-image-wrap {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gear-product-image-wrap .carousel {
    width: 100%;
}

.gear-product-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: 0.25s ease;
}

.gear-shop-card:hover .gear-product-img {
    transform: scale(1.04);
}

.gear-product-title {
    min-height: 48px;
}

.gear-product-desc {
    min-height: 42px;
}

.gear-mini-spec small {
    font-size: 11px;
}

.gear-product-item .badge {
    font-weight: 600;
}

/* ==================================================
   Gear Ranking Badge
================================================== */

.gear-rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 30;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.rank-one {
    background: linear-gradient(135deg, #ffe680, #ffc400);
    color: #111;
}

.rank-two {
    background: linear-gradient(135deg, #eeeeee, #bdbdbd);
    color: #111;
}

.rank-three {
    background: linear-gradient(135deg, #d89b55, #a86625);
    color: #fff;
}

.recommend {
    background: #111;
    color: #ffd700;
}

/* ==================================================
   Gear Product Carousel
================================================== */

.gear-carousel-control {
    width: 34px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    background: transparent !important;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    z-index: 40;
    transition: 0.2s ease;
}

.gear-carousel-control.carousel-control-prev {
    left: 4px;
}

.gear-carousel-control.carousel-control-next {
    right: 4px;
}

.gear-carousel-control .carousel-control-prev-icon,
.gear-carousel-control .carousel-control-next-icon {
    width: auto;
    height: auto;
    background-image: none !important;
    background-size: 0 !important;
    opacity: 1 !important;
    filter: none !important;
}

.gear-carousel-control .carousel-control-prev-icon::before {
    content: "‹";
    display: block;
    color: #444444;
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.18);
}

.gear-carousel-control .carousel-control-next-icon::before {
    content: "›";
    display: block;
    color: #444444;
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.18);
}

.gear-carousel-control:hover {
    background: transparent !important;
    transform: translateY(-50%) scale(1.12);
}

.gear-carousel-control:hover .carousel-control-prev-icon::before,
.gear-carousel-control:hover .carousel-control-next-icon::before {
    color: #000;
}

/* ==================================================
   Gear Detail Modal
================================================== */

.gear-modal-img {
    max-height: 440px;
    object-fit: contain;
}

.modal-thumb {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
}

.modal-thumb:hover {
    border-color: #111;
    transform: translateY(-2px);
}

/* ==================================================
   Score Bar
================================================== */

.gear-score-progress {
    height: 8px;
    border-radius: 999px;
    background: #edf0f4;
}

.gear-score-progress .progress-bar {
    border-radius: 999px;
}

/* ==================================================
   Mobile Filter
================================================== */

#mobileGearFilter {
    height: 82vh;
    border-radius: 22px 22px 0 0;
}

#mobileGearFilter .offcanvas-body {
    overflow-y: auto;
}

/* ==================================================
   Mobile Optimize
================================================== */

@media (max-width: 576px) {
    .gear-product-image-wrap {
        min-height: 220px;
    }

    .gear-product-img {
        height: 190px;
    }

    .gear-carousel-control {
        width: 28px;
        height: 40px;
    }

    .gear-carousel-control.carousel-control-prev {
        left: 2px;
    }

    .gear-carousel-control.carousel-control-next {
        right: 2px;
    }

    .gear-carousel-control .carousel-control-prev-icon::before,
    .gear-carousel-control .carousel-control-next-icon::before {
        font-size: 38px;
    }

    .gear-rank-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .navbar-nav .dropdown-menu.dropdown-menu-xl {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ==================================================
   Gear Detail Modal - Fixed Layout
================================================== */
#shareModal .modal-dialog {
    margin-top: 100px;
    margin-bottom: 40px;

}

#gearDetailModal .gear-detail-dialog {
    max-width: 1140px;
    margin-top: 80px;
    margin-bottom: 40px;
}

#gearDetailModal .gear-detail-content {
    max-height: calc(100vh - 48px);
    border-radius: 22px;
}

#gearDetailModal .gear-detail-body {
    max-height: calc(100vh - 48px);
    overflow: hidden;
}

#gearDetailModal .gear-detail-left {
    min-height: 620px;
    max-height: calc(100vh - 48px);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#gearDetailModal .gear-detail-right {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 48px;
}

#gearDetailModal .gear-modal-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

#gearDetailModal .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 6px;
    background: #fff;
    cursor: pointer;
}

#gearDetailModal .gear-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
}

#gearDetailModal .gear-detail-right::-webkit-scrollbar {
    width: 6px;
}

#gearDetailModal .gear-detail-right::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 999px;
}

@media (max-width: 991px) {
    #gearDetailModal .gear-detail-dialog {
        max-width: 100%;
        margin: 12px;
    }

    #gearDetailModal .gear-detail-content {
        max-height: calc(100vh - 24px);
    }

    #gearDetailModal .gear-detail-body {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    #gearDetailModal .gear-detail-left {
        min-height: auto;
        max-height: none;
        padding: 32px 24px 20px;
    }

    #gearDetailModal .gear-detail-right {
        max-height: none;
        overflow: visible;
        padding: 24px;
    }

    #gearDetailModal .gear-modal-img {
        max-height: 260px;
    }
}

/* ==================================================
   Accessory Detail Modal
   ไม่กระทบ gearDetailModal เดิม
================================================== */

#gearAccessoryDetailModal .accessory-detail-dialog {
    max-width: 1140px;
    margin-top: 90px;
    margin-bottom: 40px;
}

#gearAccessoryDetailModal .accessory-detail-content {
    max-height: calc(100vh - 130px);
    border-radius: 22px;
    overflow: hidden;
}

#gearAccessoryDetailModal .accessory-detail-body {
    max-height: calc(100vh - 130px);
    overflow: hidden;
}

#gearAccessoryDetailModal .accessory-detail-left {
    min-height: 560px;
    max-height: calc(100vh - 130px);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#gearAccessoryDetailModal .accessory-detail-right {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 48px;
}

#gearAccessoryDetailModal .accessory-modal-img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

#gearAccessoryDetailModal .modal-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 6px;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

#gearAccessoryDetailModal .modal-thumb:hover {
    border-color: #111;
    transform: translateY(-2px);
}

#gearAccessoryDetailModal .accessory-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
}

#gearAccessoryDetailModal .accessory-detail-right::-webkit-scrollbar {
    width: 6px;
}

#gearAccessoryDetailModal .accessory-detail-right::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 999px;
}

.accessory-spec-card {
    min-height: 72px;
}

@media (max-width: 991px) {
    #gearAccessoryDetailModal .accessory-detail-dialog {
        max-width: 100%;
        margin: 12px;
    }

    #gearAccessoryDetailModal .accessory-detail-content {
        max-height: calc(100vh - 24px);
        border-radius: 18px;
    }

    #gearAccessoryDetailModal .accessory-detail-body {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    #gearAccessoryDetailModal .accessory-detail-left {
        min-height: auto;
        max-height: none;
        padding: 32px 24px 20px;
    }

    #gearAccessoryDetailModal .accessory-detail-right {
        max-height: none;
        overflow: visible;
        padding: 24px;
    }

    #gearAccessoryDetailModal .accessory-modal-img {
        max-height: 260px;
    }
}

/* ==================================================
   Shoe Finder
================================================== */

.finder-section {
    padding-bottom: 100px !important;
}

/* ไม่ใช้ sticky แล้ว */
.finder-left-column,
.finder-form-card {
    position: static !important;
}

.finder-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .07);
}

.finder-result-count {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}

.finder-result-count span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
}

.finder-result-card {
    border-radius: 20px;
    overflow: hidden;
    transition: .25s ease;
}

.finder-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12) !important;
}

.finder-result-image-wrap {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.finder-result-img {
    position: relative;
    z-index: 1;
    height: 205px;
    object-fit: contain;
}

.finder-result-card:hover .finder-result-img {
    transform: none;
}

.finder-rank-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 30;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .3px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .16);
}

.finder-rank-pill.rank-one {
    background: linear-gradient(135deg, #ffe680, #ffc400);
    color: #111;
}

.finder-rank-pill.rank-two {
    background: linear-gradient(135deg, #eeeeee, #bdbdbd);
    color: #111;
}

.finder-rank-pill.rank-three {
    background: linear-gradient(135deg, #d89b55, #a86625);
    color: #fff;
}

.finder-rank-pill.recommend {
    background: #111;
    color: #ffd700;
}

.finder-match-percent {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 30;

    min-width: 120px;
    height: 36px;

    padding: 0 14px;

    border-radius: 999px;

    background: #111;
    color: #fff;

    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;

    box-shadow: 0 10px 25px rgba(81, 81, 81, 0.18);

    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.finder-match-percent small {
    margin-top: 0;

    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.finder-thumbs {
    position: relative;
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.finder-thumb {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 6px;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.finder-thumb:hover,
.finder-thumb.active {
    border-color: #111;
    transform: translateY(-2px);
}

.finder-shoe-title {
    min-height: 48px;
}

.finder-shoe-desc {
    min-height: 60px;
}

.finder-reason-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.finder-reason-check {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.finder-action-area .btn {
    min-width: 0;
}

.finder-filter-card {
    border-radius: 20px;
}

.finder-filter-card .form-select,
.finder-filter-card .form-control {
    min-height: 44px;
}

@media (max-width: 991px) {
    .finder-form-card {
        position: static !important;
    }

    .finder-section {
        padding-bottom: 80px !important;
    }

    .finder-result-header {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .finder-result-header {
        flex-direction: column;
    }

    .finder-result-count {
        width: 100%;
        height: auto;
        padding: 16px;
        border-radius: 16px;
        flex-direction: row;
        gap: 8px;
    }

    .finder-result-image-wrap {
        min-height: 240px;
    }

    .finder-result-img {
        height: 180px;
    }

    .finder-thumb {
        width: 44px;
        height: 44px;
    }

    .finder-match-percent {
        width: 120px;
        height: 30px;
        font-size: 13px;
    }

    .finder-rank-pill {
        font-size: 10px;
        padding: 7px 11px;
    }
}

.global-search-dialog {
    max-width: 720px;
}

.global-search-content {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.global-search-box {
    background: #fff;
}

.global-search-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #eef0f4;
}

.global-search-input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
}

.global-search-popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid #eef0f4;
}

.global-search-popular span {
    font-size: 13px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
}

.global-search-chip {
    border: 1px solid #dde2ea;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.global-search-chip:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.global-search-results {
    max-height: 520px;
    overflow-y: auto;
    padding: 10px;
}

.global-search-group-title {
    padding: 12px 12px 6px;
    font-size: 11px;
    font-weight: 800;
    color: #8a8f98;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.global-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    transition: .18s ease;
}

.global-search-item:hover,
.global-search-item.active {
    background: #f5f7fb;
}

.global-search-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f5f7fb;
    border: 1px solid #e9ecef;

    color: #2563eb;

    flex-shrink: 0;
}

.global-search-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
}

.global-search-subtitle {
    font-size: 13px;
    color: #6c757d;
}

.global-search-empty {
    padding: 30px;
    text-align: center;
    color: #6c757d;
}

#globalSearchModal .modal-dialog {
    margin-top: 80px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .global-search-dialog {
        margin: 12px;
    }

    .global-search-input {
        font-size: 16px;
    }

    .global-search-results {
        max-height: 70vh;
    }
}

.gear-client-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-top: 2px;
}

.gear-client-inline-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: .2s ease;
}

.gear-client-inline-btn:hover {
    color: #111;
    border-color: #111;
    background: #f8f9fb;
}

.gear-client-inline-btn.is-favorite {
    color: #e11d48;
    background: #fff1f4;
    border-color: #ffd0dc;
}

.gear-client-inline-btn.is-compare {
    color: #fff;
    background: #111;
    border-color: #111;
}

.min-w-0 {
    min-width: 0;
}

/* ==================================================
   My Gear Floating Bar / Drawer
================================================== */

.my-gear-floating-bar {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
}

.my-gear-pill {
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px 10px 10px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    transition: .2s ease;
}

.my-gear-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.my-gear-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .14);

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.my-gear-text {
    font-weight: 800;
    font-size: 14px;
}

.my-gear-count {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;

    background: #fff;
    color: #111;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 900;
}

.my-gear-drawer {
    width: 420px;
}

.my-gear-tabs {
    display: flex;
    border-bottom: 1px solid #eef0f4;
}

.my-gear-tab {
    flex: 1;
    border: 0;
    background: #fff;
    color: #6b7280;

    padding: 14px 16px;

    font-weight: 800;
    font-size: 14px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    transition: .2s ease;
}

.my-gear-tab span {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;

    background: #f1f3f5;
    color: #111;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    font-size: 11px;
    font-weight: 900;
}

.my-gear-tab.active {
    color: #111;
    background: #f8f9fb;
}

.my-gear-tab.active span {
    background: #111;
    color: #fff;
}

.my-gear-panel {
    display: none;
}

.my-gear-panel.active {
    display: block;
}

.my-gear-list {
    padding: 12px;
}

.my-gear-item {
    display: flex;
    gap: 12px;

    padding: 12px;
    border: 1px solid #eef0f4;
    border-radius: 16px;

    background: #fff;
    margin-bottom: 10px;
}

.my-gear-item-img {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    background: #f6f7f9;

    object-fit: contain;
    flex-shrink: 0;
}

.my-gear-item-body {
    flex: 1;
    min-width: 0;
}

.my-gear-item-brand {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.my-gear-item-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    margin-bottom: 4px;
}

.my-gear-item-meta {
    font-size: 12px;
    color: #6b7280;
}

.my-gear-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.my-gear-mini-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111;

    border-radius: 999px;
    padding: 4px 9px;

    font-size: 12px;
    font-weight: 700;

    transition: .2s ease;
}

.my-gear-mini-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.my-gear-empty {
    padding: 36px 24px;
    text-align: center;
    color: #6b7280;
}

.my-gear-empty h6 {
    color: #111;
    font-weight: 800;
    margin-bottom: 6px;
}

@media (max-width: 576px) {
    .my-gear-floating-bar {
        right: 12px;
        bottom: 12px;
    }

    .my-gear-text {
        display: none;
    }

    .my-gear-drawer {
        width: 100%;
    }
}

.compare-gear-card {
    border-radius: 18px;
}

.compare-gear-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #f6f7f9;
    border-radius: 14px;
    padding: 12px;
}

.compare-score-row {
    margin-bottom: 12px;
}

.compare-score-progress {
    height: 8px;
    border-radius: 999px;
    background: #eef0f4;
}

.compare-score-progress .progress-bar {
    border-radius: 999px;
}

.compare-gear-title {
    min-height: 42px;
}

.fs-12 {
    font-size: 12px;
}

/* ==================================================
   Support Donation Proof
================================================== */

.donation-proof-list {
    display: grid;
    gap: 16px;
}

.donation-proof-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;

    padding: 20px;

    border: 1px solid #eef0f4;
    border-radius: 16px;

    background: #fff;
}

@media (max-width: 576px) {
    .donation-proof-item {
        flex-direction: column;
    }

    .donation-proof-item .btn {
        width: 100%;
    }
}

/* ==================================================
   Donation Proof Report
================================================== */

.donation-proof-report-card {
    transition: .2s ease;
}

.donation-proof-report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08) !important;
}

.bg-view-gear {
    background: linear-gradient(135deg, #000000, #4c4c4c);
}

.tool-action-mobile {
    display: none;
}

@media (max-width: 991.98px) {
    .tool-action-desktop {
        display: none;
    }

    .tool-action-mobile {
        display: block;
    }
}