:root {
    --color-bg: #F6F8F6;
    --color-surface: #FFFFFF;
    --color-text: #1E1F1E;
    --color-text-secondary: #6B7280;
    --color-primary: #38c190;
    --color-accent: #268765;
    --color-border: #E5E7EB;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.09);
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*,*::before, *::after{
    margin: 0; padding: 0; box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    background-color: var(--color-bg);
    color: var(--color-text);
}
img{
    max-width: 100%;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.header{
    width: 100%;
    background: linear-gradient(to bottom, #1c674d, var(--color-primary));
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}
.menu-tops{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(225,225,225,0.4);
    padding-bottom: 10px;
}
.top-kiri{
    display: flex;
    align-items: center;
}
.menusss,
.data-butuh{
    font-size: 13px;
    color: var(--color-bg);
    line-height: 0.8;
    font-weight: 100;
    padding: 0 10px;
    text-decoration: none;
    border-right: 2px solid rgba(225,225,225,0.6);
}
.menusss:last-child{
    border-right: none;
}
.top-kanan,
.menu-actions{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.data-butuh{
    border-right: none;
    cursor: pointer;
    padding: 0;
}
.menu-actions .btn-btn-auth{
    text-decoration: none;
    font-weight: 400;
    color: #E5E7EB;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(225,225,225,0.6);
    font-size: 12px;
}
.inner-header{
    display: grid;
    grid-template-columns: 260px auto 60px;
    gap: 1.5rem;
    align-items: center;
}
.home_uri{
    text-decoration: none;
}
.is-logo{
    width: auto;
    height: 40px;
}
.logo-mobile,
.menu-burger{
    display: none;
}
.search-root{
    width: 100%;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
    padding: 3px;
}
.search-root input{
    width: calc(100% - 35px);
    background-color: transparent;
    padding: 0 15px;
    border: none;
    outline: none;
}
.search-button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: none;
    color: var(--color-bg);
    cursor: pointer;
}
.shopping-bag{
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
}
.shopping-bag i{
    cursor: pointer;
    font-size: 22px;
    color: var(--color-bg);
}
.counter-chart{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
}
.counter-chart.active{
    background-color: red;
    color: var(--color-bg);
    font-size: 12px;
}


/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 40px;
    font-family: Arial, sans-serif;
    color: #333;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
}
.footer h3 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #1B5E47; /* hijau dark */
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    transition: 0.2s;
}
.footer ul li a:hover {
    color: #1B5E47;
}
.footer-logos img {
    width: 70px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid #ddd;
    background: #fff;
}
.social-links li i {
    margin-right: 6px;
    color: #1B5E47;
}

.footer-apps img {
    width: 110px;
    margin: 6px 0;
}

.footer-bottom {
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #555;
    background: #fafafa;
}

.footer-countries {
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}
.text-center{
    text-align: center;
    display: block;
    width: 100%;
}
.text-center p{
    color: #555;
    font-size: 14px;
}
.texddd{
    color: var(--color-accent);
    text-decoration: none;
}

/* Laptop kecil */
@media(max-width:1025px){
    .shopping-bag{
        margin-right: 10px;
    }
    .is-logo{
        height: 36px;
    }
}

/* Tablet */
@media(max-width:780px){
    .inner-header{
        grid-template-columns: 60px auto 60px;
    }
    .is-logo{
        display: none;
    }
    .logo-mobile{
        display: block;
        width: auto;
        height: 36px;
    }
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:500px){
    .header{
        position: fixed;
        top: 0;
        left: 0;
    }
    .menu-tops{
        display: none;
    }
    .inner-header{
        grid-template-columns: 70px auto 30px;
    }
    .innerlogo{
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .menu-burger{
        display: block;
        cursor: pointer;
    }
    .menu-burger i{
        font-size: 18px;
        color: var(--color-bg);
    }
    .spacers{
        margin-bottom: 5.5rem;
    }
    .footer-container{
        grid-template-columns: 1fr;
    }
}