.cos-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

.cos-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cos-table th,
.cos-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cos-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2c3e50;
}

.cos-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 10px;
}

.total{
    text-align: right;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.remove {
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.remove:hover {
    text-decoration: underline;
}

.actiuni {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.cont,
.checkout {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cont {
    background-color: #eee;
    color: #333;
}

.checkout {
    background-color:rgb(255, 127, 80); /*CORAL ORANGE*/
    color: white;
}

.checkout:hover {
    background-color: rgb(250, 106, 53);/*HOVER COLOR*/
}