
:root{
    --ares-green:#1f9d70;
    --ares-green-dark:#137b57;
    --ares-green-soft:#edf9f4;
    --ares-green-soft-2:#f6fbf8;
    --ares-ink:#17211d;
    --ares-muted:#7d8782;
    --ares-line:#e3ebe7;
    --ares-card:#ffffff;
    --ares-danger:#ef5050;
}

.ares-facts-widget,
.ares-facts-archive,
.ares-fact-single-page{
    font-family:inherit;
    color:var(--ares-ink);
    box-sizing:border-box;
}
.ares-facts-widget *,
.ares-facts-archive *,
.ares-fact-single-page *{
    box-sizing:border-box;
}

/* ==========================================================================
   Compact widget - for beside main slider
   ========================================================================== */

.ares-facts-widget{
    width:100%;
    min-height:100%;
    padding:22px;
    background:
        radial-gradient(circle at 90% 5%, rgba(31,157,112,.08), transparent 34%),
        linear-gradient(180deg,#fbfdfc 0%,#f7faf8 100%);
    border:1px solid #dfe8e3;
    border-radius:28px;
    box-shadow:0 12px 36px rgba(21,48,36,.045);
    direction:rtl;
}

.ares-facts-head{
    margin-bottom:18px;
}

.ares-facts-head-badge,
.ares-section-kicker{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--ares-green-dark);
    font-size:12px;
    font-weight:800;
    line-height:1.6;
}

.ares-facts-head-line,
.ares-kicker-line{
    width:26px;
    height:3px;
    border-radius:99px;
    background:var(--ares-green);
    display:inline-block;
}

.ares-facts-heading-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:10px;
}

.ares-facts-heading-row h3{
    margin:0;
    color:var(--ares-ink);
    font-size:25px;
    line-height:1.35;
    font-weight:900;
    letter-spacing:-.3px;
}

.ares-facts-heading-row p{
    margin:5px 0 0;
    color:var(--ares-muted);
    font-size:12px;
    line-height:1.8;
}

.ares-facts-main-icon{
    width:54px;
    height:54px;
    flex:0 0 54px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--ares-green);
    background:#fff;
    border:1px solid var(--ares-line);
    box-shadow:0 8px 20px rgba(31,157,112,.08);
    font-size:22px;
}

.ares-facts-list{
    display:grid;
    gap:10px;
}

.ares-fact-item{
    margin:0;
    border:1px solid var(--ares-line);
    border-radius:18px;
    background:#fff;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ares-fact-item:hover{
    transform:translateY(-2px);
    border-color:#cfe5da;
    box-shadow:0 10px 26px rgba(28,72,51,.07);
}

.ares-fact-link{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:90px;
    padding:14px;
    text-decoration:none !important;
    color:inherit !important;
}

.ares-fact-item-icon{
    width:46px;
    height:46px;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:15px;
    background:var(--ares-green-soft);
    border:1px solid #d3ebdf;
    color:var(--ares-green-dark);
    font-size:18px;
}

.ares-fact-icon-img{
    width:25px;
    height:25px;
    object-fit:contain;
}

.ares-fact-copy{
    flex:1;
    min-width:0;
}

.ares-fact-title{
    display:block;
    margin-bottom:3px;
    color:var(--ares-ink);
    font-size:13.5px;
    line-height:1.65;
    font-weight:850;
}

.ares-fact-excerpt{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    color:var(--ares-muted);
    font-size:11.5px;
    line-height:1.8;
}

.ares-fact-arrow{
    width:34px;
    height:34px;
    flex:0 0 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    border:1px solid var(--ares-line);
    color:var(--ares-green);
    background:#fff;
    font-size:11px;
    transition:.2s ease;
}

.ares-fact-item:hover .ares-fact-arrow{
    background:var(--ares-green);
    color:#fff;
    border-color:var(--ares-green);
}

.ares-facts-footer{
    margin-top:16px;
    padding-top:15px;
    border-top:1px solid var(--ares-line);
}

.ares-facts-footer a{
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:7px 8px 7px 7px;
    border-radius:15px;
    color:var(--ares-ink) !important;
    text-decoration:none !important;
    font-size:12.5px;
    font-weight:800;
}

.ares-facts-footer-arrow{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:var(--ares-green);
    color:#fff;
}

/* ==========================================================================
   Archive
   ========================================================================== */

body.post-type-archive-ares_fact .content_wrapper,
body.single-ares_fact .content_wrapper{
    width:100% !important;
    max-width:none !important;
}

.ares-facts-archive{
    width:min(1480px, calc(100% - 36px));
    margin:28px auto 60px;
}

.ares-facts-archive-hero{
    min-height:245px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:46px 54px;
    border:1px solid #dfe8e3;
    border-radius:34px;
    background:
        radial-gradient(circle at 10% 10%, rgba(31,157,112,.10), transparent 33%),
        linear-gradient(115deg,#f4faf7 0%,#fbfcfb 58%,#f7faf8 100%);
    overflow:hidden;
}

.ares-facts-archive-intro h1{
    margin:12px 0 8px;
    color:var(--ares-ink);
    font-size:clamp(32px,4vw,54px);
    line-height:1.25;
    font-weight:950;
    letter-spacing:-1.1px;
}

.ares-facts-archive-intro p{
    max-width:760px;
    margin:0;
    color:var(--ares-muted);
    font-size:15px;
    line-height:2;
}

.ares-archive-hero-icon{
    width:118px;
    height:118px;
    flex:0 0 118px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:34px;
    color:var(--ares-green);
    background:#fff;
    border:1px solid var(--ares-line);
    box-shadow:0 18px 45px rgba(31,157,112,.09);
    font-size:47px;
    transform:rotate(-5deg);
}

.ares-facts-search{
    max-width:720px;
    min-height:60px;
    display:flex;
    align-items:center;
    gap:12px;
    margin:28px auto 30px;
    padding:7px 9px 7px 7px;
    background:#fff;
    border:1px solid var(--ares-line);
    border-radius:19px;
    box-shadow:0 10px 28px rgba(35,61,49,.045);
}

.ares-facts-search > i{
    margin-right:7px;
    color:#9ca8a2;
}

.ares-facts-search input{
    flex:1;
    min-width:0;
    height:44px;
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    background:transparent !important;
    color:var(--ares-ink);
    font-family:inherit;
    font-size:13px;
}

.ares-facts-search button{
    height:44px;
    min-width:95px;
    border:0;
    border-radius:13px;
    background:var(--ares-green);
    color:#fff;
    font-family:inherit;
    font-size:12.5px;
    font-weight:800;
    cursor:pointer;
}

.ares-facts-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.ares-fact-card{
    min-width:0;
    border:1px solid var(--ares-line);
    border-radius:27px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 11px 34px rgba(31,58,45,.045);
    transition:transform .22s ease, box-shadow .22s ease;
}

.ares-fact-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 42px rgba(31,58,45,.09);
}

.ares-fact-card-media{
    position:relative;
    display:block;
    margin:12px 12px 0;
    height:235px;
    overflow:hidden;
    border-radius:20px;
    background:#f4f7f5;
    text-decoration:none !important;
}

.ares-fact-card-media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .35s ease;
}

.ares-fact-card:hover .ares-fact-card-media img{
    transform:scale(1.035);
}

.ares-fact-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--ares-green);
    background:
        radial-gradient(circle at 50% 40%,rgba(31,157,112,.09),transparent 40%),
        #f5faf7;
    font-size:54px;
}

.ares-fact-card-badge{
    position:absolute;
    top:14px;
    right:14px;
    min-height:36px;
    display:flex;
    align-items:center;
    gap:7px;
    padding:6px 11px;
    border:1px solid #cbe8da;
    border-radius:12px;
    background:rgba(241,252,247,.94);
    color:var(--ares-green-dark);
    backdrop-filter:blur(8px);
    font-size:10.5px;
    font-weight:850;
}

.ares-fact-card-badge img{
    width:16px;
    height:16px;
}

.ares-fact-card-body{
    padding:18px 18px 17px;
}

.ares-fact-card-title{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    min-height:52px;
    color:var(--ares-ink) !important;
    text-decoration:none !important;
    font-size:17px;
    line-height:1.55;
    font-weight:900;
}

.ares-fact-card-body > p{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    overflow:hidden;
    min-height:70px;
    margin:10px 0 16px;
    color:var(--ares-muted);
    font-size:12.5px;
    line-height:1.9;
}

.ares-fact-card-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:14px;
    border-top:1px solid #edf1ef;
}

.ares-fact-card-date{
    display:flex;
    align-items:center;
    gap:7px;
    color:#9aa39e;
    font-size:10.5px;
}

.ares-fact-card-more{
    width:39px;
    height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--ares-green);
    color:#fff !important;
    text-decoration:none !important;
    font-size:11px;
}

.ares-facts-pagination{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:34px;
}

.ares-facts-pagination .page-numbers{
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border:1px solid var(--ares-line);
    border-radius:12px;
    background:#fff;
    color:var(--ares-ink) !important;
    text-decoration:none !important;
    font-size:12px;
    font-weight:800;
}

.ares-facts-pagination .current{
    border-color:var(--ares-green);
    background:var(--ares-green);
    color:#fff !important;
}

.ares-facts-empty{
    min-height:320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid var(--ares-line);
    border-radius:26px;
    background:#fff;
    color:var(--ares-muted);
    text-align:center;
}

.ares-facts-empty > i{
    margin-bottom:5px;
    color:var(--ares-green);
    font-size:34px;
}

.ares-facts-empty strong{
    color:var(--ares-ink);
    font-size:18px;
}

/* ==========================================================================
   Single
   ========================================================================== */

.ares-fact-single-page{
    width:min(1320px, calc(100% - 36px));
    margin:28px auto 60px;
}

.ares-fact-single-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
    color:var(--ares-green-dark) !important;
    text-decoration:none !important;
    font-size:12px;
    font-weight:800;
}

.ares-fact-single-hero{
    display:grid;
    grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);
    gap:28px;
    padding:30px;
    border:1px solid var(--ares-line);
    border-radius:32px;
    background:
        radial-gradient(circle at 7% 5%,rgba(31,157,112,.10),transparent 34%),
        #f8fbf9;
}

.ares-fact-single-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:18px;
}

.ares-fact-single-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:25px 0 14px;
    border:1px solid #cde6d9;
    border-radius:19px;
    background:#fff;
    color:var(--ares-green);
    box-shadow:0 12px 28px rgba(31,157,112,.09);
    font-size:25px;
}

.ares-fact-single-icon img{
    width:32px;
    height:32px;
    object-fit:contain;
}

.ares-fact-single-copy h1{
    margin:0;
    color:var(--ares-ink);
    font-size:clamp(31px,4vw,49px);
    line-height:1.35;
    font-weight:950;
    letter-spacing:-.8px;
}

.ares-fact-single-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:18px;
    color:var(--ares-muted);
    font-size:11px;
}

.ares-fact-single-meta span{
    display:flex;
    align-items:center;
    gap:7px;
}

.ares-fact-single-meta i{
    color:var(--ares-green);
}

.ares-fact-single-media{
    min-width:0;
    height:470px;
    overflow:hidden;
    border-radius:24px;
    background:#eef4f1;
}

.ares-fact-single-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.ares-fact-single-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--ares-green);
    background:
        radial-gradient(circle,rgba(31,157,112,.11),transparent 38%),
        #f2f8f5;
    font-size:90px;
}

.ares-fact-single-content-wrap{
    display:grid;
    grid-template-columns:310px minmax(0,1fr);
    gap:25px;
    margin-top:26px;
    align-items:start;
}

.ares-fact-note{
    position:sticky;
    top:24px;
    display:flex;
    gap:13px;
    padding:18px;
    border:1px solid #d8eae1;
    border-radius:21px;
    background:var(--ares-green-soft-2);
}

.ares-fact-note-icon{
    width:45px;
    height:45px;
    flex:0 0 45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#fff;
    color:var(--ares-green);
    border:1px solid #d7e9df;
}

.ares-fact-note-icon img{
    width:24px;
    height:24px;
    object-fit:contain;
}

.ares-fact-note strong{
    display:block;
    margin-bottom:4px;
    color:var(--ares-green-dark);
    font-size:12px;
}

.ares-fact-note div > span{
    display:block;
    color:#68746e;
    font-size:11.5px;
    line-height:1.9;
}

.ares-fact-single-content{
    min-width:0;
    padding:30px 34px;
    border:1px solid var(--ares-line);
    border-radius:25px;
    background:#fff;
    color:#3d4742;
    font-size:14px;
    line-height:2.15;
}

.ares-fact-single-content h2,
.ares-fact-single-content h3,
.ares-fact-single-content h4{
    color:var(--ares-ink);
    line-height:1.6;
}

.ares-fact-single-content h2{
    margin-top:30px;
    font-size:24px;
}

.ares-fact-single-content h3{
    margin-top:26px;
    font-size:19px;
}

.ares-fact-single-content a{
    color:var(--ares-green-dark);
}

.ares-fact-single-content img{
    max-width:100%;
    height:auto;
    border-radius:18px;
}

.ares-related-facts{
    margin-top:30px;
    padding:30px;
    border:1px solid var(--ares-line);
    border-radius:28px;
    background:#f8fbf9;
}

.ares-related-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
}

.ares-related-heading h2{
    margin:7px 0 0;
    color:var(--ares-ink);
    font-size:25px;
    font-weight:950;
}

.ares-related-heading > a{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--ares-green-dark) !important;
    text-decoration:none !important;
    font-size:12px;
    font-weight:800;
}

.ares-related-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.ares-related-card{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px;
    border:1px solid var(--ares-line);
    border-radius:17px;
    background:#fff;
    color:inherit !important;
    text-decoration:none !important;
}

.ares-related-icon,
.ares-related-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
}

.ares-related-icon{
    width:43px;
    height:43px;
    flex:0 0 43px;
    border-radius:13px;
    background:var(--ares-green-soft);
    color:var(--ares-green-dark);
}

.ares-related-icon img{
    width:24px;
    height:24px;
    object-fit:contain;
}

.ares-related-copy{
    min-width:0;
    flex:1;
}

.ares-related-copy strong{
    display:block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    color:var(--ares-ink);
    font-size:12.5px;
}

.ares-related-copy small{
    display:block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    margin-top:3px;
    color:var(--ares-muted);
    font-size:10.5px;
}

.ares-related-arrow{
    width:33px;
    height:33px;
    flex:0 0 33px;
    border-radius:10px;
    background:var(--ares-green);
    color:#fff;
    font-size:10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width:1200px){
    .ares-facts-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .ares-fact-single-hero{
        grid-template-columns:minmax(0,1fr) minmax(390px,1fr);
    }
}

@media (max-width:900px){
    .ares-facts-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ares-facts-archive-hero{
        padding:34px;
    }

    .ares-archive-hero-icon{
        width:95px;
        height:95px;
        flex-basis:95px;
        font-size:38px;
    }

    .ares-fact-single-hero{
        grid-template-columns:1fr;
    }

    .ares-fact-single-media{
        height:390px;
        grid-row:1;
    }

    .ares-fact-single-content-wrap{
        grid-template-columns:1fr;
    }

    .ares-fact-note{
        position:relative;
        top:auto;
    }

    .ares-related-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:600px){
    .ares-facts-widget{
        padding:16px;
        border-radius:22px;
    }

    .ares-facts-heading-row h3{
        font-size:21px;
    }

    .ares-fact-link{
        min-height:82px;
        padding:12px;
    }

    .ares-fact-item-icon{
        width:41px;
        height:41px;
        flex-basis:41px;
        border-radius:13px;
    }

    .ares-fact-arrow{
        width:31px;
        height:31px;
        flex-basis:31px;
    }

    .ares-facts-archive,
    .ares-fact-single-page{
        width:min(100% - 22px, 100%);
        margin-top:16px;
    }

    .ares-facts-archive-hero{
        min-height:auto;
        padding:26px 22px;
        border-radius:25px;
    }

    .ares-archive-hero-icon{
        display:none;
    }

    .ares-facts-archive-intro h1{
        font-size:32px;
    }

    .ares-facts-archive-intro p{
        font-size:12.5px;
    }

    .ares-facts-search{
        min-height:54px;
        margin:18px 0 22px;
        border-radius:16px;
    }

    .ares-facts-search button{
        min-width:75px;
    }

    .ares-facts-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .ares-fact-card-media{
        height:230px;
    }

    .ares-fact-single-hero{
        padding:15px;
        gap:14px;
        border-radius:25px;
    }

    .ares-fact-single-copy{
        padding:15px 8px 10px;
    }

    .ares-fact-single-media{
        height:280px;
        border-radius:19px;
    }

    .ares-fact-single-copy h1{
        font-size:31px;
    }

    .ares-fact-single-content{
        padding:22px 19px;
        border-radius:21px;
        font-size:13px;
    }

    .ares-related-facts{
        padding:20px 15px;
        border-radius:23px;
    }

    .ares-related-heading{
        align-items:flex-start;
        flex-direction:column;
    }
}

.ares-product-auto-facts .ares-fact-link.ares-fact-popup-trigger{
    width:100%;
    border:0;
    padding:14px;
    font:inherit;
    text-align:right;
    background:transparent;
    cursor:pointer;
    color:inherit;
}
html.ares-fact-popup-open,html.ares-fact-popup-open body{overflow:hidden}
.ares-fact-popup{position:fixed;inset:0;z-index:999999;display:none;align-items:center;justify-content:center;padding:22px}
.ares-fact-popup.is-open{display:flex}
.ares-fact-popup-backdrop{position:absolute;inset:0;background:rgba(10,17,13,.55);backdrop-filter:blur(5px)}
.ares-fact-popup-dialog{position:relative;z-index:2;width:min(760px,100%);max-height:min(86vh,820px);overflow:auto;border:1px solid #dfe8e3;border-radius:26px;background:#fff;box-shadow:0 28px 80px rgba(12,36,24,.22)}
.ares-fact-popup-close{position:absolute;top:14px;left:14px;z-index:3;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border:1px solid #e4ebe7;border-radius:12px;background:rgba(255,255,255,.94);color:#17211d;cursor:pointer}
.ares-fact-popup-media{height:280px;overflow:hidden;background:#f3f7f5}
.ares-fact-popup-media img{width:100%;height:100%;display:block;object-fit:cover}
.ares-fact-popup-body{padding:28px}
.ares-fact-popup-icon{width:54px;height:54px;display:flex;align-items:center;justify-content:center;border:1px solid #d3ebdf;border-radius:16px;background:#edf9f4;color:#137b57;font-size:20px}
.ares-fact-popup-icon img{width:28px;height:28px;object-fit:contain}
.ares-fact-popup-body h3{margin:14px 0 12px;color:#17211d;font-size:26px;line-height:1.5;font-weight:900}
.ares-fact-popup-content{color:#4b5751;font-size:14px;line-height:2.05}
.ares-fact-popup-content>*:first-child{margin-top:0}.ares-fact-popup-content>*:last-child{margin-bottom:0}
.ares-fact-popup-content h2,.ares-fact-popup-content h3,.ares-fact-popup-content h4{color:#17211d}
.ares-fact-popup-content ul,.ares-fact-popup-content ol{padding-right:22px}
.ares-fact-popup-content img{max-width:100%;height:auto;border-radius:15px}
.ares-fact-popup-content table{width:100%;border-collapse:collapse}
.ares-fact-popup-content th,.ares-fact-popup-content td{border:1px solid #e6ece9;padding:9px}
.ares-fact-popup-more{display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:#137b57!important;text-decoration:none!important;font-size:12px;font-weight:850}
@media(max-width:600px){.ares-fact-popup{padding:12px}.ares-fact-popup-dialog{border-radius:21px}.ares-fact-popup-media{height:210px}.ares-fact-popup-body{padding:22px 18px}.ares-fact-popup-body h3{font-size:21px}}


/* Automatic WooCommerce product facts */
.ares-product-auto-facts{
    clear:both;
    width:100%;
    margin:34px 0 18px;
}
.ares-product-auto-facts .ares-facts-widget{
    max-width:100%;
}


/* v3.1.1 - popup styles are isolated from the homepage/manual shortcode */
.ares-product-auto-facts button.ares-fact-link{
    -webkit-appearance:none;
    appearance:none;
    box-shadow:none;
    margin:0;
}
.ares-product-auto-facts button.ares-fact-link:hover,
.ares-product-auto-facts button.ares-fact-link:focus{
    background:transparent;
    color:inherit;
}


/* Related WooCommerce products on the single fact page */
.ares-fact-products{
    margin-top:30px;
    padding:30px;
    border:1px solid var(--ares-line);
    border-radius:28px;
    background:#fff;
}
.ares-fact-products-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    margin-top:20px;
}
.ares-fact-product-card{
    display:flex;
    min-width:0;
    overflow:hidden;
    border:1px solid var(--ares-line);
    border-radius:20px;
    background:#fbfdfc;
}
.ares-fact-product-image{
    width:145px;
    min-height:145px;
    flex:0 0 145px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px;
    background:#fff;
    text-decoration:none!important;
}
.ares-fact-product-image img{
    width:100%;
    height:100%;
    max-height:135px;
    object-fit:contain;
}
.ares-fact-product-placeholder{
    color:var(--ares-green);
    font-size:34px;
}
.ares-fact-product-copy{
    min-width:0;
    flex:1;
    padding:17px 16px;
}
.ares-fact-product-title{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    color:var(--ares-ink)!important;
    text-decoration:none!important;
    font-size:13px;
    line-height:1.75;
    font-weight:900;
}
.ares-fact-product-price{
    min-height:28px;
    margin:10px 0;
    color:var(--ares-green-dark);
    font-size:13px;
    font-weight:850;
}
.ares-fact-product-button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:8px 12px;
    border-radius:11px;
    background:var(--ares-green);
    color:#fff!important;
    text-decoration:none!important;
    font-size:11px;
    font-weight:850;
}
@media(max-width:1000px){
    .ares-fact-products-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:650px){
    .ares-fact-products{padding:20px 15px}
    .ares-fact-products-grid{grid-template-columns:1fr}
    .ares-fact-product-image{width:120px;flex-basis:120px}
}


/* ==========================================================================
   v4.1.2 — Product page facts only
   Completely isolated from Betheme / Elementor button hover styles.
   Does NOT affect homepage widget, archive, or single fact page.
   ========================================================================== */

.single-product .ares-product-facts-box{
    --apf-green:#1f9d70;
    --apf-green-dark:#137b57;
    --apf-green-soft:#edf9f4;
    --apf-ink:#17211d;
    --apf-muted:#7d8782;
    --apf-line:#e3ebe7;

    width:100%;
    clear:both;
    margin:22px 0 32px;
    padding:22px;

    direction:rtl;

    border:1px solid #dfe8e3;
    border-radius:28px;

    background:
        radial-gradient(circle at 90% 5%, rgba(31,157,112,.08), transparent 34%),
        linear-gradient(180deg,#fbfdfc 0%,#f7faf8 100%);

    box-shadow:0 12px 36px rgba(21,48,36,.045);
    color:var(--apf-ink);
}

/* Heading */
.single-product .ares-product-facts-heading{
    margin:0 0 18px;
}

.single-product .ares-product-facts-badge{
    width:max-content;
    min-height:36px;

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

    padding:6px 12px;

    border:1px solid #d3ebdf;
    border-radius:14px;

    background:var(--apf-green-soft) !important;
    color:var(--apf-green-dark) !important;

    font-size:12px;
    line-height:1.5;
    font-weight:800;
}

.single-product .ares-product-facts-badge,
.single-product .ares-product-facts-badge *,
.single-product .ares-product-facts-badge:hover,
.single-product .ares-product-facts-badge:hover *{
    color:var(--apf-green-dark) !important;
}

.single-product .ares-product-facts-heading h2{
    margin:12px 0 5px !important;
    color:var(--apf-ink) !important;
    font-size:25px;
    line-height:1.5;
    font-weight:900;
    letter-spacing:-.3px;
}

.single-product .ares-product-facts-heading p{
    margin:0 !important;
    color:var(--apf-muted) !important;
    font-size:12px;
    line-height:1.9;
}

/* Grid */
.single-product .ares-product-facts-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

/* Card */
.single-product .ares-product-fact-card{
    min-width:0;
    margin:0;

    overflow:hidden;

    border:1px solid var(--apf-line);
    border-radius:18px;

    background:#fff !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.single-product .ares-product-fact-card:hover{
    transform:translateY(-2px);
    border-color:#cfe5da;
    background:#fff !important;
    box-shadow:0 10px 26px rgba(28,72,51,.07);
}

/* HARD RESET FOR THE BUTTON
   This is intentionally more specific than theme button:hover rules. */
.single-product .ares-product-facts-box button.ares-product-fact-trigger,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:hover,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:focus,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:focus-visible,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:active{
    width:100%;
    min-height:90px;

    display:flex !important;
    align-items:center !important;
    gap:12px;

    margin:0 !important;
    padding:14px !important;

    border:0 !important;
    border-radius:0 !important;

    outline:0 !important;

    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;

    color:var(--apf-ink) !important;

    font:inherit !important;
    text-align:right !important;
    text-decoration:none !important;
    text-transform:none !important;

    box-shadow:none !important;
    text-shadow:none !important;

    cursor:pointer;

    transform:none !important;

    appearance:none;
    -webkit-appearance:none;
}

/* Some themes use pseudo-elements to create hover backgrounds */
.single-product .ares-product-facts-box button.ares-product-fact-trigger::before,
.single-product .ares-product-facts-box button.ares-product-fact-trigger::after,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:hover::before,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:hover::after{
    content:none !important;
    display:none !important;
    background:none !important;
}

/* Force every text node to keep its intended color on all interaction states */
.single-product .ares-product-facts-box button.ares-product-fact-trigger .ares-product-fact-copy,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:hover .ares-product-fact-copy,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:focus .ares-product-fact-copy,
.single-product .ares-product-facts-box button.ares-product-fact-trigger:active .ares-product-fact-copy{
    color:var(--apf-ink) !important;
}

/* Icon */
.single-product .ares-product-fact-icon{
    width:46px;
    height:46px;
    flex:0 0 46px;

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

    overflow:hidden;

    border:1px solid #d3ebdf;
    border-radius:15px;

    background:var(--apf-green-soft) !important;
    color:var(--apf-green-dark) !important;

    font-size:18px;
}

.single-product .ares-product-fact-icon i,
.single-product .ares-product-fact-trigger:hover .ares-product-fact-icon i,
.single-product .ares-product-fact-trigger:focus .ares-product-fact-icon i{
    color:var(--apf-green-dark) !important;
    opacity:1 !important;
}

.single-product .ares-product-fact-icon svg,
.single-product .ares-product-fact-icon svg path{
    fill:var(--apf-green-dark) !important;
    color:var(--apf-green-dark) !important;
}

.single-product .ares-product-fact-icon img{
    width:25px;
    height:25px;
    object-fit:contain;
    opacity:1 !important;
    filter:none !important;
}

/* Text */
.single-product .ares-product-fact-copy{
    min-width:0;
    flex:1;
}

.single-product .ares-product-fact-copy strong,
.single-product .ares-product-fact-trigger:hover .ares-product-fact-copy strong,
.single-product .ares-product-fact-trigger:focus .ares-product-fact-copy strong,
.single-product .ares-product-fact-trigger:active .ares-product-fact-copy strong{
    display:block;
    margin:0 0 3px !important;

    color:var(--apf-ink) !important;

    font-size:13.5px;
    line-height:1.65;
    font-weight:850;

    text-decoration:none !important;
    text-shadow:none !important;
}

.single-product .ares-product-fact-copy small,
.single-product .ares-product-fact-trigger:hover .ares-product-fact-copy small,
.single-product .ares-product-fact-trigger:focus .ares-product-fact-copy small,
.single-product .ares-product-fact-trigger:active .ares-product-fact-copy small{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    margin:0 !important;

    color:var(--apf-muted) !important;

    font-size:11.5px;
    line-height:1.8;
    font-weight:400;

    text-decoration:none !important;
    text-shadow:none !important;
}

/* Arrow: only this turns green on hover */
.single-product .ares-product-fact-arrow{
    width:34px;
    height:34px;
    flex:0 0 34px;

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

    border:1px solid var(--apf-line);
    border-radius:11px;

    background:#fff !important;
    color:var(--apf-green) !important;

    font-size:11px;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.single-product .ares-product-fact-arrow i,
.single-product .ares-product-fact-trigger:hover .ares-product-fact-arrow i,
.single-product .ares-product-fact-trigger:focus .ares-product-fact-arrow i{
    color:inherit !important;
}

.single-product .ares-product-fact-card:hover .ares-product-fact-arrow{
    background:var(--apf-green) !important;
    border-color:var(--apf-green) !important;
    color:#fff !important;
}

/* Keyboard focus without changing text/background */
.single-product .ares-product-facts-box button.ares-product-fact-trigger:focus-visible{
    box-shadow:inset 0 0 0 2px rgba(31,157,112,.18) !important;
}

/* Keep the popup close button protected from global theme button styles too */
.single-product .ares-fact-popup-close,
.single-product .ares-fact-popup-close:focus{
    background:#fff !important;
    border-color:#dfe8e3 !important;
    color:var(--apf-green-dark) !important;
}

.single-product .ares-fact-popup-close:hover{
    background:var(--apf-green) !important;
    border-color:var(--apf-green) !important;
    color:#fff !important;
}

.single-product .ares-fact-popup-close i{
    color:inherit !important;
}

/* Mobile */
@media(max-width:700px){
    .single-product .ares-product-facts-box{
        padding:16px;
        border-radius:22px;
    }

    .single-product .ares-product-facts-heading h2{
        font-size:21px;
    }

    .single-product .ares-product-facts-grid{
        grid-template-columns:1fr;
    }

    .single-product .ares-product-facts-box button.ares-product-fact-trigger,
    .single-product .ares-product-facts-box button.ares-product-fact-trigger:hover,
    .single-product .ares-product-facts-box button.ares-product-fact-trigger:focus{
        min-height:82px;
        padding:12px !important;
    }

    .single-product .ares-product-fact-icon{
        width:41px;
        height:41px;
        flex-basis:41px;
        border-radius:13px;
    }

    .single-product .ares-product-fact-arrow{
        width:31px;
        height:31px;
        flex-basis:31px;
    }
}
