.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .carrito-header {
            background: linear-gradient(135deg, #8B5E3C 0%, #9C6D48 100%);
            color: #F5F1E8;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .carrito-header h1 {
            font-family: 'Merriweather', serif;
            margin: 0;
            font-size: 32px;
        }
        
        .carrito-header p {
            margin: 10px 0 0;
            opacity: 0.9;
        }
        
        .carrito-vacio {
            text-align: center;
            padding: 60px 20px;
            background: #F5F1E8;
            border-radius: 15px;
            margin: 20px 0;
        }
        
        .carrito-vacio i {
            font-size: 64px;
            color: #D9A441;
            margin-bottom: 20px;
        }
        
        .carrito-vacio h3 {
            font-family: 'Merriweather', serif;
            color: #3A2F2A;
            margin-bottom: 15px;
        }
        
        .carrito-vacio p {
            color: #6B5A4D;
            margin-bottom: 25px;
        }
        
        .btn-volver-menu {
            display: inline-block;
            background: #8B5E3C;
            color: #F5F1E8;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-volver-menu:hover {
            background: #9C6D48;
            transform: translateY(-2px);
        }
        
        .carrito-contenido {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
        }
        
        @media (max-width: 992px) {
            .carrito-contenido {
                grid-template-columns: 1fr;
            }
        }
        
        .lista-productos {
            background: #F5F1E8;
            border-radius: 15px;
            padding: 25px;
        }
        
        .producto-carrito {
            display: flex;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(139, 94, 60, 0.1);
            gap: 20px;
        }
        
        .producto-carrito:last-child {
            border-bottom: none;
        }
        
        .producto-imagen {
            flex: 0 0 100px;
        }
        
        .producto-imagen img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid rgba(217, 164, 65, 0.2);
        }
        
        .producto-info {
            flex: 1;
        }
        
        .producto-info h4 {
            margin: 0 0 8px;
            color: #3A2F2A;
            font-size: 18px;
        }
        
        .producto-info .categoria {
            color: #8B5E3C;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .producto-precio {
            color: #8B5E3C;
            font-weight: 700;
            font-size: 18px;
        }
        
        .producto-cantidad {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .producto-cantidad input {
            width: 60px;
            padding: 8px;
            text-align: center;
            border: 2px solid #8B5E3C;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .producto-acciones {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .btn-eliminar {
            background: none;
            border: 2px solid #dc3545;
            color: #dc3545;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-eliminar:hover {
            background: #dc3545;
            color: white;
        }
        
        .resumen-pedido {
            background: #F5F1E8;
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        
        .resumen-pedido h3 {
            font-family: 'Merriweather', serif;
            color: #3A2F2A;
            margin-top: 0;
            border-bottom: 2px solid #D9A441;
            padding-bottom: 10px;
        }
        
        .detalle-total {
            margin: 20px 0;
        }
        
        .fila-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(139, 94, 60, 0.1);
        }
        
        .fila-total:last-of-type {
            border-bottom: none;
            font-weight: 700;
            font-size: 20px;
            color: #3A2F2A;
        }
        
        .acciones-carrito {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn-continuar {
            flex: 1;
            background: #D9A441;
            color: #3A2F2A;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        
        .btn-continuar:hover {
            background: #E8B954;
            transform: translateY(-2px);
        }
        
        .btn-vaciar {
            background: #6c757d;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-vaciar:hover {
            background: #5a6268;
        }
        
        .form-carrito {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .form-botones {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-actualizar {
            background: #8B5E3C;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
        
        .btn-actualizar:hover {
            background: #9C6D48;
        }
        
        .btn-checkout {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
        }
        
        .btn-checkout:hover {
            background: #218838;
        }
        
        .info-pickup {
            background: #e7f3ff;
            border-left: 4px solid #007bff;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        .info-pickup h4 {
            margin-top: 0;
            color: #0056b3;
        }