﻿/* Estilos generales */
/* Estilos generales */
.main {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Migas de pan */
.bread-crumb {
    font-size: 14px;
    margin-bottom: 75px;
}

    .bread-crumb a {
        color: #666;
        text-decoration: none;
        position: relative;
        margin: 0 10px;
    }

        .bread-crumb a:not(:last-child)::after {
            position: absolute;
            right: -15px;
            color: #666;
        }

/* Tabla de productos */
.cart-table-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.table-cart {
    margin-bottom: 0;
}

    .table-cart thead th {
        background-color: #f8f9fa;
        border-bottom: 2px solid #ddd;
        font-size: 14px;
        font-weight: 600;
        padding: 12px;
    }

    .table-cart td {
        vertical-align: middle;
        padding: 15px 12px;
        border-color: #eee;
    }

.product-col {
    width: 30%;
}

.price-col, .qty-col {
    width: 15%;
}

/* Resumen del carrito */
.cart-summary {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
}

    .cart-summary h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.table-totals td {
    padding: 8px 0;
    border: none;
    font-size: 14px;
}

.table-totals tfoot td {
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 12px;
}

/* Botón de pago */
.btn-dark {
    background-color: #333;
    color: white;
    font-weight: bold;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn-dark:hover {
        background-color: #555;
        color: white;
    }

    .btn-dark .fa-arrow-right {
        margin-left: 8px;
        font-size: 12px;
    }

/* Alineaciones */
.text-right {
    text-align: right;
}

/* Espaciados */
.mb-6 {
    margin-bottom: 4rem;
}
