:root{
    --primary-dark:#1E3A2F;
    --primary-green:#6AA22E;
    --soft-green:#A8D08D;
    --cream:#F2E9DA;
    --soft-brown:#A67C52;
}

body{
    background:#f7f8f4;
    font-family:'Poppins',sans-serif;
    color:var(--primary-dark);
}

/* NAVBAR */

.navbar{
    background:linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary-green)
    ) !important;

    padding:14px 0;
}

.navbar-brand img{
    height:95px;
    width:auto;
    object-fit:contain;
}

/* HERO */

.hero{
    background:
        linear-gradient(
            rgba(30,58,47,.85),
            rgba(30,58,47,.82)
        ),
        url('https://images.unsplash.com/photo-1511499767150-a48a237f0083?q=80&w=1600');

    background-size:cover;
    background-position:center;

    padding:120px 0;

    color:white;
}

.hero h1{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
}

@media(max-width:768px){

    .hero{
        padding:80px 0;
        text-align:center;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .navbar-brand img{
        height:70px;
    }

    .detail-img{
        height:320px;
    }

    .product-img{
        height:220px;
    }

    .auth-card{
        padding:28px;
        border-radius:24px;
    }

}

.hero p{
    font-size:1.2rem;
    color:#e5e5e5;
}

/* CARDS */

.product-card{
    border:none;
    border-radius:26px;
    overflow:hidden;
    transition:.3s;
    background:white;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.08);
}

.product-img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#f4f6f2;
    padding:20px;
}

.detail-img{
    width:100%;
    height:520px;
    object-fit:contain;
    background:#f8f9f5;
    padding:20px;
}

.empty-img,
.empty-detail{
    background:#eef5e8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
}

.empty-img{
    height:260px;
    font-size:60px;
}

.empty-detail{
    height:520px;
    font-size:120px;
    border-radius:24px;
}

/* BUTTONS */

.btn-primary{
    background:var(--primary-green);
    border:none;
}

.btn-primary:hover{
    background:#5a8f27;
}

.btn-success{
    background:var(--primary-dark);
    border:none;
}

.btn-success:hover{
    background:#12241d;
}

/* AUTH */

.auth-bg{
    min-height:100vh;

    background:
        linear-gradient(
            rgba(30,58,47,.82),
            rgba(106,162,46,.75)
        ),
        url('https://images.unsplash.com/photo-1574258495973-f010dfbb5371?q=80&w=1600');

    background-size:cover;
    background-position:center;

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

    padding:40px;
}

.auth-card{
    width:100%;
    max-width:480px;

    background:rgba(255,255,255,.96);

    border-radius:32px;

    padding:42px;

    backdrop-filter:blur(12px);

    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.auth-logo{
    height:70px;
    margin-bottom:18px;
}

/* DASHBOARD */

.stat-card{
    background:white;
    border-radius:24px;
    padding:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.stat-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    background:#eef5e8;
    color:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* MINI IMG */

.mini-img,
.thumb-img{
    width:75px;
    height:75px;
    object-fit:cover;
    border-radius:14px;
}

.mini-empty{
    width:75px;
    height:75px;
    border-radius:14px;
    background:#eef5e8;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* FOOTER */

.footer{
    background:var(--primary-dark);
    color:white;
    padding:50px 0;
    margin-top:80px;
}

.footer-logo{
    height:60px;
}
.card{
    border-radius:24px !important;
}

.btn{
    border-radius:14px;
}

.list-group-item{
    background:transparent;
}

.table{
    border-radius:20px;
    overflow:hidden;
}

.carousel-inner{
    border-radius:24px;
}
.search-box{
    position:relative;
    background:white;
    border-radius:18px;
    padding:8px 14px 8px 46px;
    border:1px solid rgba(30,58,47,.08);
}

.search-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    opacity:.65;
}

.search-input{
    border:none;
    box-shadow:none !important;
    background:transparent;
    height:44px;
}

.search-input:focus{
    border:none;
    box-shadow:none;
    background:transparent;
}

.lente-item{
    transition:all .2s ease;
}