body {
    font-family: 'Andika', sans-serif;
    background-color: #1c1c1c;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #333333;
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.logo img {
    height: 50px;
    width: auto;
}

.headbar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: center;
}

.headbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
    display: block;
}

.headbar a:hover {
    color: #00aaff;
}

.menubtn {
    display: none;
}
/* cart.css */

/* Basic styles for the hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Styles for the navigation menu */
.headbar {
    display: flex;
    gap: 20px;
}

.headbar.active {
    display: block;
}

/* Media query to show hamburger menu on small screens */
@media (max-width: 768px) {
    .headbar {
        display: none;
        flex-direction: column;
    }

    .headbar.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}


@media (max-width: 768px) {
    .headbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #333333;
        width: 100%;
        border-top: 1px solid #444444;
        box-sizing: border-box;
    }

    .headbar.show {
        display: flex;
    }

    .headbar a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #444444;
        width: 100%;
    }

    .menubtn {
        display: block;
    }

}

.cart-section {
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 58px;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
}

.cart-items {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #292929;
    border-radius: 8px;
}

.details {
    flex-grow: 1;
}

.details h2 {
    margin: 0;
    font-size: 18px;
}

.price {
    font-size: 16px;
    color: #a9a9a9;
}

.quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
}

.quantity-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.quantity-btn:hover:not(:disabled) {
    background-color: #555;
}

.remove-btn {
    color: #ff4c4c;
    cursor: pointer;
    margin-left: 10px;
}

.remove-btn i {
    font-size: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff4c4c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

.checkout-btn:hover {
    background-color: #e43c3c;
}
