.donations-store {
    padding: 85px 0 100px;
    background: #f7faf9;
    direction: rtl;
}

.donations-store-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.donations-store-eyebrow {
    display: inline-block;
    color: #0e7c74;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.donations-store-heading h1 {
    color: #073b3a;
    font-size: 40px;
    font-weight: 900;
    margin: 0;
}

.donations-store-line {
    width: 65px;
    height: 4px;
    background: #14a394;
    border-radius: 10px;
    margin: 16px auto;
}

.donations-store-heading p {
    color: #718583;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.donation-product-card {
    background: #fff;
    border: 1px solid #e1ece9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(7, 59, 58, .07);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.donation-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(7, 59, 58, .13);
}

.donation-product-image {
    height: 235px;
    position: relative;
    overflow: hidden;
    background: #e9f3f1;
}

.donation-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.donation-product-card:hover .donation-product-image img {
    transform: scale(1.06);
}

.donation-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-image-placeholder i {
    color: #0e7c74;
    font-size: 65px;
}

.donation-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: #0e7c74;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
}

.donation-featured i {
    margin-left: 4px;
}

.donation-product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.donation-short-name {
    display: inline-flex;
    align-self: flex-start;
    background: #e8f5f2;
    color: #0e7c74;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
}

.donation-product-body h2 {
    color: #073b3a;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 900;
    margin: 0 0 10px;
}

.donation-slogan {
    color: #0e7c74;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 12px;
}

.donation-slogan i {
    font-size: 13px;
    margin-left: 4px;
}

.donation-description {
    color: #718583;
    font-size: 13px;
    line-height: 1.9;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.donation-progress-area {
    background: #f6faf9;
    border: 1px solid #e4eeec;
    border-radius: 13px;
    padding: 13px;
    margin-bottom: 18px;
}

.donation-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
}

.donation-progress-info span {
    color: #718583;
    font-size: 12px;
    font-weight: 600;
}

.donation-progress-info strong {
    color: #073b3a;
    font-size: 14px;
    font-weight: 900;
}

.donation-progress {
    width: 100%;
    height: 6px;
    background: #dfeae8;
    border-radius: 10px;
    overflow: hidden;
}

.donation-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #14a394, #0e7c74);
    border-radius: inherit;
}

.donation-amount-area {
    margin-bottom: 17px;
}

.donation-amount-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.donation-amount-title span {
    color: #073b3a;
    font-size: 13px;
    font-weight: 800;
}

.donation-amount-title small {
    color: #9aa9a7;
    font-size: 11px;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.donation-amount {
    height: 42px;
    border: 1px solid #d9e7e4;
    background: #fff;
    color: #073b3a;
    border-radius: 9px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
}

.donation-amount:hover,
.donation-amount.active {
    background: #073b3a;
    border-color: #073b3a;
    color: #fff;
    transform: translateY(-2px);
}

.donation-custom-area {
    margin-bottom: 18px;
}

.donation-custom-area label {
    display: block;
    color: #718583;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.donation-custom-input {
    display: flex;
    align-items: center;
    height: 43px;
    border: 1px solid #d9e7e4;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    transition: .2s ease;
}

.donation-custom-input:focus-within {
    border-color: #0e7c74;
    box-shadow: 0 0 0 3px rgba(14, 124, 116, .08);
}

.donation-custom-input input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: #073b3a;
    font-family: inherit;
    font-size: 13px;
    background: transparent;
}

.donation-custom-input span {
    color: #718583;
    font-size: 11px;
    font-weight: 800;
    padding: 0 12px;
    border-right: 1px solid #e4eeec;
    height: 23px;
    display: flex;
    align-items: center;
}

.donation-card-footer {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 9px;
    margin-top: auto;
}

.donation-details-btn,
.donation-card-btn {
    min-height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
}

.donation-details-btn {
    border: 1px solid #d8e6e3;
    color: #073b3a;
    background: #fff;
}

.donation-details-btn:hover {
    background: #eef6f4;
    color: #073b3a;
    border-color: #c6dbd7;
}

.donation-details-btn i {
    transition: transform .25s ease;
}

.donation-details-btn:hover i {
    transform: translateX(-3px);
}

.donation-card-btn {
    background: #073b3a;
    color: #fff;
}

.donation-card-btn:hover {
    background: #0e7c74;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 124, 116, .2);
}

.donations-empty-state {
    max-width: 650px;
    margin: auto;
    background: #fff;
    border: 1px solid #e2ecea;
    border-radius: 22px;
    padding: 65px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 59, 58, .06);
}

.donations-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e7f4f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donations-empty-icon i {
    color: #0e7c74;
    font-size: 35px;
}

.donations-empty-state h3 {
    color: #073b3a;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.donations-empty-state p {
    color: #718583;
    font-size: 14px;
    margin: 0;
}

.donation-amount{
    position:relative;
    transition:all .25s ease;
    cursor:pointer;
}

.donation-amount:hover{
    transform:translateY(-3px);
    border-color:#34b69e;
    background:#f0f9f7;
}

.donation-amount.selected{
    background:#005260;
    border-color:#005260;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,82,96,.18);
}

.donation-amount.selected::after{
    content:"✓";
    position:absolute;
        top: -9px;
    left: -6px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#34b69e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:800;
}

.donation-custom-input input{
    transition:all .25s ease;
}

.donation-custom-input input:focus,
.donation-custom-input input.selected{
    border-color:#34b69e;
    box-shadow:0 0 0 3px rgba(52,182,158,.12);
}

.donation-card-btn{
    transition:all .25s ease;
}

.donation-card-btn.ready{
    background:#34b69e;
    border-color:#34b69e;
    color:#fff;
    box-shadow:0 7px 18px rgba(52,182,158,.2);
}

.donation-card-btn.ready:hover{
    background:#279d88;
    border-color:#279d88;
    transform:translateY(-2px);
}

@media (max-width: 1100px) {
    .donations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .donations-store {
        padding: 60px 0 70px;
    }

    .donations-store-heading {
        margin-bottom: 35px;
    }

    .donations-store-heading h1 {
        font-size: 31px;
    }

    .donations-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: auto;
    }

    .donation-product-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .donation-product-body {
        padding: 20px;
    }

    .donation-product-body h2 {
        font-size: 20px;
    }

    .donation-amounts {
        gap: 6px;
    }

    .donation-amount {
        height: 40px;
        font-size: 11px;
    }

    .donation-card-footer {
        grid-template-columns: 1fr;
    }
}