.home .woocommerce ul.products li.product .desc {
padding: 0 0 0 0 !important;
padding-bottom:0!important
}
.mfn-woo-product-title {
    display: none!important;
}
.mfn-li-product-row.mfn-li-product-row-button.hide-button {margin-bottom: 0px !important;}
.wcd-card{
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:16px;
    background:#fff;
    box-shadow:0 10px 25px rgba(15,23,42,.07);
    margin-top:12px;
    transition:transform .15s ease, box-shadow .15s ease;
}
.wcd-card[dir="rtl"] .wcd-input{
    text-align:center
}
.wcd-card:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(15,23,42,.12);
}
.wcd-row{
    display:flex;
    gap:8px;
    align-items:center;
    justify-content:space-between
}
.wcd-label{
    font-size:14px;
    color:#374151;
    margin:0 0 6px;
    font-weight: 500;
}
.wcd-badges{
    display:flex;
    gap:10px;
    overflow:auto;
    padding-bottom:2px;
    scrollbar-width:none;
}
.wcd-badges::-webkit-scrollbar{
    display:none;
}
.wcd-badge{
    border:1px solid #e2e8f0;
    color:#0f172a;
    background:#fff;
    border-radius:1.5rem;
    padding:14px 24px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    white-space:nowrap;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border .2s ease;
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.wcd-badge:hover{
    transform:translateY(-2px);
}
.wcd-badge:active{
    transform:scale(.96);
}
.wcd-badge[aria-pressed=\"true\"]{
    background:linear-gradient(120deg,#0f766e,#0ea5e9);
    color:#fff;
    border-color:transparent;
}
.wcd-badge.is-selected{
    background:linear-gradient(120deg,#0f766e,#0ea5e9);
    color:#fff;
    border-color:transparent;
}
.wcd-linked-amount.is-selected{
    background-color:#249e9d;
    color:#fff;
    border-color:#249e9d;
}
.wcd-linked-amount.is-selected span{
    color:inherit;
}
.wcd-amount-value{
    font-size:15px;
    font-weight:700;
}
.wcd-amount-currency{
    font-size:12px;
    color:#0a5a75;
}
.wcd-badge[aria-pressed="true"] .wcd-amount-currency{
    color:rgba(255,255,255,.85);
}
.wcd-input{
    width:100%;
    border:1px solid #e2e8f0;
    border-radius:16px;
    padding:14px 16px;
    font-size:18px;
    font-weight:700;
    direction:ltr;
    color:#0f172a;
    background:#f8fafc;
    transition:border .2s ease,background .2s ease,box-shadow .2s ease;
}
.wcd-input:focus{
    border-color:#0ea5e9;
    background:#fff;
    box-shadow:0 0 0 3px rgba(14,165,233,.15);
    outline:none;
}
.wcd-btns{
    display:flex;
    gap:8px;
    margin-top:10px
}
.wcd-btn,
.wcd-btn-single{
    flex:1;
    border-radius:16px;
    border:1px solid transparent;
    padding:14px 16px;
    font-weight:700;
    cursor:pointer;
    transition:transform .2s ease,box-shadow .2s ease;
    box-shadow:0 12px 25px rgba(15,23,42,.15);
}
.wcd-primary{
    background:linear-gradient(120deg,#0d9488,#0f766e);
    color:#fff;
}
.wcd-secondary{
    background:#fff;
    color:#0f172a;
    border:1px solid #e2e8f0;
}
.wcd-pdp-shell{
    position:relative;
    overflow:hidden;
}
.wcd-pdp-shell::before,
.wcd-pdp-shell::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:999px;
    filter:blur(70px);
    opacity:.5;
    /* background:linear-gradient(145deg,#c7d2fe,#a5f3fc); */
    animation:floatBlob 8s ease-in-out infinite alternate;
}
.wcd-pdp-shell::after{
    right:-80px;
    bottom:-60px;
    animation-delay:1.5s;
}
.wcd-pdp-shell::before{
    left:-60px;
    top:-40px;
}
@keyframes floatBlob{
    from{transform:translateY(0)}
    to{transform:translateY(25px)}
}
.wcd-pdp-grid{
    position:relative;
    max-width:820px;
    margin:0 auto;
}
.glass-panel{
    /* background:rgba(255,255,255,.8);
    border:1px solid rgba(255,255,255,.6);
    border-radius:40px;
    box-shadow:0 30px 60px rgba(15,23,42,.12);
    backdrop-filter:blur(22px);
    padding:32px 28px; */
}
.wcd-hero-intro{
    margin-top:10px;
}
.wcd-hero-intro h2{
    font-family:"Cairo",sans-serif;
}
.wcd-hero-pill{
    font-family:"Cairo",sans-serif;
    letter-spacing:.05em;
    font-size:12px;
    animation:pulseGlow 2.8s ease-in-out infinite;
}
@keyframes pulseGlow{
    0%,100%{box-shadow:0 0 0 0 rgba(248,113,113,.45)}
    50%{box-shadow:0 0 0 8px rgba(248,113,113,0)}
}
.wcd-hero-desc{
    max-width:520px;
    margin:0 auto;
    color:#4b5563;
}
.wcd-progress-header{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}
.shimmer-track{
    background:#e5e7eb;
}
.shimmer-track::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.6) 50%,rgba(255,255,255,0) 100%);
    animation:shimmer 2s linear infinite;
}
@keyframes shimmer{
    0%{transform:translateX(-100%)}
    100%{transform:translateX(100%)}
}
.gradient-progress{
    background:linear-gradient(120deg,#0d9488,#0ea5e9 60%,#38bdf8);
}
.wcd-amount-grid{
    display:flex;
}
.wcd-custom-amount-wrapper{
    width:100%;
}
.wcd-custom-amount-shell{
    position:relative;
    width:100%;
}
.wcd-input-prefix{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:18px;
    color:#14b8a6;
    font-weight:700;
    pointer-events:none;
}
.wcd-custom-amount-input{
    background:#fff;
    border:1px solid rgba(20,184,166,.6);
    color:#0f172a;
    box-shadow:0 8px 16px rgba(20,184,166,.15);
    width: 100% !important;
}
.wcd-custom-amount-input::placeholder{
    color:#94a3b8;
}
.wcd-custom-amount-input:focus{
    border-color:#14b8a6;
    box-shadow:0 0 0 3px rgba(20,184,166,.25);
    background:#fff;
}
.wcd-hero-intro h2{
    font-family:"Cairo",sans-serif;
}
.wcd-hero-pill{
    font-family:"Cairo",sans-serif;
}
.wcd-hero-desc{
    max-width:520px;
    margin:0 auto;
}
.wcd-story-media{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    min-height:320px;
    background-size:cover;
    background-position:center;
    margin-bottom:18px;
}
.wcd-story-media-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.5),rgba(0,0,0,.1));
}
.wcd-story-media-inner{
    position:relative;
    color:#fff;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    height:100%;
    justify-content:flex-end;
}
.wcd-story-badges{
    display:flex;
    gap:8px;
    flex-wrap:wrap
}
.wcd-story-badge{
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    display:inline-flex;
    align-items:center
}
.wcd-story-badge.badge-primary{
    background:rgba(16,185,129,.9);
    color:#fff
}
.wcd-story-badge.badge-secure{
    background:rgba(255,255,255,.9);
    color:#0f172a
}
.wcd-story-status{
    font-size:13px;
    color:#bef264;
    margin:0
}
.wcd-story-title{
    margin:0;
    font-size:28px
}
.wcd-story-text{
    font-size:14px;
    color:rgba(255,255,255,.92)
}
.wcd-story-trust{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:12px;
}
.wcd-story-trust>div{
    display:flex;
    gap:10px;
    align-items:center;
    padding:10px 12px;
    border-radius:14px;
    background:#f9fafb;
    border:1px solid rgba(148,163,184,.3);
}
.wcd-story-trust span{
    font-size:20px;
}
.wcd-donation-single{
    flex:1;
}
.wcd-glass-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:18px;
}
.wcd-progress-wrapper{
    position:relative;
    width:100%;
    margin-bottom:10px;
}
.wcd-progress-header{
    display:flex;
    flex-direction:column;
    gap:10px;
    background:#f8fafc;
    border:1px solid rgba(148,163,184,.25);
    border-radius:20px;
    padding:18px;
}
.wcd-progress-meta{
    display:flex;
    justify-content:space-between;
    font-size:12px;
    color:#94a3b8;
}
.wcd-progress-meta strong{
    font-size:14px;
}
.wcd-progress-meta strong{
    color:#0f172a;
}
.wcd-progress-track{
    position:relative;
    height:16px;
    border-radius:999px;
    overflow:hidden;
}
.wcd-progress-track-bg{
    width:100%;
    height:100%;
    background: linear-gradient(120deg, #0f766e, #0ea5e9);
    border-radius:999px;
}
.wcd-progress-track-bar{
    height:100%;
    border-radius:999px;
    transition:width .3s ease;
}
.gradient-progress{
    background:linear-gradient(90deg,#0ea5e9,#10b981,#6366f1);
}
.wcd-progress-track-label{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}
.wcd-progress-wrapper.has-countdown{
    padding-top:48px;
}
.wcd-progress-wrapper.has-countdown .wcd-countdown{
    position:absolute;
    top:0;
    left:50%;
    transform:translate(-50%,-60%);
    margin-top:0;
    width:auto;
    min-width:220px;
    justify-content:center;
    width: 100%;
}
.wcd-progress{
    position:relative;
    height:14px;
    background:#f8fafc;
    border-radius:999px;
    overflow:hidden;
    border:1px solid rgba(42,39,233,.16);
    width:100%;
    box-shadow:inset 0 1px 2px rgba(15,23,42,.08);
}
.wcd-progress-bar{
    height:100%;
    background:linear-gradient(90deg,#1f6feb,#7c3aed);
    width:0;
    transition:width .3s ease;
    position:relative;
}
.wcd-progress-bar::after{
    content:attr(data-progress);
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:11px;
    font-weight:700;
    color:#fff;
    display: none !important;
}
.wcd-progress-kpi{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    color:#374151;
    margin-top:6px;
    text-transform:none;
    width:100%;
}
.wcd-progress-kpi .wcd-progress-total,
.wcd-progress-kpi .wcd-progress-goal{
    font-weight:700;
    font-size:11px;
    color:#2a27e9;
}
.wcd-progress-kpi .wcd-progress-total{
    margin-right:0;
    text-align:right;
}
.wcd-progress-kpi .wcd-progress-goal{
    margin-left:0;
    text-align:left;
}
.wcd-countdown{
    font-size:14px;
    color:#b45309;
    font-weight:700;
    display:flex;
    justify-content:center;
    gap:6px;
    align-items:center
}
.wcd-countdown .wcd-countdown-timer{
    background:#fff7ed;
    color:#b45309;
}
.wcd-progress-shell{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
}
.wcd-progress-shell .wcd-countdown{
    margin:0;
    gap:4px;
    justify-content:flex-start;
}
.wcd-progress-shell .wcd-countdown-timer{
    padding:6px 10px;
    background:linear-gradient(120deg,#f97316,#fb923c);
    color:#fff;
    box-shadow:0 8px 18px rgba(249,115,22,.25);
}
.wcd-progress-shell .wcd-countdown-label{
    color:#b45309;
    font-weight:700;
    font-size:12px;
}
.wcd-progress-countdown{
    margin-top:4px;
    font-size:12px;
    color:#94a3b8;
}
.wcd-badge-done{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#ecfdf5;
    color:#065f46;
    border:1px solid #10b981;
    border-radius:999px;
    padding:4px 8px;
    font-weight:700;
    font-size:14px;
    margin-top:8px
}
.wcd-disabled{
    opacity:.5;
    pointer-events:none
}
.wcd-addons-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
    width:100%;
}
.wcd-amount-picker, .custom-amount-field, .wcd-addons-grid {
    background:rgba(255,255,255,.9);
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:20px;
    width:100%;
}
.wcd-impact-card{
    display: flex;
    gap: 12px;
    align-items: center;
    background: linear-gradient(135deg, #fffbea, #ffedd5);
    border: 1px solid #fcd34d;
    border-radius: 24px;
    padding: 10px 18px;
    position: relative;
    overflow: hidden;
    animation:fadeSlide .45s ease;
    width:100%;
}
.donor-phone-field{
    width:100%;
}
.wcd-impact-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:999px;
    background:rgba(255,255,255,.4);
    filter:blur(25px);
    top:-40px;
    right:-40px;
}
.wcd-impact-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fde68a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    animation:bounce 2s infinite;
    box-shadow:0 8px 20px rgba(245,158,11,.4);
}
@keyframes bounce{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-4px)}
}
@keyframes fadeSlide{
    0%{opacity:0;transform:translateY(10px)}
    100%{opacity:1;transform:translateY(0)}
}
.wcd-impact-copy{
    margin:0;
    font-size:14px;
    color:#92400e;
    line-height:1.6;
}
.wcd-impact-copy .wcd-impact-amount{
    font-weight:700;
    color:#92400e;
}
.wcd-addon-info{
    display:flex;
    align-items:center;
    gap:12px;
}
.wcd-addon-item{
    margin-top: 0px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 16px;
    align-content: space-between;
    flex-direction: row;
    transition:border .2s ease,background .2s ease,box-shadow .2s ease;
}
.wcd-addon-item.is-selected{
    border-color:#0d9488;
    background:#ecfdf5;
}
.wcd-addon-icon{
    border-radius:18px;
    background:#eef2ff;
    color:#4338ca;
    font-size:13px;
}
.wcd-addon-item .addon-price {
    font-weight: 600;
}
.wcd-addon-controls{
    display:flex;
    align-items:center;
    gap:6px
}
.wcd-addon-controls button{
    padding: 10px 20px;
    border-radius:8px;
    border:1px solid #d1d5db;
    background:#fff;
    cursor:pointer;
    margin-left: 0;
}
.wcd-addon-controls input{
    width: 60px;
    height: 42px;
    text-align:center;
    border-radius:8px;
    border:1px solid #d1d5db;
    margin-bottom: 0
}
.wcd-single-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.wcd-single-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    width:100%;
}
.wcd-single-actions .wcd-btn-single{
    border-radius:16px;
    padding:14px;
    font-size:16px;
    font-weight:700;
    border:none;
    box-shadow:0 10px 25px rgba(15,23,42,.15);
}
.wcd-btn-single.wcd-primary{
    background:linear-gradient(120deg,#10b981,#0ea5e9);
    color:#fff;
}
.wcd-btn-single.wcd-secondary{
    background:#fff;
    border:1px solid rgba(148,163,184,.35);
    color:#0f172a;
}
.wcd-single-actions .wcd-btn-single{
    flex:1;
    min-width:180px
}
.wcd-inactive-message{
    padding:20px;
    border:1px dashed rgba(148,163,184,.6);
    border-radius:18px;
    text-align:center;
    font-weight:600;
    color:#475569;
    background:#f8fafc;
}
.wcd-phone-wrapper{
    display:flex;
    gap:12px;
    flex-wrap:wrap
}
.wcd-sticky-bar{
    position:sticky;
    bottom:0;
    margin-top:24px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-radius:24px;
    border:1px solid rgba(148,163,184,.2);
    padding:14px 18px;
    box-shadow:0 -8px 30px rgba(15,23,42,.1);
    display:none;
}
@media(max-width:768px){
    .wcd-sticky-bar{
        display:block;
    }
    .wcd-single-actions{
        display:none;
    }
}
.wcd-sticky-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.wcd-sticky-cta{
    border:none;
    border-radius:1.5rem;
    padding:14px 22px;
    background:linear-gradient(120deg,#0d9488,#0f766e);
    color:#fff;
    font-weight:700;
    box-shadow:0 15px 30px rgba(13,148,136,.4);
    display:flex;
    gap:12px;
    align-items:center;
    cursor:pointer;
}
.wcd-sticky-badge{
    background:rgba(255,255,255,.25);
    border-radius:999px;
    padding:4px 10px;
    font-size:12px;
}
.wcd-phone-wrapper input {
    flex:1
}
.wcd-phone-wrapper select{
    max-width: 120px;
    direction: ltr;
}
.woocommerce form.cart .wcd-single-actions .button,
.woocommerce form.cart .wcd-single-actions .wcd-btn-single{
    width:auto
}
.mfn-li-product-row.mfn-li-product-row-button.hide-button{
    display:block!important
}
.mfn-li-product-row.mfn-li-product-row-button.hide-button a.mfn-wish-button{
    display:none
}
.wishlist-active.wishlist-button ul.products li.product:not(.align-right) .mfn-li-product-row-button,
.wishlist-active.wishlist-button ul.products li.product:not(.align-right) .mfn-li-product-row-button{
    margin-right:0;
    margin-left:0
}
.mcb-section .mcb-wrap .mcb-item-gtzefq03 .woocommerce ul.products li.product{
    padding-left:0;
    padding-right:0;
    padding-bottom:0!important;
    padding-top: 13px!important;
}
.woocommerce .column_product_cart_button .cart {
    display: flex;
    margin-bottom: 0 !important;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-top: 0px;
}
input#custom_amount {
    text-align: center;
}
.mcb-section .mcb-wrap-dsy6s3rvd > .mcb-wrap-inner-dsy6s3rvd {
        margin-left: 0%;
}
.product-type-donation .desc span.price {
    display: none !important;
}