@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Naskh+Arabic:wght@500;700&display=swap');

:root{
    --bg:#faf7f1;
    --ink:#241b18;
    --muted:#766a63;
    --gold:#c68a2b;
    --gold2:#e2b55f;
    --dark:#1b1412;
    --card:#fffdf9;
    --line:#eadfce;
    --shadow:0 14px 40px rgba(46,29,18,.09);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    width:100%;
    max-width:100%;
}

body{
    margin:0;
    padding:0;
    width:100%;
    max-width:100%;
    min-width:100%;
    overflow-x:hidden;
    background:var(--bg);
    color:var(--ink);
    font-family:Inter,system-ui,sans-serif;
}

a{
    text-decoration:none;
    color:inherit;
}

.hidden{
    display:none!important;
}

/* =========================
   HEADER
   ========================= */

.top-bismillah{
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--dark);
    color:#f2d08b;
    font-family:"Noto Naskh Arabic",serif;
    font-size:20px;
    letter-spacing:.5px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px clamp(16px,4vw,64px);
    background:rgba(255,253,249,.92);
    backdrop-filter:blur(14px);
    position:sticky;
    top:0;
    z-index:20;
    border-bottom:1px solid var(--line);
}

/* LOGO */
.site-header .brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    letter-spacing:.8px;
    background:transparent!important;
    flex-shrink:0;
}

/* Original logo - larger and no rounded box */
.site-header .brand img, .site-header .brand img, .site-header .brand img.site-logo{
    display:block!important;
    width:115px!important;
    height:76px!important;
    max-width:none!important;
    max-height:none!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    object-fit:contain!important;
    object-position:center!important;
    flex-shrink:0!important;
}

.site-header .brand b{
    color:var(--gold);
}

.site-header nav{
    display:flex;
    gap:22px;
    align-items:center;
    font-weight:600;
    color:#4e413a;
}

.site-header nav a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    transition:.25s;
}

.site-header nav a:hover{
    color:var(--gold);
    transform:translateY(-1px);
}

.site-header nav .icon{
    font-size:13px;
}

.nav-admin{
    border:1px solid var(--line);
    padding:10px 14px;
    border-radius:12px;
}

.badge{
    display:inline-grid;
    place-items:center;
    min-width:20px;
    height:20px;
    padding:0 5px;
    background:var(--gold);
    color:#fff;
    border-radius:999px;
    font-size:11px;
}

/* =========================
   GENERAL
   ========================= */

main{
    min-height:70vh;
}

.section{
    max-width:1250px;
    margin:auto;
    padding:70px 20px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:20px;
    margin-bottom:25px;
}

.section h2{
    font-size:32px;
    margin:0;
}

.muted{
    color:var(--muted);
}

/* =========================
   HERO
   ========================= */

.hero{
    position:relative;
    overflow:hidden;
    padding:90px clamp(20px,7vw,110px);
    background:
        radial-gradient(circle at 80% 20%,rgba(198,138,43,.18),transparent 35%),
        linear-gradient(135deg,#211714,#3a2920);
    color:#fff;
}

.hero:after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:1px solid rgba(226,181,95,.22);
    border-radius:50%;
    right:-130px;
    top:-160px;
    animation:spin 24s linear infinite;
}

.hero-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
}

.hero h1{
    font-size:clamp(42px,7vw,82px);
    line-height:.95;
    margin:0 0 22px;
}

.hero h1 span{
    color:var(--gold2);
}

.hero p{
    max-width:640px;
    color:#eadfd3;
    font-size:18px;
    line-height:1.7;
}

.hero-logo{
    display:flex;
    justify-content:center;
}

.hero-logo img{
    width:min(370px,80%);
    border-radius:32px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
    animation:float 5s ease-in-out infinite;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 18px;
    border:0;
    border-radius:13px;
    background:var(--gold);
    color:#fff;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 10px 25px rgba(198,138,43,.22);
}

.btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.06);
}

.btn.secondary{
    background:#fff;
    color:var(--ink);
    box-shadow:none;
}

.btn.danger{
    background:#8e3e32;
    box-shadow:none;
    padding:9px 12px;
    font-size:12px;
}

.actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:25px;
}

/* =========================
   PRODUCTS / CARDS
   ========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(46,29,18,.13);
}

.product-img{
    aspect-ratio:1/1;
    border-radius:14px;
    overflow:hidden;
    background:#eee6dc;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.price{
    font-size:19px;
    font-weight:800;
    color:var(--gold);
    margin:8px 0;
}

.card h3{
    margin:10px 0 4px;
    font-size:16px;
}

.category-card{
    display:flex;
    align-items:center;
    gap:15px;
    min-height:90px;
}

.category-icon{
    width:50px;
    height:50px;
    border-radius:15px;
    background:#f1e4cf;
    display:grid;
    place-items:center;
    color:#8b5d1b;
    font-weight:900;
}

/* =========================
   SLIDER
   ========================= */

.home-slider{
    position:relative;
    max-width:1250px;
    margin:26px auto 0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 22px 60px rgba(46,29,18,.18);
    background:#211714;
}

.slider-track{
    position:relative;
    min-height:430px;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.035);
    transition:opacity .75s ease,transform 6s ease;
    pointer-events:none;
}

.slide.active{
    opacity:1;
    transform:scale(1);
    pointer-events:auto;
}

.slide-content{
    max-width:680px;
    padding:clamp(55px,7vw,90px);
    color:#fff;
}

.slide-content .eyebrow{
    color:#f2d08b;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:12px;
}

.slide-content h1{
    font-size:clamp(34px,5vw,66px);
    line-height:1.02;
    margin:0 0 14px;
}

.slide-content p{
    font-size:18px;
    line-height:1.6;
    color:#f0e6dc;
    max-width:560px;
    margin:0 0 24px;
}

.slider-controls{
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

.slider-controls>button{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    background:rgba(27,20,18,.55);
    color:#fff;
    cursor:pointer;
    backdrop-filter:blur(8px);
}

.slider-dots{
    display:flex;
    gap:7px;
}

.slider-dots button{
    width:28px;
    height:5px;
    border:0;
    border-radius:99px;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    padding:0;
}

.slider-dots button.active{
    background:#f2d08b;
    width:42px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
    background:#1b1412;
    color:#d9c9ba;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding:50px max(20px,7vw);
}

.site-footer strong{
    color:#f2d08b;
}

.site-footer p{
    line-height:1.7;
}

/* Footer bottom - DESKTOP */
.footer-bottom{
    width:100%;
    min-height:64px;
    padding:16px 5%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    background:#15100f;
    color:#b9a99d;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

.footer-bottom-left{
    width:auto;
    margin:0;
    padding:0;
    text-align:left;
    white-space:nowrap;
    color:rgba(255,255,255,.72);
}

.footer-bottom-right{
    width:auto;
    margin:0;
    padding:0;
    text-align:right;
    white-space:nowrap;
    color:rgba(255,255,255,.72);
}

.footer-bottom-right a{
    color:#e2b55f;
    text-decoration:none;
    font-weight:600;
}

.footer-bottom-right a:hover{
    text-decoration:underline;
}

/* =========================
   SOCIAL
   ========================= */

.social-links{
    display:flex;
    gap:9px;
    flex-wrap:wrap;
    margin-top:16px;
}

.social-btn{
    width:40px;
    height:40px;
    border:1px solid rgba(242,208,139,.18);
    border-radius:12px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.055);
    color:#f2d08b;
    transition:.25s;
    box-shadow:0 8px 20px rgba(0,0,0,.14);
}

.social-btn:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,.1);
    color:#fff;
}

.social-btn.large{
    width:48px;
    height:48px;
}

.social-btn.instagram:hover{color:#f5a3c7}
.social-btn.whatsapp:hover{color:#7de0a5}
.social-btn.tiktok:hover{color:#fff}
.social-btn.facebook:hover{color:#8fb8ff}
.social-btn.maps:hover{color:#f2d08b}

/* =========================
   CONTACT
   ========================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-details{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:28px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fffaf3;
    transition:.25s;
}

.contact-item:hover{
    transform:translateY(-2px);
    border-color:#d8bd8e;
    box-shadow:var(--shadow);
}

.contact-item span:last-child{
    display:flex;
    flex-direction:column;
    gap:3px;
    min-width:0;
}

.contact-item small{
    color:var(--muted);
}

.contact-item strong{
    font-size:13px;
    overflow-wrap:anywhere;
}

.contact-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    border-radius:12px;
    background:#f1e4cf;
    color:#8b5d1b;
    display:grid;
    place-items:center;
    font-size:16px;
}

.location-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:16px;
}

.map-card{
    min-height:390px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    background:
        radial-gradient(circle at 30% 20%,rgba(198,138,43,.18),transparent 35%),
        linear-gradient(145deg,#30221c,#171210);
}

.map-placeholder{
    min-height:390px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:25px;
    gap:9px;
}

.map-placeholder>i{
    font-size:52px;
    color:var(--gold2);
    margin-bottom:5px;
}

.map-placeholder strong{
    font-size:22px;
}

.map-placeholder span{
    color:#d9c9ba;
    margin-bottom:10px;
}

.social-panel{
    margin-top:22px;
    padding-top:20px;
    border-top:1px solid var(--line);
}

.social-panel .social-links{
    margin-top:10px;
}

/* =========================
   BANK DETAILS
   ========================= */

.bank-details-card{
    margin:14px 0;
    padding:16px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fffdf8;
    box-shadow:0 6px 18px rgba(52,35,20,.06);
}

.bank-details-title{
    display:flex;
    align-items:center;
    gap:9px;
    font-weight:800;
    font-size:1.05rem;
    margin-bottom:12px;
    color:#4a2d1d;
}

.bank-detail-row{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:9px 0;
    border-top:1px solid var(--line);
}

.bank-detail-row span{
    color:var(--muted);
}

.bank-detail-row strong{
    text-align:right;
    word-break:break-word;
}

/* =========================
   ADMIN
   ========================= */

.admin-body{
    background:#f4efe7;
    margin:0;
    min-height:100vh;
    overflow-x:hidden;
}

.admin-shell{
    display:flex;
    align-items:stretch;
    width:100%;
    min-height:100vh;
}

.admin-shell .sidebar{
    width:250px;
    min-width:250px;
    min-height:100vh;
    height:100vh;
    box-sizing:border-box;
    background:#1b1412;
    color:#e8ddd2;
    padding:22px 16px;
    position:sticky;
    top:0;
    z-index:1000;
    overflow-y:auto;
    flex-shrink:0;
}

.admin-shell .sidebar .brand{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    margin:0 0 30px;
    padding:4px 8px;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
}

.admin-shell .sidebar .brand img{
    width:58px!important;
    height:58px!important;
    min-width:58px!important;
    min-height:58px!important;
    max-width:58px!important;
    max-height:58px!important;
    display:block!important;
    object-fit:contain!important;
    object-position:center!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
    flex-shrink:0!important;
}

.admin-shell .sidebar .brand span{
    font-size:17px;
    font-weight:800;
    white-space:nowrap;
}

.admin-shell .sidebar .brand b{
    color:var(--gold);
}

.admin-shell .sidebar nav{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:4px;
}

.admin-shell .sidebar nav a{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    min-height:43px;
    padding:10px 12px;
    box-sizing:border-box;
    border-radius:11px;
    margin:0;
    color:#cfc0b4;
    text-decoration:none;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}

.admin-shell .sidebar nav a:hover,
.admin-shell .sidebar nav a.active{
    background:rgba(198,138,43,.16);
    color:#f2d08b;
    transform:translateX(2px);
}

.admin-shell .sidebar nav a .icon{
    width:20px;
    min-width:20px;
    text-align:center;
    color:#f0c878;
}

.admin-menu-toggle{
    display:none;
    position:fixed;
    top:14px;
    left:14px;
    width:44px;
    height:44px;
    padding:0;
    border:0;
    border-radius:10px;
    background:#1b1412;
    color:#f2d08b;
    font-size:19px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10002;
    box-shadow:0 8px 24px rgba(0,0,0,.25);
}

.admin-sidebar-overlay{
    display:none;
}

.admin-shell .admin-main{
    flex:1;
    min-width:0;
    min-height:100vh;
    box-sizing:border-box;
    padding:28px;
    max-width:1500px;
    width:100%;
}

.admin-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:24px;
}

.admin-top h1{
    margin:0;
}

.stats,
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.stat,
.stats-grid .stat-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:17px;
    padding:20px;
    box-shadow:var(--shadow);
}

.stat .num{
    font-size:28px;
    font-weight:800;
    margin-top:8px;
}

.stat-card{
    display:flex;
    gap:14px;
    align-items:center;
}

.stat-card i{
    font-size:22px;
}

.stat-card span{
    display:block;
    font-size:12px;
    color:var(--muted);
}

.stat-card strong{
    font-size:20px;
}

.charts{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:16px;
    margin-top:16px;
}

.panel{
    background:#fff;
    border:1px solid var(--line);
    border-radius:17px;
    padding:20px;
}

.panel-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
}

.bar-chart{
    height:220px;
    display:flex;
    align-items:end;
    gap:10px;
}

.bar{
    flex:1;
    background:linear-gradient(180deg,var(--gold2),var(--gold));
    border-radius:7px 7px 2px 2px;
    min-height:8px;
    position:relative;
    animation:grow .8s ease both;
}

.bar small{
    position:absolute;
    bottom:-23px;
    left:50%;
    transform:translateX(-50%);
    color:var(--muted);
}

table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    padding:12px;
    border-bottom:1px solid var(--line);
    text-align:left;
}

th{
    color:#6b5d53;
    font-size:13px;
}

.table-wrap{
    overflow:auto;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.field.full{
    grid-column:1/-1;
}

input,select,textarea{
    font:inherit;
    padding:12px 13px;
    border:1px solid #d9ccbb;
    border-radius:11px;
    background:#fff;
    outline:none;
}

input:focus,select:focus,textarea:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(198,138,43,.12);
}

.toolbar{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.toolbar input{
    min-width:240px;
}

.inline-form{
    display:flex;
    gap:10px;
    align-items:end;
    flex-wrap:wrap;
}

.inline-form label{
    font-size:12px;
    font-weight:700;
}

.inline-form input{
    display:block;
    margin-top:4px;
}

/* ADMIN MOBILE DRAWER */
@media(max-width:800px){

    body.admin-menu-open{
        overflow:hidden;
    }

    .admin-shell{
        display:block;
        width:100%;
        min-height:100vh;
    }

    .admin-shell .sidebar{
        position:fixed;
        top:0;
        left:-270px;
        width:250px;
        min-width:250px;
        height:100vh;
        min-height:100vh;
        padding:22px 16px;
        overflow-y:auto;
        z-index:10001;
        transition:left .25s ease;
    }

    .admin-shell .sidebar.open{
        left:0;
    }

    .admin-menu-toggle{
        display:flex;
    }

    .admin-sidebar-overlay{
        display:block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.55);
        opacity:0;
        visibility:hidden;
        z-index:10000;
        transition:opacity .25s ease,visibility .25s ease;
    }

    .admin-sidebar-overlay.show{
        opacity:1;
        visibility:visible;
    }

    .admin-shell .admin-main{
        width:100%;
        min-width:0;
        min-height:100vh;
        padding:15px;
        box-sizing:border-box;
    }

    .admin-top{
        padding:58px 0 0;
        margin-bottom:20px;
    }

    .admin-top h1{
        font-size:25px;
    }

    .stats,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .charts{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:500px){

    .admin-shell .sidebar{
        width:250px;
        min-width:250px;
        left:-270px;
    }

    .admin-top{
        padding-top:58px;
    }

    .admin-top h1{
        font-size:23px;
    }

    .admin-top .muted{
        font-size:13px;
    }

    .admin-top .btn{
        padding:9px 11px;
        font-size:13px;
    }

    .admin-shell .sidebar .brand img{
        width:58px!important;
        height:58px!important;
        min-width:58px!important;
        min-height:58px!important;
    }
}

/* =========================
   POS
   ========================= */

.pos{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:18px;
}

.scan-box{
    display:flex;
    gap:10px;
}

.scan-box input{
    flex:1;
}

.camera{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:50;
}

.camera.active{
    display:flex;
}

.camera-card{
    width:min(560px,94vw);
    background:#fff;
    border-radius:18px;
    padding:15px;
}

.camera video{
    width:100%;
    border-radius:14px;
    background:#000;
    max-height:65vh;
}

.cart-row{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:10px;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid var(--line);
}

.qty{
    display:flex;
    align-items:center;
    gap:6px;
}

.qty button{
    width:30px;
    height:30px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:8px;
    cursor:pointer;
}

.total-box{
    margin-top:15px;
    border-top:2px solid var(--line);
    padding-top:15px;
}

.total-line{
    display:flex;
    justify-content:space-between;
    padding:7px 0;
}

.total-line.grand{
    font-size:22px;
    font-weight:800;
    color:var(--gold);
}

/* =========================
   LOGIN
   ========================= */

.login{
    min-height:100vh;
    display:grid;
    place-items:center;
    background:radial-gradient(circle at 50% 20%,#fff,#eadfce);
}

.login-card{
    width:min(430px,92vw);
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:var(--shadow);
    border:1px solid var(--line);
}

.login-card img{
    width:100px;
    height:100px;
    object-fit:contain;
    border-radius:0;
    display:block;
    margin:0 auto 20px;
}

.login-card .field{
    margin:13px 0;
}

/* =========================
   BANNERS
   ========================= */

.banner-admin-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.banner-admin-card{
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    display:grid;
    grid-template-columns:1.2fr .8fr;
}

.banner-admin-card img{
    width:100%;
    height:100%;
    min-height:170px;
    object-fit:cover;
}

.banner-admin-body{
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.status-pill{
    width:max-content;
    padding:4px 9px;
    border-radius:99px;
    font-size:11px;
    font-weight:800;
}

.status-pill.on{
    background:#e6f5eb;
    color:#247044;
}

.status-pill.off{
    background:#f3e8e3;
    color:#8b5540;
}

/* =========================
   TOAST / ANIMATION
   ========================= */

.toast{
    position:fixed;
    right:18px;
    bottom:18px;
    background:#211714;
    color:#fff;
    padding:13px 17px;
    border-radius:12px;
    z-index:100;
    opacity:0;
    transform:translateY(15px);
    transition:.3s;
}

.toast.show{
    opacity:1;
    transform:none;
}

.reveal{
    animation:reveal .7s ease both;
}

.pulse{
    animation:pulse 2.2s ease-in-out infinite;
}

.success-icon{
    font-size:64px;
    color:var(--gold);
    margin-bottom:8px;
}

/* =========================
   KEYFRAMES
   ========================= */

@keyframes float{
    50%{
        transform:translateY(-9px);
    }
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

@keyframes reveal{
    from{
        opacity:0;
        transform:translateY(18px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

@keyframes grow{
    from{
        height:0;
    }
}

@keyframes pulse{
    50%{
        box-shadow:0 0 0 9px rgba(198,138,43,.08);
    }
}

/* =========================
   TABLET
   ========================= */

@media(max-width:950px){

    .hero-grid,
    .pos,
    .charts{
        grid-template-columns:1fr;
    }

    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .site-footer{
        grid-template-columns:1fr 1fr;
    }
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:700px){

    .top-bismillah{
        font-size:17px;
    }

    .site-header{
        height:auto;
        min-height:78px;
        gap:10px;
        padding:8px 16px;
    }

    /* MOBILE LOGO */
    .site-header .brand img, .site-header .brand img, .site-header .brand img.site-logo{
        width:105px!important;
        height:70px!important;
        max-width:none!important;
        max-height:none!important;
        border-radius:0!important;
        background:transparent!important;
        object-fit:contain!important;
    }

    .site-header .brand{
        gap:10px;
    }

    .site-header nav{
        gap:8px;
        font-size:12px;
    }

    .site-header nav a:not(.nav-admin){
        display:none;
    }

    .brand span{
        display:none;
    }

    .hero{
        padding:60px 20px;
    }

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

    .section{
        padding:45px 14px;
    }

    .stats,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .admin-main{
        padding:15px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-details{
        grid-template-columns:1fr;
    }

    .location-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .site-footer{
        grid-template-columns:1fr;
    }

    .cart-row{
        grid-template-columns:1fr;
    }

    .bank-detail-row{
        display:block;
    }

    .bank-detail-row strong{
        display:block;
        text-align:left;
        margin-top:3px;
    }

    .home-slider{
        margin:14px;
        border-radius:18px;
    }

    .slider-track{
        min-height:390px;
    }

    .slide-content{
        padding:48px 24px 80px;
    }

    .slide-content h1{
        font-size:38px;
    }

    .slide-content p{
        font-size:15px;
    }

    .banner-admin-grid{
        grid-template-columns:1fr;
    }

    .banner-admin-card{
        grid-template-columns:1fr;
    }

    .banner-admin-card img{
        min-height:150px;
    }

    /* FOOTER MOBILE */
    .footer-bottom{
        width:100%!important;
        min-height:auto!important;
        padding:15px 18px!important;
        display:flex!important;
        flex-direction:column!important;
        align-items:center!important;
        justify-content:center!important;
        gap:7px!important;
        text-align:center!important;
        overflow:hidden!important;
    }

    .footer-bottom-left{
        width:100%!important;
        margin:0!important;
        padding:0!important;
        text-align:center!important;
        white-space:normal!important;
        font-size:13px!important;
        line-height:1.5!important;
    }

    .footer-bottom-right{
        width:100%!important;
        margin:0!important;
        padding:0!important;
        text-align:center!important;
        white-space:normal!important;
        font-size:13px!important;
        line-height:1.5!important;
    }

    .footer-bottom-right a{
        display:inline!important;
    }
}

/* =========================
   SMALL PHONES
   ========================= */

@media(max-width:400px){

    .site-header .brand img, .site-header .brand img, .site-header .brand img.site-logo{
        width:95px!important;
        height:65px!important;
    }

    .site-header{
        padding:7px 12px;
    }
}

/* =========================================================
   ABBW TIJARAH NEWSLETTER / SUBSCRIBE
========================================================= */

.newsletter-section{
    width:100%;
    padding:70px 36px;
    background:#f7f1e8;
    box-sizing:border-box;
}

.newsletter-box{
    max-width:1180px;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    padding:38px 42px;

    background:
        linear-gradient(
            135deg,
            #211714 0%,
            #30201a 55%,
            #3b281d 100%
        );

    border:1px solid rgba(201,139,36,.35);

    border-radius:22px;

    box-shadow:
        0 18px 45px rgba(35,22,16,.16);
}

.newsletter-content{
    display:flex;
    align-items:center;
    gap:22px;

    flex:1;
}

.newsletter-icon{
    width:64px;
    height:64px;

    min-width:64px;

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

    border-radius:16px;

    background:rgba(201,139,36,.14);

    border:1px solid rgba(201,139,36,.35);

    color:#d39a32;

    font-size:26px;
}

.newsletter-eyebrow{
    margin-bottom:7px;

    color:#d7a33d;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;
}

.newsletter-box h2{
    margin:0 0 8px;

    color:#fff;

    font-size:30px;

    line-height:1.15;
}

.newsletter-box p{
    margin:0;

    color:#d8cbc1;

    font-size:15px;

    line-height:1.6;
}

.newsletter-form{
    display:flex;

    align-items:center;

    gap:10px;

    min-width:430px;
}

.newsletter-form input{
    width:100%;

    height:52px;

    padding:0 17px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:10px;

    background:#fff;

    color:#211714;

    font-size:15px;

    outline:none;

    box-sizing:border-box;
}

.newsletter-form input:focus{
    border-color:#d39a32;

    box-shadow:
        0 0 0 3px rgba(201,139,36,.16);
}

.newsletter-form .btn{
    height:52px;

    padding:0 22px;

    border:0;

    white-space:nowrap;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    cursor:pointer;
}

.newsletter-form .btn:disabled{
    opacity:.7;

    cursor:not-allowed;
}

.newsletter-message{
    display:none;

    margin-top:12px;

    font-size:14px;

    font-weight:600;
}

.newsletter-message.success{
    display:block;

    color:#8fe0a7;
}

.newsletter-message.error{
    display:block;

    color:#ff9c91;
}


/* =========================================================
   FOOTER IMPROVEMENT
========================================================= */

.site-footer{
    position:relative;

    padding:55px 7% 45px;

    background:#18110f;

    color:#e9ddd2;

    border-top:1px solid rgba(201,139,36,.15);
}

.site-footer strong{
    color:#e1aa43;
}

.site-footer p{
    color:#cbbdb3;
    line-height:1.7;
}

.footer-bottom{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:18px 7%;

    background:#100b09;

    color:#aa9b91;

    border-top:1px solid rgba(255,255,255,.06);

    font-size:13px;
}

.footer-bottom a{
    color:#d39a32;

    text-decoration:none;

    font-weight:700;
}

.footer-bottom a:hover{
    text-decoration:underline;
}


/* =========================================================
   MOBILE NEWSLETTER
========================================================= */

@media(max-width:900px){

    .newsletter-section{
        padding:45px 20px;
    }

    .newsletter-box{
        flex-direction:column;

        align-items:stretch;

        padding:30px 24px;

        gap:25px;
    }

    .newsletter-form{
        min-width:0;

        width:100%;
    }

}


@media(max-width:600px){

    .newsletter-section{
        padding:35px 15px;
    }

    .newsletter-box{
        padding:25px 18px;

        border-radius:16px;
    }

    .newsletter-content{
        align-items:flex-start;

        gap:15px;
    }

    .newsletter-icon{
        width:50px;
        height:50px;

        min-width:50px;

        font-size:20px;
    }

    .newsletter-box h2{
        font-size:23px;
    }

    .newsletter-box p{
        font-size:14px;
    }

    .newsletter-form{
        flex-direction:column;

        align-items:stretch;

        gap:10px;
    }

    .newsletter-form input,
    .newsletter-form .btn{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;

        text-align:center;

        padding:18px 15px;
    }

}