/* Navbar */
.navbar {
    background-color: #6d4c41 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #ffd1dc !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6d4c41, #8d6e63);
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffd1dc;
    padding-left: 5px;
    transition: 0.3s;
}
/* Top border */
.footer {
    background: linear-gradient(135deg, #6d4c41, #8d6e63);
    border-top: 2px solid rgba(255,255,255,0.3);
}

/* Bottom border */
.footer-bottom {
    border-top: 3px solid rgba(255,255,255,0.3);
    margin-top: 20px;
    padding-top: 10px;
}
/* CART BOX */
.cart-ui {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    color: #e5e7eb;
    text-decoration: none;
    transition: 0.3s;
}


/* HOVER */

/* ICON WRAPPER */
.cart-icon {
    position: relative;
    font-size: 26px;
    color: #e5e7eb;
}


.cart-label:hover {
    color: #b26b6b;
}

/* BADGE INSIDE ICON */
.cart-badge {
    position: absolute;
    top: -6px;
    right: 6px;
    font-size: 14px;
    font-weight: bold;
    color: orange;
}

/* TEXT */
.cart-label {
    font-size: 16px;
    font-weight: 500;
}
.search-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}