body {
    background-color: #1c2331;
    color: #ffffff;
}

.navbar {
    background-color: #0f1620;
}

.card {
    background-color: #2c3e50;
    border: none;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #e67e22;
    border-color: #e67e22;
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
}

.category-button {
    background-color: #34495e;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.category-button:hover {
    background-color: #2c3e50;
}

.category-content {
    display: none;
    padding: 10px;
    background-color: #2c3e50;
}

.featured-products, .why-choose-us {
    background-color: #34495e;
    padding: 20px;
    margin-top: 20px;
}

/* Updated cart styles */
.cart-section {
    background-color: #34495e;
    padding: 20px;
    border-radius: 5px;
}

.cart-item {
    background-color: #2d3748;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #f7fafc;
    text-align: center;
    margin-bottom: 8px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #a0aec0;
    width: 100%;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.cart-item-quantity button {
    background-color: #4a5568;
    border: 1px solid #718096;
    color: #e2e8f0;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cart-item-quantity input {
    width: 32px;
    text-align: center;
    border: 1px solid #718096;
    background-color: #2d3748;
    color: #e2e8f0;
    margin: 0 4px;
    padding: 2px 0;
}

.cart-item-price {
    font-weight: bold;
    color: #f7fafc;
    margin-top: 4px;
}

.cart-item select {
    height: 24px;
    background-color: #4a5568;
    color: #e2e8f0;
    border: 1px solid #718096;
    padding: 0 4px;
    width: 80px;
}

.cart-item-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: -25px;
}

.cart-item-label {
    width: 40px;
    text-align: right;
    padding-right: 8px;
}

.cart-total {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: right;
}