/* Table Styles */

.section-cart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-cart .header {
    width: 100%;
    overflow-x: auto;
    max-width: 1300px;
    padding: 10px;
}

.section-cart .header .content table {
    border-collapse: collapse;
    width: 100%;
}

.section-cart .header .content table th,
.section-cart .header .content table td {
    padding: 10px;
    text-align: left;
    border: 0.2px solid var(--lightPink);
    min-width: 150px;
    text-align: center;
    color: var(--darkBlue);
}

.section-cart .header .content table th {
    background-color: var(--rosewood);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

.section-cart .header .content table td img {
    width: 150px;
    height: 150px;
}

.section-cart .header .content tfoot tr td{
    margin: 0;
    padding: 10px 0 10px 0;
}
.section-cart .header .content tfoot form {
    display: flex;
    flex-direction: row;
    align-content: start;
    align-items: center;
    margin: 0;
    padding: 0 0 0 10px;
}

.section-cart .header .content tfoot label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--darkBlue);
    margin-bottom: 5px;
}

.section-cart .header .content tfoot label.discount {
    margin: 0;
}

.section-cart .header .content tfoot input[type="text"] {
    width: 200px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--grey40);
}

.section-cart .header .content tfoot button {
    font-size: 16px;
    padding: 5px 10px 5px 10px;
    border: none;
    border-radius: 6px;
    color: white;
    background-color: var(--lightPink);
    cursor: pointer;
    transition: background-color 0.5s ease;
    margin-left: 10px;
}

.section-cart .header .content tfoot button:hover {
    background-color: var(--rosewood);
}

/*  */

.section-cart .cart-total {
    width: 100%;
    overflow-x: auto;
    max-width: 1300px;
    padding: 10px;
}

.section-cart .cart-total .content {
    width: 40%;
    float: right;
}

.section-cart .cart-total .content table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ccc;
}

.section-cart .cart-total .content thead th {
    background-color: var(--lightPink);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    padding: 10px;
    text-align: left;
    font-family: Poppins, sans-serif;
}

.section-cart .cart-total .content tbody td {
    border-top: 1px solid #ccc;
    padding: 10px;
    font-family: Poppins, sans-serif;
}

.section-cart .cart-total .content tbody td:first-child {
    text-align: left;
}

.section-cart .cart-total .content tbody td:last-child {
    text-align: right;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex a.bttn,
.flex a.bttn-dark {
    color: var(--lightPink);
    text-decoration: none;
    transition: 0.3s ease all;
}

.flex a.bttn:hover,
.flex a.bttn:focus {
    color: var(--white);
}

.bttn {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    width: 200px;
    font-weight: bold;
    padding: 7px 0px;
    border: 3px solid var(--lightPink);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.bttn:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: var(--lightPink);
    z-index: -2;
}

.bttn:hover:before,
.bttn:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

/* CSS para el div con clase "no-auth" */

.no-auth {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.no-auth img {
    width: 200px;
    height: 200px;
}

.no-auth .info {
    display: flex;
    flex-direction: column;
}

.no-auth h3 {
    font-size: 24px;
    color: var(--rosewood);
    margin-bottom: 10px;
}

.no-auth p {
    font-size: 18px;
    margin-bottom: 20px;
}

.no-auth button {
    background-color: var(--rosewood);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.no-auth button:hover {
    background-color: var(--lightPink);
}


@media (max-width: 950px) {
    .section-cart .cart-total .content {
        width: 100%;
    }
}
