:root {
    --chocolate: #4e342e;
    --light-chocolate: #795548;
    --cream: #fff8e1;
}

html, body {
    background-color: #fdfaf6; 
    overscroll-behavior-y: none;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: var(--chocolate) !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(78, 52, 46, 0.9), rgba(121, 85, 72, 0.8)),
        url('https://images.unsplash.com/photo-1563805039227-9aba52445038?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 30px rgba(78, 52, 46, 0.15);
}


.card-product {
    border: none;
    border-radius: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.card-product:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(78, 52, 46, 0.15);
}

.card-product img {
    height: 220px;
    object-fit: cover;
}

.price-tag {
    color: var(--light-chocolate);
    font-weight: 800;
    font-size: 1.3rem;
}

.btn-order {
    background: linear-gradient(135deg, var(--chocolate), var(--light-chocolate));
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-order:hover {
    background: linear-gradient(135deg, var(--light-chocolate), var(--chocolate));
    color: white;
    transform: scale(1.05);
}

.btn-outline-warning {
    border-radius: 50px;
    font-weight: 600;
}

.glass-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 15px;
}

.modal-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-img-wrap:hover img {
    transform: scale(1.1);
}

.price-badge {
    background: linear-gradient(135deg, var(--chocolate), var(--light-chocolate));
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.4rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(78, 52, 46, 0.3);
}

.img-clickable {
    cursor: pointer;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-backdrop {
    background-color: rgba(30, 20, 15, 0.8) !important;

}

.table-main {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.table thead {
    background-color: var(--chocolate);
    color: white;
}


.img-admin {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}