*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4ed;
    color:#2d4a2f;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 80px;
    border-bottom:1px solid #d8d8d8;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#7a9461;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#444;
    font-size:18px;
}

.nav-button{
    display:flex;
    gap:15px;
}

.btn-admin{
    padding:12px 28px;
    border-radius:30px;
    border:1px solid #7a9461;
    background:white;
    cursor:pointer;
}

.btn-order{
    background:#7b9658;
    color:white;
    padding:14px 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    transition:all .25s ease;
}

.btn-order:hover{
    background:#6a844a;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(123,150,88,.30);
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px;

    position:relative;
    z-index:1;
}

.hero-left{
    width:50%;
}

.tag{
    display:inline-block;
    padding:10px 20px;
    border:1px solid #7a9461;
    border-radius:30px;
    margin-bottom:30px;
}

.hero-left h1{
    font-size:90px;
    line-height:100px;
    margin-bottom:30px;
}

.hero-left p{
    font-size:22px;
    line-height:38px;
    color:#555;
    margin-bottom:40px;
}

.hero-button{
    display:flex;
    gap:20px;
}

.btn-menu{
    background:transparent;
    color:#173f35;
    border:1.5px solid #7b9658;
    padding:14px 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    transition:all .25s ease;
}

.btn-menu:hover{
    background:#7b9658;
    color:#fff;
}

.hero-right img{
    width:550px;
    border-radius:30px;
}

.dashboard-container{
    display:flex;
    min-height:100vh;
    background:#f8f8f2;
}

.sidebar{
    width:260px;
    background:white;
    border-right:1px solid #ddd;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:30px 20px;
}

.sidebar-logo h2{
    color:#6f8d5d;
    margin-bottom:40px;
}

.sidebar-menu{
    list-style:none;
}

.sidebar-menu li{
    padding:15px;
    border-radius:10px;
    margin-bottom:10px;
    cursor:pointer;
}

.sidebar-menu li.active{
    background:#edf2e5;
    color:#6f8d5d;
    font-weight:bold;
}

.sidebar-user{
    border-top:1px solid #ddd;
    padding-top:20px;
}

.dashboard-main{
    flex:1;
    padding:40px;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.topbar input{
    padding:14px 20px;
    border-radius:30px;
    border:1px solid #ccc;
    width:250px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:20px;
    border:1px solid #e5e5e5;
}

.card h2{
    margin:15px 0;
    color:#2c4b2d;
}

.card p{
    color:green;
}

.table-container{
    background:white;
    border-radius:20px;
    border:1px solid #e5e5e5;
    overflow:hidden;
}

.table-header{
    padding:25px;
    border-bottom:1px solid #eee;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    padding:20px;
    text-align:left;
    border-bottom:1px solid #f1f1f1;
}

.status{
    background:#e7f4db;
    color:#5f8b3f;
    padding:8px 15px;
    border-radius:20px;
}

.menu-page{
    padding:50px 80px;
    background:#f7f7f1;
    min-height:100vh;
}

.menu-header{
    margin-bottom:40px;
}

.menu-label{
    color:#7a9461;
    font-weight:bold;
    margin-bottom:10px;
}

.menu-header h1{
    font-size:64px;
    color:#2d4a2f;
    margin-bottom:15px;
}

.menu-header p{
    color:#666;
    font-size:20px;
}

.menu-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.menu-top input{
    width:60%;
    padding:18px 25px;
    border-radius:40px;
    border:1px solid #ddd;
    background:white;
}

.category-buttons{
    display:flex;
    gap:15px;
}

.category-buttons button{
    padding:15px 25px;
    border-radius:30px;
    border:1px solid #a5b68d;
    background:white;
    cursor:pointer;
}

.category-buttons .active{
    background:#8aa06f;
    color:white;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.menu-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    border:1px solid #eee;
}

.menu-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.menu-info{
    padding:20px;
}

.rating{
    margin-bottom:10px;
}

.menu-info h3{
    margin-bottom:10px;
    color:#2d4a2f;
}

.menu-info p{
    color:#777;
    margin-bottom:20px;
}

.menu-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu-bottom h2{
    color:#7a9461;
}

.menu-bottom button{
    padding:12px 20px;
    border-radius:30px;
    border:1px solid #8aa06f;
    background:white;
    cursor:pointer;
}

.harga-page{
    padding:60px 80px;
    background:#f8f8f2;
    min-height:100vh;
}

.harga-header{
    text-align:center;
    margin-bottom:60px;
}

.harga-label{
    color:#7c9461;
    font-weight:bold;
    margin-bottom:10px;
}

.harga-header h1{
    font-size:72px;
    color:#2d4a2f;
    margin-bottom:20px;
}

.harga-header p{
    font-size:22px;
    color:#666;
    line-height:38px;
}

.harga-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.harga-card{
    background:white;
    border:1px solid #e7e7e7;
    border-radius:30px;
    overflow:hidden;
}

.harga-top{
    padding:40px;
    border-bottom:1px solid #eee;
}

.icon{
    font-size:40px;
    margin-bottom:20px;
}

.harga-top h2{
    font-size:48px;
    color:#2d4a2f;
    margin-bottom:15px;
}

.harga-top span{
    background:#eef3e5;
    color:#6e8b55;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
}

.harga-list{
    padding:35px;
}

.harga-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.harga-item p{
    color:#444;
}

.harga-item h4{
    color:#2d4a2f;
}

.harga-card button{
    margin:0 35px 35px;
    width:calc(100% - 70px);
    padding:18px;
    border-radius:40px;
    border:1px solid #8aa06f;
    background:white;
    color:#5d7c45;
    font-weight:bold;
    cursor:pointer;
}

.harga-info{
    margin:60px auto 0;
    width:fit-content;
    padding:16px 30px;
    border:1px solid #cddab9;
    border-radius:40px;
    color:#6d8655;
    background:#f2f7ea;
}



.badge{
    background:#90a96f;
    color:white;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
}

.green{
    background:#4caf72;
}

.about-page{
    padding:60px 80px;
    background:#f8f8f2;
    min-height:100vh;
}

.about-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:70px;
}

.about-label{
    color:#7c9561;
    font-weight:bold;
    margin-bottom:20px;
}

.about-left h1{
    font-size:78px;
    line-height:95px;
    color:#2d4a2f;
    margin-bottom:30px;
}

.about-left h1 span{
    color:#95aa74;
}

.about-desc{
    font-size:22px;
    line-height:42px;
    color:#555;
    margin-bottom:25px;
}

.about-right{
    position:relative;
}

.about-right img{
    width:100%;
    border-radius:40px;
    height:650px;
    object-fit:cover;
}

.about-badge{
    position:absolute;
    left:30px;
    bottom:30px;
    background:white;
    padding:22px 28px;
    border-radius:25px;
    font-weight:bold;
    color:#6c8652;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.info-card{
    background:white;
    border:1px solid #e5e5e5;
    border-radius:30px;
    padding:40px;
}

.info-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#93a978;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:30px;
}

.info-card h3{
    font-size:42px;
    color:#2d4a2f;
    margin-bottom:20px;
}

.info-card p{
    color:#555;
    line-height:36px;
    margin-bottom:15px;
}

.info-card span{
    color:#8ba06e;
    font-weight:bold;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f8f8f2;
}

a{
    text-decoration:none;
    color:inherit;
}

.navbar{
    width:100%;
    height:90px;
    padding:0 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
    background:#f8f8f2;

    position:relative;
    z-index:9999;
}

.logo{
    font-size:48px;
    font-weight:bold;
    color:#7e9662;
}

.navbar-menu{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar-menu a{
    position: relative;
    text-decoration: none;
    color: #173f35;
    font-size: 22px;
    font-weight: 600;
    transition: all .3s ease;
}  

.navbar-menu{
    display:flex;
    gap:50px;
    align-items:center;
}

/* HOVER */
.navbar-menu a:hover{
    color: #7b9658;
}

/* GARIS ANIMASI */
.navbar-menu a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #7b9658;
    transition: width .3s ease;
}

.navbar-menu a:hover::after{
    width: 100%;
}

/* SAAT DIKLIK */
.navbar-menu a:active{
    transform: scale(0.95);
}

.navbar-buttons{
    display:flex;
    gap:20px;
}

.admin-btn{
    padding:14px 30px;
    border:1px solid #8aa06f;
    border-radius:40px;
}

.order-btn{
    padding:14px 30px;
    background:#8aa06f;
    color:white;
    border-radius:40px;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    margin:auto;
    padding:50px 0;
}

.cart-box,
.status-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border:1px solid #dfe7d4;
}

.cart-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.cart-total{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
}

.form-group{
    margin-bottom:20px;
}

.form-group input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:10px;
}

.status-pending{
    background:#fff3cd;
    padding:15px;
    border-radius:10px;
    margin-top:20px;
}

.status-process{
    background:#cfe2ff;
    padding:15px;
    border-radius:10px;
    margin-top:20px;
}

.status-finish{
    background:#d1e7dd;
    padding:15px;
    border-radius:10px;
    margin-top:20px;
}

.login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:80vh;
}

.login-card{
    width:400px;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.login-card h1{
    margin-bottom:20px;
    color:#2d4d2f;
}

.login-card input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.login-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#8aa36b;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.error-text{
    color:red;
    margin-bottom:15px;
}

.success-box{
    background:#dff5df;
    color:#2e7d32;
    padding:15px 20px;
    border-radius:12px;
    margin-top:20px;
    display:inline-block;
    font-weight:600;
}

.status-card{
    max-width:700px;
    margin:60px auto;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.status-card h1{
    color:#264d2f;
}

.status-pending{
    background:#fff3cd;
    color:#856404;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.status-process{
    background:#dbeafe;
    color:#1e40af;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.status-finish{
    background:#dcfce7;
    color:#166534;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.category-btn{
    text-decoration:none;
    background:#f5f5f5;
    padding:10px 18px;
    border-radius:20px;
    color:#333;
    font-weight:500;
}

.category-btn:hover{
    background:#8aa36b;
    color:white;
}

.status-payment{
    background:#fef3c7;
    color:#92400e;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .navbar-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        flex-direction:column;
        padding:40px 20px;
        text-align:center;
    }

    .hero-left h1{
        font-size:40px;
    }

    .hero-right img{
        width:100%;
        max-width:350px;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .dashboard-container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
        height:auto;
    }

    .dashboard-main{
        width:100%;
        padding:20px;
    }

    table{
        display:block;
        overflow-x:auto;
    }

}

.status{
    padding:8px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    display:inline-block;
}

.status.pending{
    background:#fef3c7;
    color:#92400e;
}

.status.diproses{
    background:#dbeafe;
    color:#1e40af;
}

.status.selesai{
    background:#dcfce7;
    color:#166534;
}

.card{
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    color:#264d2f;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    border:none;
}

.card:hover{
    transform:translateY(-5px);
}

.card h4{
    color:#888;
    font-size:14px;
    margin-bottom:10px;
}

.card h2{
    font-size:30px;
    color:#264d2f;
}

.menu-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    border:none;
}

.menu-card:hover{
    transform:translateY(-5px);
}

.menu-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.menu-price{
    color:#264d2f;
    font-size:24px;
    font-weight:700;
}

.menu-bottom button{
    background:#264d2f;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:12px;
    cursor:pointer;
}

.menu-bottom button:hover{
    opacity:.9;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .navbar-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-right img{
        width:100%;
        max-width:320px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .dashboard-container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .dashboard-main{
        width:100%;
        padding:20px;
    }

    table{
        display:block;
        overflow-x:auto;
    }
}

.btn-add{
    background:#8fa66b;
    color:white;
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.btn-edit{
    color:#2f5d3a;
    text-decoration:none;
    font-weight:600;
}

.btn-delete{
    color:#dc2626;
    text-decoration:none;
    font-weight:600;
    margin-left:12px;
}

.category-badge{
    background:#eef5e4;
    color:#2f5d3a;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.sold-badge{
    background:#f5f5f5;
    padding:6px 12px;
    border-radius:999px;
    font-weight:600;
}

.table-container tbody tr:hover{
    background:#fafcf7;
}

.form-card{
    background:white;
    border-radius:24px;
    padding:30px;
    max-width:800px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#23432e;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

.form-group textarea{
    resize:none;
}

.btn-save{
    background:#8fa66b;
    color:white;
    border:none;
    padding:14px 25px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
} 

.empty-card{
    background:white;
    padding:40px;
    border-radius:24px;
}

.btn-detail{
    background:#264d2f;
    color:white;
    padding:8px 12px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
}

.btn-process{
    background:#2563eb;
    color:white;
    padding:8px 12px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    margin-left:5px;
}

.btn-finish{
    background:#16a34a;
    color:white;
    padding:8px 12px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    margin-left:5px;
}

.btn-detail:hover,
.btn-process:hover,
.btn-finish:hover{
    opacity:.9;
}

.order-total-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    margin-top:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.order-total-card h3{
    color:#777;
}

.order-total-card h1{
    color:#264d2f;
    margin-top:10px;
}

.order-action{
    margin-top:25px;
}

.success-box{
    background:#dcfce7;
    color:#166534;
    padding:15px;
    font-weight:600;
}

.btn-save{
    background:#8fa66b;
    color:white;
    border:none;
    padding:14px 25px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
}

/* CART NEW */

.cart-page{
    max-width:1000px;
    margin:40px auto;
    padding:0 20px;
}

.cart-title{
    font-size:40px;
    font-weight:700;
    color:#173F35;
    margin-bottom:25px;
}

.cart-card{
    background:#fff;
    border-radius:20px;
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.cart-info h3{
    font-size:22px;
    margin-bottom:6px;
}

.cart-info p{
    color:#666;
}

.cart-price{
    text-align:right;
}

.cart-price h3{
    font-size:24px;
    color:#173F35;
}

.cart-remove{
    color:#ff3b30;
    font-weight:600;
}

.cart-footer{
    margin-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-total{
    font-size:30px;
    font-weight:700;
    color:#173F35;
}

.checkout-btn{
    background:#8aa06f;
    color:white;
    padding:14px 32px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
}

@media(max-width:768px){

    .cart-page{
        padding:0 16px;
    }

    .cart-title{
        font-size:32px;
    }

    .cart-card{
        padding:16px;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .cart-price{
        width:100%;
        text-align:left;
    }

    .cart-price h3{
        font-size:20px;
    }

    .cart-footer{
        flex-direction:column;
        align-items:stretch;
        gap:15px;
    }

    .cart-total{
        font-size:24px;
    }

    .checkout-btn{
        width:100%;
        text-align:center;
    }
}

.order-info{
    margin:25px 0;
}

.order-info div{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.order-info span{
    color:#666;
}

.order-info strong{
    color:#173F35;
    font-weight:700;
}

.back-menu{
    display:inline-block;
    margin-top:25px;
    padding:12px 24px;
    background:#8aa06f;
    color:white;
    border-radius:30px;
    font-weight:600;
}

.progress-order{
    margin:25px 0;
}

.step{
    margin-bottom:12px;
    color:#999;
    font-weight:600;
}

.step.completed{
    color:#166534;
}

@media(max-width:768px){

    .order-info div{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

}

.checkout-card{
    max-width:600px;
    margin:50
}

.btn-verify{
    display:inline-block;
    background:#f59e0b;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
}

.btn-verify:hover{
    opacity:.9;
}

.admin-layout{
    display:flex;
    min-height:100vh;
}

.admin-sidebar{
    position:fixed;
    left:0;
    top:0;
    width:220px;
    height:100vh;

    background:#fff;

    padding:25px 15px;

    display:flex;
    flex-direction:column;

    border-right:1px solid #e5e5e5;
}

.sidebar-logo{
    margin-bottom:20px;
}

.sidebar-logo h2{
    font-size:22px;
    font-weight:800;
    color:#7b9658;
}

.sidebar-menu{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    padding:16px 18px;
    border-radius:14px;
    text-decoration:none;
    color:#173f35;
    font-weight:600;
    background:#fff;
    transition:.3s;
    border:1px solid #edf0e7;
}

.sidebar-menu a:hover{
    background:#f4f7ef;
    transform:translateX(5px);
}

.sidebar-footer{
    margin-top:auto;
    padding-top:30px;
    border-top:1px solid #e5e5e5;
}

.sidebar-footer strong{
    display:block;
    color:#173f35;
}

.sidebar-footer span{
    color:#777;
    font-size:14px;
}

.admin-content{
    margin-left:220px;
    width:calc(100% - 220px);
    padding:30px;
}

.sidebar-menu a.active{
    background:#edf3e2;
    color:#6b8f4e;
}

.wa-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#25D366;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.wa-link:hover{
    opacity:0.8;
}

.wa-link i{
    font-size:20px;
}

/* SEMUA BUTTON */
.btn-order,
.btn-menu,
.admin-btn,
button{
    transition: all .25s ease;
    cursor: pointer;
}

/* HOVER */
.btn-order:hover,
.admin-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111,143,73,.25);
}

.btn-menu:hover{
    background: #7b9658;
    color: white;
    transform: translateY(-2px);
}

/* SAAT DITEKAN */
.btn-order:active,
.btn-menu:active,
.admin-btn:active,
button:active{
    transform: scale(0.96);
    box-shadow: inset 0 3px 8px rgba(0,0,0,.15);
}

/* FOCUS */
.btn-order:focus,
.btn-menu:focus,
.admin-btn:focus,
button:focus{
    outline: none;
    box-shadow:
        0 0 0 4px rgba(123,150,88,.25);
}

.active-nav{
    color:#7b9658 !important;
}

.active-nav::after{
    width:100% !important;
}

html{
    scroll-behavior:smooth;
}

.btn-price{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 55px;

    margin-top: 25px;

    background: #8BA163;
    color: white;

    border: none;
    border-radius: 50px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-price:hover{
    background: #738a4f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.btn-price:active{
    transform: scale(0.97);
}

.topbar-right{
    margin: 0;
}

.topbar-right input{
    width: 250px;
    padding: 12px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 30px;
    outline: none;
}

@media (max-width: 768px){

    .harga-wrapper{
        flex-direction: column;
        gap: 20px;
    }

    .harga-card{
        width: 100%;
    }

}

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        padding:20px;
    }

    .navbar-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
        margin-top:15px;
    }

    .navbar-right{
        margin-top:15px;
    }

}

.hero-text h1{
    font-size:90px;
}

@media (max-width:768px){

    .hero-text h1{
        font-size:58px;
        line-height:1.1;
    }

}

@media (max-width:768px){

    .hero{
        flex-direction:column;
    }

    .hero-image img{
        width:100%;
        height:auto;
    }

}


@media (max-width:768px){

    .menu-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .harga-wrapper{
        flex-direction:column;
    }

    .harga-card{
        width:100%;
        margin-bottom:20px;
    }

}

@media (max-width:768px){

    .about-hero{
        flex-direction:column;
    }

    .about-left h1{
        font-size:48px;
        line-height:1.1;
    }

}

.btn-update{
    background:#8fa866;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.btn-update:hover{
    background:#7f9758;
    transform:translateY(-2px);
}

.btn-update:active{
    transform:scale(0.97);
}

.btn-update:focus{
    outline:none;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:12px;
}

.sidebar-menu a i{
    width:20px;
    text-align:center;
    font-size:16px;
}

.admin-btn{
    display:flex;
    align-items:center;
    gap:8px;
}

@media screen and (max-width:768px){

    /* NAVBAR */
    .navbar{
        padding:15px;
        flex-direction:column;
        height:auto;
        gap:15px;
    }

    .logo{
        font-size:32px;
    }

    .navbar-menu{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar-menu a{
        font-size:18px;
    }

    .navbar-buttons{
        width:100%;
        justify-content:center;
    }

    .admin-btn{
        padding:10px 25px;
    }

    /* HOME */
    .hero{
        flex-direction:column;
        padding:30px 20px;
        text-align:center;
        gap:30px;
    }

    .hero-left{
        width:100%;
    }

    .hero-left h1{
        font-size:56px;
        line-height:1.1;
    }

    .hero-left p{
        font-size:18px;
        line-height:30px;
    }

    .hero-button{
        justify-content:center;
    }

    .hero-right{
        width:100%;
    }

    .hero-right img{
        width:100%;
        max-width:350px;
    }

    /* MENU */
    .menu-page{
        padding:30px 20px;
    }

    .menu-header h1{
        font-size:48px;
    }

    .menu-top{
        flex-direction:column;
        gap:20px;
    }

    .menu-top form{
        width:100%;
    }

    .menu-top input{
        width:100%;
    }

    .category-buttons{
        flex-wrap:wrap;
        justify-content:center;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    /* HARGA */
    .harga-page{
        padding:30px 20px;
    }

    .harga-header h1{
        font-size:48px;
    }

    .harga-wrapper{
        grid-template-columns:1fr;
    }

    .harga-top h2{
        font-size:32px;
    }

    /* ABOUT */
    .about-page{
        padding:30px 20px;
    }

    .about-hero{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-left h1{
        font-size:48px;
        line-height:1.1;
    }

    .about-desc{
        font-size:18px;
        line-height:32px;
    }

    .about-right img{
        height:auto;
    }

    .about-info{
        grid-template-columns:1fr;
    }

    .info-card h3{
        font-size:28px;
    }

    /* ADMIN */
    .admin-layout{
        flex-direction:column;
    }

    .admin-sidebar{
        position:relative;
        width:100%;
        height:auto;
    }

    .admin-content{
        margin-left:0;
        width:100%;
        padding:20px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .table-container{
        overflow-x:auto;
    }

    table{
        min-width:700px;
    }
}