.ash-page{
    width:min(1180px,100%);
    margin:0 auto;
    padding:34px 16px;
    font-family:Arial,Tahoma,sans-serif;
}

.ash-hero{
    text-align:center;
    background:
        radial-gradient(circle at 12% 20%,rgba(223,192,120,.22),transparent 34%),
        linear-gradient(135deg,#fffaf3,#fff);
    border:1px solid rgba(185,138,54,.20);
    border-radius:32px;
    padding:34px 18px;
    box-shadow:0 22px 70px rgba(75,51,34,.10);
    margin-bottom:18px;
}

.ash-hero span,
.ash-admin-kicker{
    display:inline-flex;
    padding:7px 13px;
    border-radius:999px;
    background:#fff4de;
    color:#8d611f;
    font-weight:900;
    margin-bottom:10px;
}

.ash-hero h1{
    margin:0;
    color:#3f2a1b;
    font-size:clamp(32px,5vw,56px);
    font-weight:900;
}

.ash-hero p{
    color:#756556;
    max-width:850px;
    margin:12px auto 0;
    line-height:1.9;
}

.ash-search{
    max-width:780px;
    margin:18px auto 0;
}

.ash-search input{
    width:100%;
    min-height:58px;
    border-radius:999px!important;
    border:1px solid rgba(185,138,54,.25)!important;
    background:#fff!important;
    padding:12px 20px;
    color:#3f2a1b;
    font-weight:900;
    font-family:Arial,Tahoma,sans-serif;
    box-shadow:0 16px 45px rgba(75,51,34,.08);
}

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

.ash-card{
    min-height:150px;
    border-radius:26px;
    background:#fff;
    border:1px solid rgba(185,138,54,.20);
    box-shadow:0 14px 36px rgba(75,51,34,.08);
    color:#3f2a1b!important;
    text-decoration:none!important;
    display:grid;
    align-content:center;
    justify-items:center;
    gap:7px;
    text-align:center;
    padding:16px;
    transition:.18s ease;
}

.ash-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 70px rgba(75,51,34,.13);
}

.ash-card.gold{
    background:linear-gradient(135deg,#b98a36,#dfc078);
    color:#fff!important;
    border-color:transparent;
}

.ash-card span{
    font-size:34px;
}

.ash-card strong{
    font-size:17px;
    font-weight:900;
}

.ash-card small{
    color:#756556;
    line-height:1.5;
    font-size:12px;
}

.ash-card.gold small{
    color:rgba(255,255,255,.88);
}

.ash-card.is-hidden{
    display:none;
}

.ash-empty{
    display:none;
    margin-top:18px;
    background:#fff;
    border:1px solid rgba(185,138,54,.20);
    border-radius:28px;
    padding:22px;
    box-shadow:0 16px 45px rgba(75,51,34,.08);
    text-align:center;
}

.ash-empty.show{
    display:block;
}

.ash-empty h2{
    margin:0;
    color:#3f2a1b;
    font-weight:900;
}

.ash-empty p{
    color:#756556;
    line-height:1.8;
}

.ash-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.ash-actions a{
    min-height:40px;
    border-radius:999px;
    padding:9px 14px;
    border:1px solid rgba(185,138,54,.22);
    background:#fff;
    color:#3f2a1b!important;
    text-decoration:none!important;
    font-weight:900;
}

.ash-actions a.gold{
    background:linear-gradient(135deg,#b98a36,#dfc078);
    color:#fff!important;
    border-color:transparent;
}

.ash-widget{
    position:fixed;
    left:14px;
    bottom:92px;
    z-index:99991;
    font-family:Arial,Tahoma,sans-serif;
}

.ash-widget-toggle{
    min-height:46px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#3f2a1b;
    border:1px solid rgba(185,138,54,.24);
    font-weight:900;
    padding:10px 16px;
    box-shadow:0 16px 48px rgba(75,51,34,.18);
    cursor:pointer;
}

.ash-widget-panel{
    display:none;
    position:absolute;
    left:0;
    bottom:58px;
    width:300px;
    background:#fff;
    border:1px solid rgba(185,138,54,.22);
    border-radius:24px;
    box-shadow:0 24px 80px rgba(0,0,0,.18);
    padding:16px;
}

.ash-widget-panel.show{
    display:grid;
    gap:9px;
}

.ash-widget-panel strong{
    color:#3f2a1b;
}

.ash-widget-panel input{
    min-height:42px;
    border-radius:16px;
    border:1px solid rgba(185,138,54,.22);
    padding:9px 12px;
    font-family:Arial,Tahoma,sans-serif;
}

.ash-widget-panel button[type="submit"]{
    min-height:40px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,#b98a36,#dfc078);
    color:#fff;
    font-weight:900;
    cursor:pointer;
}

.ash-widget-close{
    position:absolute;
    top:8px;
    right:8px;
    width:30px;
    height:30px;
    border-radius:50%;
    border:0;
    background:#fff4de;
    color:#8d611f;
    font-weight:900;
    cursor:pointer;
}

/* Admin */
.ash-admin{
    direction:rtl;
    font-family:Arial,Tahoma,sans-serif;
    color:#2b2118;
    max-width:1500px;
    margin:0 auto;
    padding:16px;
}

.ash-admin-hero,
.ash-admin-card{
    background:#fff;
    border:1px solid rgba(185,138,54,.22);
    border-radius:24px;
    padding:16px;
    box-shadow:0 14px 34px rgba(75,51,34,.08);
}

.ash-admin-hero{
    background:linear-gradient(135deg,#fffaf3,#fff);
    border-radius:30px;
    padding:22px;
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.ash-admin-hero h1{
    margin:0;
    color:#3f2a1b;
    font-size:34px;
    font-weight:900;
}

.ash-admin-hero p,
.ash-admin-hero small{
    color:#756556;
    line-height:1.8;
    max-width:900px;
}

.ash-admin-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.ash-admin-btn{
    min-height:40px;
    border-radius:999px;
    padding:9px 14px;
    background:#fff;
    border:1px solid rgba(185,138,54,.22);
    color:#3f2a1b!important;
    text-decoration:none!important;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:Arial,Tahoma,sans-serif;
    cursor:pointer;
    margin-top:10px;
}

.ash-admin-btn.gold{
    background:linear-gradient(135deg,#b98a36,#dfc078);
    color:#fff!important;
    border-color:transparent;
}

.ash-admin-alert{
    background:#fff4de;
    border:1px solid rgba(185,138,54,.22);
    border-radius:18px;
    padding:12px;
    color:#8d611f;
    font-weight:900;
    line-height:1.8;
    margin-bottom:14px;
}

.ash-admin-form{
    display:grid;
    gap:16px;
}

.ash-admin-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.ash-admin label{
    display:grid;
    gap:6px;
    color:#3f2a1b;
    font-weight:900;
    margin-bottom:10px;
}

.ash-admin input,
.ash-admin textarea{
    min-height:42px;
    border-radius:14px;
    border:1px solid rgba(185,138,54,.24);
    padding:9px 12px;
    font-family:Arial,Tahoma,sans-serif;
    background:#fffdf8;
}

.ash-checks{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-bottom:12px;
}

.ash-checks label{
    display:flex!important;
    align-items:center;
    gap:8px;
    background:#fffaf3;
    border:1px solid rgba(185,138,54,.16);
    border-radius:14px;
    padding:9px;
}

.ash-checks input{
    width:18px;
    height:18px;
    min-height:auto;
}

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

@media(max-width:780px){
    .ash-grid,
    .ash-admin-grid,
    .ash-checks{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:620px){
    .ash-page,
    .ash-admin{
        padding:10px;
    }

    .ash-grid,
    .ash-admin-grid,
    .ash-checks{
        grid-template-columns:1fr;
    }

    .ash-widget{
        left:10px;
        bottom:140px;
    }

    .ash-widget-panel{
        width:calc(100vw - 20px);
        left:0;
    }

    .ash-admin-actions,
    .ash-actions{
        display:grid;
        width:100%;
    }

    .ash-admin-btn,
    .ash-actions a{
        width:100%;
    }
}
