.cart-section {
    position: fixed;
    top: 0;
    right: -350px;
    width: 400px;
    height: 100%;
    background-color: #f4f4f4;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
}

.cart-section.open {
    right: 0;
    opacity: 1;
}

.cart-section p {
    color: #404042;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-header h2 {
    margin: 0;
    color: #404042;
}

.close-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.close-btn:hover {
    background-color: #e60000;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: #404042 1px solid;
}

.checkout-btn {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

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

.cart-total {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: right;
    color: #404042;
}

.cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-size: 14px;
    margin: 0;
}

.cart-item-price {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity input {
    width: 50px;
    height: 30px;
    margin-left: 10px;
    padding: 0 5px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.cart-section::-webkit-scrollbar {
    width: 8px;
}

.cart-section::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.cart-section::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

.cart-delete-item-btn {
    padding: 0 5px 0 5px;
    background-color: transparent;
    border: none;
    color: #555;
}

.cart-delete-item-btn:hover {
    padding: 5px 10px;
    border: 1px solid #EEEFEE;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    font-family: 'poppins', sans-serif;
    background-color: #fff;
    color: #404042;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/** Cart link - header */
.cart-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cart-link-icon {
    display: block;
    position: relative;
    width: fit-content;
}

.cart-link-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    transform: translate(50%, -50%);
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    z-index: 10;
}
