body {
    background-image: url("/images/mainfoto.png?v=3");
    min-height: 100vh;
    background-color: #AF8A49;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo img {
    max-width: 40%;
}

/* NAVBAR */
.custom-nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border-bottom: 3px solid #AF8A49;
    padding: 0.75rem 1rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.navbar-toggler {
    border: 2px solid #AF8A49;
    padding: 0.375rem 0.6rem;
    background: none;
    transition: 0.3s;
}

    .navbar-toggler:hover {
        background: rgba(175,138,73,0.1);
    }

.navbar-toggler-icon {
    filter: invert(1);
    width: 24px;
    height: 24px;
}

.nav-logo-small img {
    height: 45px;
    width: auto;
    transition: 0.3s;
}

.nav-logo-small:hover img {
    transform: scale(1.05);
}

/* CART ICON */
.nav-cart-desktop {
    color: #AF8A49;
    font-size: 1.3rem;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

    .nav-cart-desktop:hover {
        color: #d8b765;
        transform: scale(1.1);
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

/* MOBIL MENU */
.collapse {
    background-color: #AF8A49;
}

.nav-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border-bottom: 3px solid #AF8A49;
    padding: 2rem 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-logo img {
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(175,138,73,0.3));
    transition: 0.3s;
}

    .nav-logo img:hover {
        transform: scale(1.05);
    }

/* BUTTONS */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.nav-btn {
    background: linear-gradient(135deg, #AF8A49 0%, #d8b765 100%);
    color: #111;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .nav-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.2);
        transition: 0.3s;
    }

    .nav-btn:hover {
        background: linear-gradient(135deg, #d8b765 0%, #AF8A49 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(175,138,73,0.3);
    }

        .nav-btn:hover:before {
            left: 100%;
        }

.nav-badge {
    background: rgba(255,255,255,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-left: auto;
}

.nav-btn-cart {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
}

    .nav-btn-cart:hover {
        background: linear-gradient(135deg, #ff6b7a 0%, #ff4757 100%);
        box-shadow: 0 6px 16px rgba(255,71,87,0.3);
    }

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
}
