.seccion-carrito{
    padding-top: var(--padd-top);
    padding-bottom: var(--padd-bottom);
}

.card-collapse.collapsed{
    padding: 1.6rem;
    border: 1px solid #ebebeb;
    border-radius: 1rem;
    font-size: 1.375rem;
    color: var(--secundario);
    background: transparent;
    transition: all .3s;
}
.card-collapse.collapsed:hover{
    color: var(--principal);
    border-color: var(--principal);
}
.card-collapse{
    width: 100%;
    padding: 1.6rem;
    border: 1px solid #ebebeb;
    border-radius: 1rem;
    background: transparent;
    font-size: 1.375rem;
    color: var(--principal);
    border: 2px solid var(--principal); 
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.collapse{
    padding-top: 2.4rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #ebebeb;
    border-top: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.collapse.show{
    padding-top: 2.4rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #ebebeb;
    border-top: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.table-cart{
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
}
.table th,
.table td {
    border-top: none;
}
.table th {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--texto);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tr {
    padding-left: 0;
    padding-right: 0;
    vertical-align: middle;
    border-bottom: 0.1rem solid #ebebeb;
}

.product-col .product {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin: 0;
    padding-right: 2rem;
    box-shadow: none;
}
.product-col .product-media{
    margin-bottom: 0;
}
.product-col .product-media img{
    display: block;
    width: 60px;
    border-radius: 1rem;
}
.product-col .product-title a{
    display: inline-block;
    color: var(--texto);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--text-font);
    line-height: 1.25;
    margin: 0;
}
.table .price-col {
    color: var(--texto);
    font-weight: 400;
    font-size: 1rem;
}
.table .total-col {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
    color: var(--texto);
}
.cart-bottom {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.cart-discount {
    margin-top: 1rem;
    margin-left: auto;
    width: 320px;
}
.cart-discount p{
    font-size: .94rem;
    font-family: var(--text-font);
    color: var(--texto);
    margin-bottom: .5rem;
}
.form-verificar-cupon{
    height: 46px;
    padding-left: .5rem;
    border-radius: 1.6rem;
    position: relative;
    border: 1px solid var(--principal); 
    overflow: hidden;
}
.form-verificar-cupon input{
    border: 0;
    width: 100%;
    height: 100%;
    padding-left: 1rem;
}
.btn-canjear{
    background: var(--principal);
    border-radius: 1.6rem;
    color: var(--blanco);
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 38px;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    outline: 0;
    border: 1px solid var(--principal);
    transition: all .3s;
}
.btn-canjear:hover{
    background: var(--hover-principal);
    border: 1px solid var(--hover-principal);
}

/* Total */
.summary{
    padding: 1.6rem;
    border: 0.1rem dashed rgba(83, 83, 81, .5);
    background-color: #f2f2f0;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.summary:last-child{
    margin-bottom: 0;
}
.table-summary{
    width: 100%;
}
.summary-title {
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 0;
    padding-bottom: 1.4rem;
    border-bottom: 0.1rem solid rgba(83, 83, 81, .5);
    margin-bottom: 1.4rem;
}
.summary-subtotal{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid #ebebeb;
    padding: 1rem 0;
}
.summary-total{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid #ebebeb;
    padding: 1rem 0;
}
.summary-subtotal td:nth-child(1){
    text-align: left;
}
.summary-subtotal td:nth-child(2){
    text-align: right;
}
.summary-envio{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.summary-envio td:nth-child(1){
    text-align: left;
    color: var(--gray-text);
    font-size: .9rem;
}
.summary-envio td:nth-child(2){
    text-align: right;
    color: var(--gray-text);
    font-size: .9rem;
}
.summary-total td:nth-child(1){
    text-align: left;
    color: var(--principal);
    font-size: 1.125rem;
}
.summary-total td:nth-child(2){
    text-align: right;
    color: var(--principal);
    font-size: 1.125rem;
}
.lista-btn-carrito{
    padding-left: 0;
    margin-top: 1.6rem;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn-checkout-line{
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border: 0;
    border-radius: 1.6rem;
    color: var(--principal);
    border: 1px solid var(--principal);
    transition: all .3s;
}
.btn-checkout-line:hover{
    color: var(--blanco);
    background: var(--hover-principal);
    border: 1px solid transparent;
}

/* Fin Total */

/* Tabla Cuenta */
.table-cuenta{
    width: 100%;
    margin-top: 0;
    border-collapse: collapse;
}
.table-cuenta thead{
    border-bottom: 1px solid #ebebeb;
}
.table-cuenta thead tr th{
    padding-bottom: 10px;
}
.table-cuenta tbody tr td{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .9rem;
}

/* Fin Tabla Cuenta */

@media screen and (max-width:1100px) {
    .titulo-banner {
        font-size: 2rem;
    }
    .card-collapse{
        font-size: 1.2rem;
    }
    .table {
        margin-bottom: 3rem;
    }
    
    .table thead {
        display: none ;
    }
    .table tr .product-col {
        padding-bottom: 0.6rem;
    }
    .table tr td {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-align: center;
        padding: 0.1rem 3rem;
        border-bottom: none;
    }
    .table .product-col .product {
        padding-right: 0;
        justify-content: center;
    }
    .table .product-col .product-title {
        text-align: left;
    }
    .table, .table tbody, .table tr, .table td {
        width: 100% ;
        display: block ;
    }
    .table .remove-col{
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--secundario);
    }
    .table .remove-col .card-btn-remove{
        color: red;
    }
    .table .quantity-col{
        margin: 1rem 0;
    }
    td[data-title]::before {
        content: attr(data-title);
    }
    .cart-bottom{
        justify-content: center;
    }
    .cart-discount{
        margin: 0 auto;
    }
    .cart-discount p{
        text-align: center;
    }
    .table-summary tr{
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width:768px) {
    .table .product-col .product-media {
        margin-right: 1.5rem;
    }
    .form-box{
        padding: 1.6rem;
    }
    .nav.nav-pills.nav-login .nav-item .nav-link{
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        font-size: 1.2rem;
    }
    .row-redes{
        gap: 1rem;
    }
    .prods-summary .table-summary{
        display: block;
    }
    .prods-summary .table-summary tr{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .prods-summary .table-summary tr td{
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    .summary-link{
        justify-content: center;
    }
    
    .table-cuenta thead {
        display: none;
    }
    .table-cuenta tr {
        display: block;
        margin-bottom: 0.625rem;
    }
    .table-cuenta td {
        display: block;
        text-align: left;
        font-size: 0.8em;
        border-bottom: 1px solid #dee2e6;
        position: relative;
        padding-left: 50%;
    }
    .table-cuenta td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 0.75rem;
        font-weight: bold;
        text-align: left;
    }
}